.hf-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-radius: var(--hf-radius);
	overflow: hidden;
	transition: transform 0.35s var(--hf-ease-out), box-shadow 0.35s var(--hf-ease), border-color 0.35s;
	box-shadow: 0 6px 18px -16px rgba(9, 30, 66, 0.7);
}

.hf-card::after {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--hf-cat-color, var(--hf-primary)), var(--hf-secondary));
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s var(--hf-ease-out);
}

.hf-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hf-shadow-lg);
	border-color: var(--hf-border-strong);
}

.hf-card:hover::after {
	transform: scaleX(1);
}

.hf-card-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--hf-surface-3);
}

.hf-card-thumb {
	display: block;
	width: 100%;
	height: 100%;
}

.hf-card-thumb img,
.hf-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--hf-ease-out), filter 0.4s;
}

.hf-card:hover .hf-card-thumb img {
	transform: scale(1.08);
}

.hf-thumb-fallback {
	display: grid;
	place-items: center;
	gap: 0.3rem;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.85);
	background: linear-gradient(140deg, var(--hf-primary), var(--hf-accent));
	position: relative;
	overflow: hidden;
}

.hf-thumb-fallback::before {
	content: "";
	position: absolute;
	inset: -30%;
	background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.07) 0 12px, transparent 12px 26px);
}

.hf-thumb-fallback em {
	font-style: normal;
	font-size: 2rem;
	font-weight: 900;
	position: relative;
}

.hf-card-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.32) 50%, transparent 70%);
	transform: translateX(-130%);
	transition: transform 0.8s var(--hf-ease);
	pointer-events: none;
}

.hf-card:hover .hf-card-shine {
	transform: translateX(130%);
}

.hf-card-category {
	position: absolute;
	inset-block-start: 0.75rem;
	inset-inline-start: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	background: var(--hf-cat-color, var(--hf-primary));
	color: #fff;
	font-size: 0.74rem;
	font-weight: 700;
	padding: 0.22em 0.75em;
	border-radius: 999px;
	box-shadow: 0 8px 18px -12px rgba(6, 20, 40, 0.9);
	backdrop-filter: blur(2px);
}

.hf-card-category:hover {
	color: #fff;
	filter: brightness(1.1);
}

.hf-card-format {
	position: absolute;
	inset-block-start: 0.75rem;
	inset-inline-end: 0.75rem;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: rgba(8, 17, 32, 0.6);
	color: #fff;
	backdrop-filter: blur(4px);
}

.hf-card-play {
	position: absolute;
	inset: 0;
	margin: auto;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	color: #fff;
	background: rgba(8, 17, 32, 0.45);
	border: 2px solid rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(3px);
	transition: transform 0.3s var(--hf-ease-out), background-color 0.3s;
}

.hf-card-play::after {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	animation: hf-ring 2.4s var(--hf-ease) infinite;
}

@keyframes hf-ring {
	0% { transform: scale(0.85); opacity: 0.9; }
	100% { transform: scale(1.35); opacity: 0; }
}

.hf-card-play:hover {
	transform: scale(1.1);
	background: var(--hf-primary);
}

.hf-card-gallery-count {
	position: absolute;
	inset-block-end: 0.7rem;
	inset-inline-end: 0.7rem;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	background: rgba(8, 17, 32, 0.72);
	color: #fff;
	font-size: 0.74rem;
	padding: 0.2em 0.65em;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}

.hf-card-body {
	padding: 1rem 1.05rem 0.4rem;
	flex: 1;
}

.hf-card-title {
	font-size: 1.02rem;
	line-height: 1.85;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-card-title a {
	color: var(--hf-text);
}

.hf-card-title a:hover {
	color: var(--hf-primary);
}

.hf-card-excerpt {
	color: var(--hf-text-muted);
	font-size: 0.87rem;
	line-height: 1.95;
	margin-bottom: 0.7rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	padding: 0.65rem 1.05rem;
	border-top: 1px solid var(--hf-border);
	background: var(--hf-surface-2);
}

.hf-card-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--hf-primary);
}

