/* ── TVFL Recruiting Headlines Widget ────────────────────────────────────── */

.tvfl-rh-widget {
	width: 100%;
}

/* ── List ────────────────────────────────────────────────────────────────── */

.tvfl-rh-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

.tvfl-rh-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--e-global-color-c31cee6);
}
.tvfl-rh-list li:last-child {
	border-bottom: none;
}

/* ── Image ───────────────────────────────────────────────────────────────── */

.tvfl-rh-img-wrap {
	flex-shrink: 0;
}
.tvfl-rh-img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 5px !important;
	display: block;
}

/* ── Content ─────────────────────────────────────────────────────────────── */

.tvfl-rh-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

/* ── Badge ───────────────────────────────────────────────────────────────── */

.tvfl-rh-badge {
	display: inline-block;
	align-self: flex-start;
	padding: 1px 6px;
	border-radius: 3px;
	font-family: var(--e-global-typography-primary-font-family, "Bebas Neue"), sans-serif;
	font-size: 12px;
	letter-spacing: 0.04em;
	color: #fff;
	line-height: 1.4;
	white-space: nowrap;
}

/* ── Title ───────────────────────────────────────────────────────────────── */

.tvfl-rh-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--e-global-color-secondary, #fff);
}

/* ── Date ────────────────────────────────────────────────────────────────── */

.tvfl-rh-date {
	font-size: 0.78rem;
	color: var(--e-global-color-c31cee6);
}

/* ── View More ───────────────────────────────────────────────────────────── */

.tvfl-rh-more-wrap {
	margin-top: 20px;
}
.tvfl-rh-view-more {
	width: 100%;
	padding: 10px 36px;
	background-color: transparent;
	color: #fff;
	border: 1px solid var(--e-global-color-c31cee6);
	border-radius: 5px;
	font-family: var(--e-global-typography-primary-font-family, "Bebas Neue"), sans-serif;
	font-size: 1rem;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: opacity 0.2s;
	-webkit-appearance: none;
	appearance: none;
}
.tvfl-rh-view-more:disabled { opacity: 0.4; cursor: not-allowed; }