.hf-card-more .hf-icon {
	transition: transform 0.25s var(--hf-ease);
}

.hf-card-more:hover .hf-icon {
	transform: translateX(-4px);
}

.hf-card-actions {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--hf-text-faint);
}

.hf-card-actions a,
.hf-card-actions button {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	color: inherit;
	transition: background-color 0.2s, color 0.2s;
}

.hf-card-actions a:hover,
.hf-card-actions button:hover {
	background: rgba(11, 122, 62, 0.12);
	color: var(--hf-primary);
}

.hf-card-share {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--hf-text-faint);
	cursor: pointer;
	transition: background-color 0.2s var(--hf-ease), color 0.2s var(--hf-ease), transform 0.2s var(--hf-ease);
}

.hf-card-share:hover {
	background: rgba(11, 122, 62, 0.12);
	color: var(--hf-primary);
	transform: translateY(-2px);
}

.hf-socials {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hf-socials-title {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--hf-text);
}

.hf-socials-list {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}

.hf-social {
	--hf-social-color: var(--hf-primary);
	position: relative;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--hf-surface-2);
	border: 1px solid var(--hf-border);
	color: var(--hf-text-muted);
	overflow: hidden;
	transition: transform 0.28s var(--hf-ease), color 0.28s, background-color 0.28s, border-color 0.28s, box-shadow 0.28s;
}

.hf-social::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 120%, var(--hf-social-color), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s;
}

.hf-social-icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
}

.hf-social-icon img {
	width: 19px;
	height: 19px;
	object-fit: contain;
}

.hf-social:hover {
	transform: translateY(-4px) scale(1.06);
	color: #fff;
	border-color: transparent;
	background: var(--hf-social-color);
	box-shadow: 0 12px 24px -12px var(--hf-social-color);
}

.hf-social:hover::after {
	opacity: 0.35;
}

.hf-socials--rounded .hf-social {
	border-radius: 50%;
}

.hf-socials--square .hf-social {
	border-radius: 8px;
}

.hf-socials--ghost .hf-social {
	background: transparent;
	border-color: currentColor;
}

.hf-card--list {
	flex-direction: row;
}

.hf-card--list .hf-card-media {
	flex: 0 0 38%;
	aspect-ratio: auto;
	min-height: 200px;
}

.hf-card--list .hf-card-body {
	padding: 1.2rem 1.3rem 0.6rem;
}

.hf-card--list .hf-card-title {
	font-size: 1.18rem;
	-webkit-line-clamp: 2;
}

.hf-card--list .hf-card-excerpt {
	-webkit-line-clamp: 3;
}

.hf-card--list .hf-card-footer {
	margin: 0 1.3rem 1rem;
	border-radius: var(--hf-radius-sm);
	border: 1px solid var(--hf-border);
}

.hf-card--hero .hf-card-media {
	aspect-ratio: 16 / 10;
}

.hf-card--hero .hf-card-title {
	font-size: clamp(1.1rem, 1.9vw, 1.5rem);
	-webkit-line-clamp: 3;
}

.hf-card--hero .hf-card-excerpt {
	-webkit-line-clamp: 4;
	font-size: 0.92rem;
}

.hf-card--hero .hf-card-body {
	padding: 1.3rem 1.4rem 0.5rem;
}

.hf-card--hero .hf-card-footer {
	margin: 0.6rem 1.4rem 1.2rem;
	border-radius: var(--hf-radius-sm);
	border: 1px solid var(--hf-border);
	background: var(--hf-surface-2);
}

.hf-mini-card {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem;
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-radius: var(--hf-radius-sm);
	transition: transform 0.3s var(--hf-ease), box-shadow 0.3s, border-color 0.3s;
}

.hf-mini-card:hover {
	transform: translateX(-4px);
	box-shadow: var(--hf-shadow);
	border-color: var(--hf-primary);
}

.hf-mini-thumb {
	flex: 0 0 96px;
	width: 96px;
	height: 78px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--hf-surface-3);
}

.hf-mini-thumb img,
.hf-mini-thumb .hf-thumb-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hf-mini-body {
	min-width: 0;
}

.hf-mini-title {
	font-size: 0.9rem;
	line-height: 1.75;
	margin: 0 0 0.3rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-mini-title a {
	color: var(--hf-text);
}

.hf-mini-title a:hover {
	color: var(--hf-primary);
}

.hf-mini-date {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.76rem;
	color: var(--hf-text-faint);
}

.hf-news-wrap--mixed {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: clamp(0.9rem, 1.8vw, 1.4rem);
	align-items: start;
}

.hf-news-side {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.hf-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-radius: 999px;
	padding: 0.3rem;
	width: fit-content;
	margin-bottom: 1.4rem;
	box-shadow: var(--hf-shadow);
}

.hf-tab {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5em 1.15em;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--hf-text-muted);
	transition: color 0.25s, background-color 0.25s, transform 0.25s;
}

.hf-tab:hover {
	color: var(--hf-primary);
}

.hf-tab.is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--hf-primary), var(--hf-primary-dark));
	box-shadow: 0 10px 20px -14px var(--hf-primary);
}

.hf-tab-panel[hidden] {
	display: none;
}

.hf-tab-panel.is-active {
	animation: hf-fade-in 0.45s var(--hf-ease);
}

.hf-featured {
	position: relative;
	padding: clamp(2.4rem, 5vw, 4rem) 0;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 88% 12%, rgba(245, 179, 1, 0.14), transparent 46%),
		radial-gradient(circle at 6% 88%, rgba(11, 122, 62, 0.16), transparent 48%),
		linear-gradient(160deg, #071a2c, #0b2a1f 55%, #071a2c);
	color: #fff;
}

.hf-featured::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 68px);
	opacity: 0.6;
}

.hf-featured-decor {
	position: absolute;
	inset-block-end: -180px;
	inset-inline-start: -140px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	border: 40px solid rgba(255, 255, 255, 0.04);
	z-index: -1;
}

.hf-featured-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.hf-featured-label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(220, 38, 38, 0.16);
	border: 1px solid rgba(220, 38, 38, 0.45);
	color: #ffb4b4;
	font-weight: 800;
	font-size: 0.78rem;
	padding: 0.25em 0.9em;
	border-radius: 999px;
}

.hf-featured-title {
	color: #fff;
	margin: 0;
	font-size: clamp(1.2rem, 2.3vw, 1.85rem);
}

.hf-featured-line {
	flex: 1;
	height: 1px;
	min-width: 40px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent);
}

.hf-featured-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
	gap: clamp(1.2rem, 3vw, 2.6rem);
	align-items: start;
}

.hf-featured-profile {
	position: relative;
	padding: 1.2rem;
	border-radius: var(--hf-radius-lg);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hf-featured-media {
	position: relative;
	border-radius: var(--hf-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: rgba(4, 12, 24, 0.6);
}

.hf-featured-portrait {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hf-featured-portrait--empty {
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.3);
}

.hf-featured-frame {
	position: absolute;
	inset: 0.55rem;
	border: 1.5px solid rgba(245, 179, 1, 0.55);
	border-radius: calc(var(--hf-radius) - 4px);
	pointer-events: none;
}

.hf-featured-video {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border-radius: inherit;
	overflow: hidden;
}

.hf-featured-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--hf-ease-out);
}

.hf-featured-video:hover img {
	transform: scale(1.06);
}

.hf-featured-video-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(140deg, var(--hf-primary-dark), #07131f);
}

.hf-play-btn {
	position: absolute;
	inset: 0;
	margin: auto;
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	color: #22190a;
	background: var(--hf-secondary);
	box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.8);
	z-index: 2;
}

.hf-play-btn::after {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid rgba(245, 179, 1, 0.6);
	animation: hf-ring 2.6s var(--hf-ease) infinite;
}

.hf-featured-video-label {
	position: absolute;
	inset-block-end: 0.8rem;
	inset-inline-start: 0.8rem;
	z-index: 2;
	background: rgba(6, 14, 26, 0.7);
	border-radius: 999px;
	padding: 0.2em 0.85em;
	font-size: 0.78rem;
	font-weight: 700;
	color: #fff;
	backdrop-filter: blur(4px);
}

.hf-featured-identity {
	margin-top: 1rem;
}

.hf-featured-name {
	color: #fff;
	margin: 0;
	font-size: 1.2rem;
}

.hf-featured-role {
	margin: 0.2rem 0 0;
	color: var(--hf-secondary);
	font-size: 0.86rem;
	font-weight: 700;
}

.hf-featured-quote {
	position: relative;
	margin: 1rem 0 0;
	padding: 0.9rem 1rem 0.9rem 2.6rem;
	background: rgba(255, 255, 255, 0.07);
	border-inline-start: 3px solid var(--hf-secondary);
	border-radius: 0 var(--hf-radius-sm) var(--hf-radius-sm) 0;
	font-size: 0.93rem;
	line-height: 2;
	color: rgba(255, 255, 255, 0.92);
}

.hf-featured-quote p {
	margin: 0;
}

.hf-quote-mark {
	position: absolute;
	inset-block-end: 0.5rem;
	inset-inline-end: 0.7rem;
	color: rgba(245, 179, 1, 0.4);
}

.hf-featured-bio {
	margin-top: 0.9rem;
	font-size: 0.89rem;
	line-height: 2.05;
	color: rgba(255, 255, 255, 0.78);
}

.hf-featured-bio p:last-child {
	margin-bottom: 0;
}

.hf-featured-more {
	margin-top: 1.1rem;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.hf-featured-more:hover {
	background: var(--hf-secondary);
	color: #22190a;
	border-color: transparent;
}

.hf-featured-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hf-featured-item {
	display: flex;
	gap: 0.9rem;
	padding: 0.75rem;
	border-radius: var(--hf-radius);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: transform 0.3s var(--hf-ease), background-color 0.3s, border-color 0.3s;
}

.hf-featured-item:hover {
	transform: translateX(-5px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(245, 179, 1, 0.45);
}

.hf-featured-item-thumb {
	position: relative;
	flex: 0 0 128px;
	width: 128px;
	height: 96px;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(4, 12, 24, 0.5);
}

.hf-featured-item-thumb img,
.hf-featured-item-thumb .hf-thumb-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hf-thumb-play {
	position: absolute;
	inset: 0;
	margin: auto;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(6, 14, 26, 0.6);
	color: #fff;
}

.hf-featured-item-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	justify-content: center;
}

.hf-featured-item-title {
	color: #fff;
	font-size: 0.98rem;
	line-height: 1.8;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-featured-item-title a {
	color: inherit;
}

.hf-featured-item-title a:hover {
	color: var(--hf-secondary);
}

.hf-featured-item-meta {
	display: flex;
	gap: 0.9rem;
	font-size: 0.76rem;
	color: rgba(255, 255, 255, 0.6);
}

.hf-featured-item-meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
}

.hf-featured-item-excerpt {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.95;
	color: rgba(255, 255, 255, 0.72);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-featured-item--first {
	background: linear-gradient(120deg, rgba(245, 179, 1, 0.16), rgba(255, 255, 255, 0.06));
	border-color: rgba(245, 179, 1, 0.35);
}

.hf-featured--banner .hf-featured-grid {
	grid-template-columns: minmax(0, 1fr);
}

.hf-featured--banner .hf-featured-profile {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 1.4rem;
	align-items: center;
}

.hf-featured--video .hf-featured-grid {
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

.hf-featured--secretary {
	background:
		radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.2), transparent 45%),
		linear-gradient(200deg, #0b2a1f, #071a2c 60%, #131026);
}

.hf-committees-grid {
	align-items: stretch;
}

.hf-committee-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	padding: 1.1rem;
	border-radius: var(--hf-radius);
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	overflow: hidden;
	transition: transform 0.35s var(--hf-ease-out), box-shadow 0.35s, border-color 0.3s;
	box-shadow: 0 6px 18px -16px rgba(9, 30, 66, 0.7);
}

.hf-committee-card::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--hf-committee-color), transparent 90%);
}

.hf-committee-glow {
	position: absolute;
	inset-block-start: -60px;
	inset-inline-end: -60px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--hf-committee-color), transparent 68%);
	opacity: 0.13;
	transition: opacity 0.4s, transform 0.5s var(--hf-ease-out);
	pointer-events: none;
}

.hf-committee-card:hover {
	transform: translateY(-7px);
	border-color: var(--hf-committee-color);
	box-shadow: 0 26px 44px -28px var(--hf-committee-color);
}

.hf-committee-card:hover .hf-committee-glow {
	opacity: 0.26;
	transform: scale(1.2);
}

.hf-committee-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: inherit;
}

.hf-committee-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 15px;
	color: #fff;
	background: linear-gradient(140deg, var(--hf-committee-color), rgba(0, 0, 0, 0.25));
	box-shadow: 0 12px 22px -16px var(--hf-committee-color);
	transition: transform 0.4s var(--hf-ease-out);
}

.hf-committee-card:hover .hf-committee-icon {
	transform: rotate(-8deg) scale(1.06);
}

.hf-committee-titles {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}

.hf-committee-title {
	font-size: 1rem;
	color: var(--hf-text);
	line-height: 1.7;
}

.hf-committee-count {
	font-size: 0.75rem;
	color: var(--hf-text-faint);
}

.hf-committee-arrow {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: var(--hf-committee-color);
	background: var(--hf-surface-2);
	transition: transform 0.3s var(--hf-ease), background-color 0.3s, color 0.3s;
}

.hf-committee-card:hover .hf-committee-arrow {
	background: var(--hf-committee-color);
	color: #fff;
	transform: translateX(-4px);
}

.hf-committee-desc {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.95;
	color: var(--hf-text-muted);
}

.hf-committee-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 0.9rem;
	font-size: 0.78rem;
	color: var(--hf-text-faint);
	padding-block: 0.4rem;
	border-block: 1px dashed var(--hf-border);
}

.hf-committee-meta span,
.hf-committee-meta a {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	color: inherit;
}

.hf-committee-meta a:hover {
	color: var(--hf-committee-color);
}

.hf-committee-news {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-top: auto;
}

.hf-committee-news a {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	color: var(--hf-text-muted);
	line-height: 1.7;
}

.hf-committee-news a:hover {
	color: var(--hf-committee-color);
}

.hf-committee-news-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--hf-committee-color);
	flex: 0 0 6px;
}

.hf-committee-news-title {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hf-committee-news time {
	font-size: 0.7rem;
	color: var(--hf-text-faint);
	flex: 0 0 auto;
}

.hf-committee-card--compact {
	padding: 1.3rem 1rem;
	text-align: center;
	align-items: center;
}

.hf-committee-card--compact .hf-committee-head {
	flex-direction: column;
	text-align: center;
	gap: 0.6rem;
}

.hf-committee-card--compact .hf-committee-arrow {
	display: none;
}

.hf-committees--tiles .hf-committee-card {
	min-height: 190px;
	justify-content: center;
	background: linear-gradient(160deg, var(--hf-surface), var(--hf-surface-2));
}

.hf-notices-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.hf-notice-card {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 1rem;
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-inline-start: 4px solid var(--hf-secondary);
	border-radius: var(--hf-radius-sm);
	transition: transform 0.3s var(--hf-ease), box-shadow 0.3s, border-color 0.3s;
}

.hf-notice-card:hover {
	transform: translateX(-5px);
	box-shadow: var(--hf-shadow);
	border-inline-start-color: var(--hf-primary);
}

.hf-notice-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 12px;
	color: var(--hf-secondary-dark);
	background: rgba(245, 179, 1, 0.14);
}

.hf-notice-body {
	min-width: 0;
	flex: 1;
}

.hf-notice-title {
	display: block;
	color: var(--hf-text);
	font-size: 0.94rem;
	line-height: 1.8;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hf-notice-card:hover .hf-notice-title {
	color: var(--hf-primary);
}

.hf-notice-meta {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 0.75rem;
	color: var(--hf-text-faint);
}

.hf-notice-meta span,
.hf-notice-meta time {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.hf-notice-arrow {
	color: var(--hf-text-faint);
	transition: transform 0.3s var(--hf-ease), color 0.3s;
}

.hf-notice-card:hover .hf-notice-arrow {
	color: var(--hf-primary);
	transform: translateX(-4px);
}

.hf-gallery-grid {
	grid-auto-rows: 200px;
}

.hf-gallery-item {
	position: relative;
	margin: 0;
	border-radius: var(--hf-radius);
	overflow: hidden;
	background: var(--hf-surface-3);
}

.hf-gallery-item--wide {
	grid-column: span 2;
	grid-row: span 2;
}

.hf-gallery-trigger {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border-radius: inherit;
	overflow: hidden;
	position: relative;
}

.hf-gallery-trigger img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--hf-ease-out), filter 0.4s;
}

.hf-gallery-item:hover .hf-gallery-trigger img {
	transform: scale(1.1);
	filter: saturate(1.15);
}

.hf-gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.4rem;
	padding: 0.9rem;
	background: linear-gradient(to top, rgba(5, 13, 26, 0.88), rgba(5, 13, 26, 0.15) 55%, transparent);
	color: #fff;
	opacity: 0;
	transition: opacity 0.35s var(--hf-ease);
}

.hf-gallery-item:hover .hf-gallery-overlay,
.hf-gallery-trigger:focus-visible + .hf-gallery-overlay,
.hf-gallery-trigger:focus-visible .hf-gallery-overlay {
	opacity: 1;
}

.hf-gallery-zoom {
	position: absolute;
	inset: 0;
	margin: auto;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(4px);
	transform: scale(0.7);
	opacity: 0;
	transition: transform 0.4s var(--hf-ease-out), opacity 0.3s;
}

.hf-gallery-item:hover .hf-gallery-zoom {
	transform: scale(1);
	opacity: 1;
}

.hf-gallery-caption {
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-gallery-count {
	position: absolute;
	inset-block-start: 0.7rem;
	inset-inline-end: 0.7rem;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	background: rgba(6, 14, 26, 0.7);
	border-radius: 999px;
	padding: 0.15em 0.7em;
	font-size: 0.74rem;
}

.hf-video-card {
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-radius: var(--hf-radius);
	overflow: hidden;
	transition: transform 0.35s var(--hf-ease-out), box-shadow 0.35s;
}

.hf-video-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hf-shadow-lg);
}

.hf-video-card-player .hf-video-frame {
	border-radius: 0;
	box-shadow: none;
}

.hf-video-card-body {
	padding: 1rem 1.1rem 1.15rem;
}

.hf-video-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.74rem;
	font-weight: 700;
	color: var(--hf-danger);
	background: rgba(220, 38, 38, 0.1);
	border-radius: 999px;
	padding: 0.15em 0.7em;
	margin-bottom: 0.5rem;
}

.hf-video-title {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-video-title a {
	color: var(--hf-text);
}

.hf-video-title a:hover {
	color: var(--hf-primary);
}

.hf-video-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 0.9rem;
	font-size: 0.77rem;
	color: var(--hf-text-faint);
}

.hf-video-meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
}

.hf-video-mini {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-radius: var(--hf-radius-sm);
	overflow: hidden;
	transition: transform 0.3s var(--hf-ease), box-shadow 0.3s;
}

.hf-video-mini:hover {
	transform: translateY(-4px);
	box-shadow: var(--hf-shadow);
}

.hf-video-mini-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--hf-surface-3);
}

.hf-video-mini-thumb img,
.hf-video-mini-thumb .hf-thumb-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hf-video-mini-title {
	padding: 0 0.8rem 0.8rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--hf-text);
	line-height: 1.75;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hf-video-mini:hover .hf-video-mini-title {
	color: var(--hf-primary);
}

.hf-gallery-count-badge {
	position: absolute;
	inset-block-start: 0.6rem;
	inset-inline-end: 0.6rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	background: rgba(6, 14, 26, 0.72);
	color: #fff;
	border-radius: 999px;
	padding: 0.12em 0.6em;
	font-size: 0.72rem;
}

.hf-stats {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, var(--hf-primary-dark), #062a1c 45%, #071a2c);
	color: #fff;
}

.hf-stats-pattern {
	position: absolute;
	inset: 0;
	color: rgba(255, 255, 255, 0.5);
	opacity: 0.25;
	pointer-events: none;
}

.hf-stats-title {
	position: relative;
	color: #fff;
	text-align: center;
	margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.hf-stats-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.8rem, 2vw, 1.4rem);
}

.hf-stat-card {
	text-align: center;
	padding: 1.5rem 1rem;
	border-radius: var(--hf-radius);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(6px);
	transition: transform 0.35s var(--hf-ease-out), background-color 0.35s;
}

.hf-stat-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.13);
}

.hf-stat-icon {
	display: inline-grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	color: #22190a;
	background: var(--hf-secondary);
	margin-bottom: 0.8rem;
	box-shadow: 0 14px 26px -16px var(--hf-secondary);
}

.hf-stat-value {
	display: block;
	font-size: clamp(1.6rem, 3.4vw, 2.5rem);
	font-weight: 900;
	line-height: 1.3;
	color: #fff;
}

.hf-stat-label {
	display: block;
	margin-top: 0.3rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	font-weight: 600;
}

.hf-sponsors-track {
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hf-sponsors-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: max-content;
	animation: hf-marquee 34s linear infinite;
}

.hf-sponsors-track:hover .hf-sponsors-row {
	animation-play-state: paused;
}

@keyframes hf-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(50%); }
}

.hf-sponsor-item {
	display: grid;
	place-items: center;
	min-width: 170px;
	height: 92px;
	padding: 0.8rem 1.2rem;
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-radius: var(--hf-radius-sm);
	color: var(--hf-text-muted);
	font-weight: 700;
	font-size: 0.86rem;
	text-align: center;
	transition: transform 0.3s var(--hf-ease), box-shadow 0.3s, border-color 0.3s;
}

.hf-sponsor-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--hf-shadow);
	border-color: var(--hf-primary);
	color: var(--hf-primary);
}

.hf-sponsor-item img {
	max-height: 58px;
	width: auto;
	object-fit: contain;
	filter: grayscale(0.35);
	transition: filter 0.3s;
}

.hf-sponsor-item:hover img {
	filter: grayscale(0);
}

.hf-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 0.9rem;
}

.hf-link-card {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.9rem 1rem;
	background: var(--hf-surface);
	border: 1px solid var(--hf-border);
	border-radius: var(--hf-radius-sm);
	color: var(--hf-text);
	transition: transform 0.3s var(--hf-ease), box-shadow 0.3s, border-color 0.3s;
}

.hf-link-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hf-shadow);
	border-color: var(--hf-primary);
	color: var(--hf-primary);
}

.hf-link-icon,
.hf-link-logo {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	border-radius: 12px;
	background: var(--hf-surface-2);
	color: var(--hf-primary);
	overflow: hidden;
}

.hf-link-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hf-link-title {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.7;
}
