:root {
	--bg: #090b0f;
	--surface: #10141a;
	--surface-2: #171c24;
	--line: #272d37;
	--text: #f7f5f0;
	--muted: #9ba3af;
	--accent: #ff3b30;
	--accent-2: #ff6b36;
	--white: #fff;
	--header: rgba(9, 11, 15, .94);
	--shadow: 0 20px 60px rgba(0, 0, 0, .28);
	--radius: 14px;
	--container: 1240px;
}

body.light-theme {
	--bg: #f5f3ee;
	--surface: #fff;
	--surface-2: #ece9e2;
	--line: #d8d4cb;
	--text: #121418;
	--muted: #626873;
	--accent: #c91f24;
	--accent-2: #a91018;
	--header: rgba(245, 243, 238, .94);
	--shadow: 0 20px 60px rgba(42, 34, 25, .1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
:where(a, button, input, textarea, select):focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--article { width: min(calc(100% - 40px), 850px); }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%);
	background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }

.breadcrumbs {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}
.breadcrumbs a { color: inherit; }
.breadcrumbs a:hover { color: var(--accent); }

.author-header {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 780px;
  margin: 0 0 42px;
}
.author-header .avatar {
  width: 112px;
  height: 112px;
  border: 3px solid var(--line);
  border-radius: 50%;
}
.author-header h1 { margin: 5px 0 8px; }
.author-header p { margin: 0; color: var(--muted); }
.author-box h2 a { color: inherit; }
.author-box h2 a:hover { color: var(--accent); }
.section { padding: 68px 0; }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.eyebrow {
	display: inline-flex; color: var(--accent); font-size: .72rem; font-weight: 800;
	letter-spacing: .15em; line-height: 1; text-transform: uppercase;
}
.button {
	display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
	padding: 0 22px; border: 0; border-radius: 8px; background: var(--accent);
	color: #fff; font-weight: 800; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: var(--accent-2); }
.button--light { background: #fff; color: #111319; }

.site-header { position: relative; z-index: 50; background: var(--header); }
.has-sticky-header .site-header { position: sticky; top: 0; box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.admin-bar.has-sticky-header .site-header { top: 32px; }
.header-style-compact .brand-bar__inner { min-height: 68px; }
.header-style-compact .primary-menu a { padding-block: 11px; }
.utility-bar { border-bottom: 1px solid var(--line); font-size: .75rem; color: var(--muted); }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 34px; }
.utility-links { display: flex; gap: 20px; }
.utility-links a:hover { color: var(--text); }
.brand-bar { background: var(--header); }
.brand-bar__inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-branding { display: flex; justify-content: center; flex: 1; }
.custom-logo { max-height: 58px; width: auto; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; font-family: "Space Grotesk", sans-serif; }
.wordmark__mark {
	display: grid; place-items: center; width: 42px; aspect-ratio: 1; border-radius: 11px;
	background: linear-gradient(135deg, var(--accent), #b90c25); color: #fff;
	font-size: 1.35rem; font-weight: 800; box-shadow: 0 10px 24px rgba(255, 59, 48, .22);
}
.wordmark__text { font-size: 1.35rem; font-weight: 600; letter-spacing: -.04em; }
.wordmark__text strong { color: var(--accent); }
.header-actions { display: flex; gap: 8px; }
.icon-button {
	display: grid; place-items: center; width: 42px; height: 42px; padding: 0;
	border: 1px solid var(--line); border-radius: 50%; background: transparent;
	cursor: pointer; transition: border-color .2s, background .2s;
}
.icon-button:hover { border-color: var(--accent); background: var(--surface-2); }
.menu-toggle { visibility: hidden; }
.icon-button__bars, .icon-button__bars::before, .icon-button__bars::after {
	display: block; width: 17px; height: 2px; background: currentColor; content: "";
}
.icon-button__bars { position: relative; }
.icon-button__bars::before { position: absolute; top: -5px; }
.icon-button__bars::after { position: absolute; top: 5px; }
.primary-navigation { border-block: 1px solid var(--line); background: var(--header); }
.primary-menu { display: flex; align-items: center; justify-content: center; gap: 34px; min-height: 52px; padding: 0; margin: 0; list-style: none; }
.primary-menu a {
	position: relative; display: block; padding: 15px 0; font-size: .82rem; font-weight: 800;
	letter-spacing: .03em; text-transform: uppercase;
}
.primary-menu a::after {
	position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--accent);
	content: ""; transform: scaleX(0); transition: transform .2s;
}
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { transform: scaleX(1); }
.search-panel { padding: 22px 0; background: var(--surface); border-bottom: 1px solid var(--line); }
.search-form { display: flex; width: 100%; gap: 10px; }
.search-form label { flex: 1; }
.search-field {
	width: 100%; height: 52px; padding: 0 18px; border: 1px solid var(--line);
	border-radius: 8px; background: var(--bg); color: var(--text); outline: 0;
}
.search-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,59,48,.12); }
.search-submit {
	padding: 0 24px; border: 0; border-radius: 8px; background: var(--accent);
	color: #fff; font-weight: 800; cursor: pointer;
}
.breaking-bar {
	position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.07);
	background: linear-gradient(90deg, #090c11 0%, #10151d 52%, #090c11 100%);
	color: #f7f5f0; box-shadow: inset 0 1px rgba(255,255,255,.025);
}
.breaking-bar::before {
	position: absolute; top: 0; right: 0; left: 0; height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent) 28%, rgba(255,59,48,.18) 70%, transparent);
	content: "";
}
.breaking-bar__inner { display: flex; align-items: center; gap: 20px; min-height: 48px; }
.breaking-bar strong {
	align-self: stretch; display: flex; flex: 0 0 auto; align-items: center; gap: 9px;
	padding: 0 20px 0 0; border-right: 1px solid rgba(255,255,255,.12);
	color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .14em; white-space: nowrap;
}
.breaking-bar strong::before {
	width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
	box-shadow: 0 0 0 5px rgba(255,59,48,.13); content: ""; animation: knBreakingPulse 1.8s ease-in-out infinite;
}
.breaking-ticker { position: relative; flex: 1; min-width: 0; height: 48px; overflow: hidden; }
.breaking-ticker::after {
	position: absolute; right: 0; bottom: 0; left: 0; height: 2px;
	background: linear-gradient(90deg, var(--accent), rgba(255,59,48,.1)); content: "";
	transform-origin: left; animation: knBreakingProgress 5s linear infinite;
}
.breaking-item {
	position: absolute; inset: 0; display: block; min-width: 0; padding-right: 38px; line-height: 48px;
	overflow: hidden; color: #e6e9ee; font-size: .82rem; font-weight: 700;
	white-space: nowrap; text-overflow: ellipsis; opacity: 0; pointer-events: none;
	transform: translateX(18px); transition: opacity .4s ease, transform .4s ease;
}
.breaking-item.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.breaking-item::after {
	position: absolute; right: 8px; color: var(--accent); font-size: 1rem; content: "→";
	transition: transform .2s ease;
}
.breaking-item:hover { color: #fff; }
.breaking-item:hover::after { transform: translateX(4px); }
@keyframes knBreakingPulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(255,59,48,.09); }
	50% { box-shadow: 0 0 0 7px rgba(255,59,48,.2); }
}
@keyframes knBreakingProgress {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

.section-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.section-kicker span { color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.section-kicker p { margin: 0; color: var(--muted); font-size: .78rem; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: repeat(2, 255px); gap: 12px; }
.hero-card { min-width: 0; overflow: hidden; border-radius: var(--radius); background: var(--surface-2); }
.hero-card--main { grid-row: 1 / 3; }
.hero-card__media { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; }
.hero-card__media > img, .hero-card__media > .image-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hero-card__media:hover > img, .hero-card__media:hover > .image-placeholder { transform: scale(1.035); }
.hero-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(5,7,10,.88)); }
.hero-card__shade { z-index: 1; background: linear-gradient(180deg, rgba(5,7,10,.02) 10%, rgba(5,7,10,.28) 52%, rgba(5,7,10,.96) 100%); }
.hero-card__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: block; padding: 25px; color: #fff; }
.hero-card__title { display: block; margin: 9px 0 0; font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: -.025em; line-height: 1.2; }
.hero-card--main .hero-card__title { max-width: 700px; font-size: clamp(2rem, 4vw, 3.45rem); }
.hero-card__meta { display: block; margin-top: 12px; color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 600; }
.hero-empty {
	display: flex; align-items: flex-end; min-height: 520px; padding: 60px; border: 1px solid var(--line);
	border-radius: var(--radius); background:
		radial-gradient(circle at 80% 20%, rgba(255,59,48,.22), transparent 35%),
		linear-gradient(135deg, var(--surface-2), var(--bg)); overflow: hidden;
}
.hero-empty h1 { max-width: 700px; margin: 12px 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -.07em; line-height: .95; }
.hero-empty p { max-width: 580px; margin-bottom: 25px; color: var(--muted); }
.image-placeholder {
	display: grid; place-items: center; min-height: 100%; background:
		linear-gradient(135deg, rgba(255,59,48,.2), transparent),
		repeating-linear-gradient(45deg, var(--surface-2), var(--surface-2) 12px, var(--surface) 12px, var(--surface) 24px);
}
.image-placeholder span { color: rgba(255,255,255,.18); font-family: "Space Grotesk", sans-serif; font-size: 3rem; font-weight: 700; }

.youtube-section {
	position: relative;
	padding-top: 18px;
	background:
		radial-gradient(circle at 88% 5%, rgba(255,59,48,.1), transparent 28%),
		linear-gradient(180deg, transparent, rgba(255,255,255,.015));
}
.youtube-section__heading { align-items: center; }
.youtube-video-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.youtube-video-card {
	min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 12px;
	background: var(--surface); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.youtube-video-card:hover { border-color: rgba(255,59,48,.52); box-shadow: var(--shadow); transform: translateY(-4px); }
.youtube-video-card__link { display: block; height: 100%; }
.youtube-video-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.youtube-video-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.youtube-video-card:hover .youtube-video-card__media img { transform: scale(1.045); }
.youtube-video-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,7,10,.55)); }
.youtube-video-card__play {
	position: absolute; top: 50%; left: 50%; width: 48px; height: 34px; border-radius: 9px;
	background: var(--accent); box-shadow: 0 10px 28px rgba(0,0,0,.34); transform: translate(-50%, -50%);
	transition: transform .2s ease;
}
.youtube-video-card__play::after {
	position: absolute; top: 50%; left: 52%; width: 0; height: 0;
	border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid #fff;
	content: ""; transform: translate(-50%, -50%);
}
.youtube-video-card:hover .youtube-video-card__play { transform: translate(-50%, -50%) scale(1.08); }
.youtube-video-card__body { display: block; padding: 17px; }
.youtube-video-card__source {
	display: block; margin-bottom: 7px; color: var(--accent); font-size: .64rem;
	font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.youtube-video-card h3 {
	display: -webkit-box; min-height: 2.8em; margin: 0 0 12px; overflow: hidden;
	font-family: "Space Grotesk", sans-serif; font-size: 1rem; letter-spacing: -.02em; line-height: 1.4;
	-webkit-box-orient: vertical; -webkit-line-clamp: 2;
}
.youtube-video-card time { color: var(--muted); font-size: .7rem; font-weight: 600; }
.youtube-section__notice {
	padding: 28px; border: 1px dashed rgba(255,59,48,.45); border-radius: 12px;
	background: var(--surface); text-align: center;
}
.youtube-section__notice p { margin: 7px auto 18px; color: var(--muted); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 27px; }
.section-heading h2 { margin: 5px 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -.04em; line-height: 1.1; }
.section-heading > a { color: var(--muted); font-size: .8rem; font-weight: 800; }
.section-heading > a:hover { color: var(--accent); }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 20px; }
.cards-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-news-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
.post-card__media { display: block; aspect-ratio: 1.6; overflow: hidden; border-radius: 10px; background: var(--surface-2); }
.post-card__media img, .post-card__media .image-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding-top: 16px; }
.post-category { display: inline-flex; color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-card__title { margin: 8px 0; font-family: "Space Grotesk", sans-serif; font-size: 1.18rem; letter-spacing: -.025em; line-height: 1.28; }
.post-card__title a:hover { color: var(--accent); }
.post-card__excerpt { margin: 0 0 12px; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--muted); font-size: .72rem; font-weight: 600; }
.post-meta__author { display: inline-flex; align-items: center; gap: 8px; margin-right: 5px; color: var(--text); }
.post-meta__author img { border-radius: 50%; }

.feature-list-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.feature-story__media { display: block; aspect-ratio: 1.55; overflow: hidden; border-radius: var(--radius); }
.feature-story__media img, .feature-story__media .image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.feature-story__body { padding-top: 18px; }
.feature-story h3 { margin: 9px 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.65rem, 3vw, 2.25rem); letter-spacing: -.04em; line-height: 1.1; }
.feature-story p { color: var(--muted); }
.compact-list { display: flex; flex-direction: column; }
.compact-card { display: grid; grid-template-columns: 145px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.compact-card:first-child { padding-top: 0; }
.compact-card__media { display: block; aspect-ratio: 1.35; overflow: hidden; border-radius: 8px; }
.compact-card__media img, .compact-card__media .image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.compact-card h3 { margin: 5px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 1rem; line-height: 1.25; }
.compact-card time { color: var(--muted); font-size: .7rem; }
.cta-panel {
	display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 260px;
	padding: 50px; border-radius: var(--radius); background:
		linear-gradient(120deg, #b80823, var(--accent) 60%, var(--accent-2)); color: #fff;
	box-shadow: var(--shadow);
}
.cta-panel .eyebrow { color: #fff; opacity: .75; }
.cta-panel h2 { margin: 8px 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.05em; line-height: 1; }
.cta-panel p { margin: 0; opacity: .82; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; align-items: start; }
.archive-header { padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.archive-header h1, .page-header h1 { margin: 8px 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.4rem, 5vw, 4.3rem); letter-spacing: -.06em; line-height: 1; }
.archive-description { color: var(--muted); }
.post-list-item { display: grid; grid-template-columns: 260px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.post-list-item__media { display: block; aspect-ratio: 1.5; overflow: hidden; border-radius: 10px; }
.post-list-item__media img, .post-list-item__media .image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.post-list-item h2 { margin: 7px 0; font-family: "Space Grotesk", sans-serif; font-size: 1.45rem; line-height: 1.2; }
.post-list-item h2 a:hover { color: var(--accent); }
.post-list-item p { margin: 0 0 12px; color: var(--muted); font-size: .86rem; }
.nav-links { display: flex; justify-content: center; gap: 8px; padding-top: 35px; }
.nav-links .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 7px; }
.nav-links .current, .nav-links a:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.sidebar { position: sticky; top: 20px; }
.widget { padding: 26px; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.widget:first-child { padding-top: 0; }
.widget:first-child { padding: 26px; }
.widget-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.widget-title { margin: 0 0 18px; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; }
.widget-heading .widget-title { margin: 0; font-size: 1.6rem; }
.widget ul { padding-left: 18px; }
.ranked-list { padding: 0; margin: 0; list-style: none; counter-reset: rank; }
.ranked-list li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); line-height: 1.35; }
.ranked-list li:last-child { border: 0; }
.ranked-list span { color: var(--accent); font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; font-weight: 700; }
.ranked-list a { font-size: .84rem; font-weight: 800; }
.ranked-list a:hover { color: var(--accent); }
.category-chips { display: flex; flex-direction: column; gap: 8px; }
.category-chips a { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 7px; background: var(--surface-2); font-size: .78rem; font-weight: 800; }
.category-chips a:hover { background: var(--accent); color: #fff; }
.category-chips strong { display: grid; place-items: center; min-width: 24px; height: 24px; border-radius: 50%; background: var(--bg); color: var(--muted); font-size: .67rem; }
.widget--accent { padding: 30px; border: 0; border-radius: 12px; background: linear-gradient(145deg, #121720, rgba(255,59,48,.22)); color: #fff; overflow: hidden; }
.widget--accent h2 { margin-bottom: 0; font-size: 1.35rem; line-height: 1.2; }
.widget--accent p { color: #abb2bd; font-size: .8rem; }
.widget--accent > a { display: inline-flex; margin-top: 8px; color: #fff; font-size: .75rem; font-weight: 800; }
.widget--accent > a:hover { color: var(--accent); }
.empty-state { padding: 70px 30px; text-align: center; }
.empty-state__mark { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto; border-radius: 50%; background: var(--surface-2); color: var(--accent); font-size: 2rem; }

.single-header { padding: 70px 0 38px; text-align: center; }
.single-header .post-category { margin-bottom: 18px; }
.single-header h1 { max-width: 920px; margin: 0 auto; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.5rem, 6vw, 5.3rem); letter-spacing: -.065em; line-height: 1.02; }
.single-deck { max-width: 740px; margin: 24px auto; color: var(--muted); font-size: 1.15rem; }
.single-header .post-meta { justify-content: center; margin-top: 24px; }
.featured-image-wrap img { width: 100%; max-height: 720px; border-radius: var(--radius); object-fit: cover; }
.image-caption { margin: 8px 0 0; color: var(--muted); font-size: .72rem; }
.article-layout { display: grid; grid-template-columns: 70px minmax(0, 760px) 290px; justify-content: center; gap: 45px; padding-top: 55px; }
.share-rail { position: sticky; top: 20px; align-self: start; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.share-rail > span { margin-bottom: 5px; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .12em; writing-mode: vertical-rl; transform: rotate(180deg); }
.share-rail a, .share-rail button {
	display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line);
	border-radius: 50%; background: transparent; color: var(--text); font-weight: 800; cursor: pointer;
}
.share-rail a:hover, .share-rail button:hover { border-color: var(--accent); color: var(--accent); }
.article-content { min-width: 0; font-family: "Manrope", sans-serif; font-size: 1.05rem; line-height: 1.9; }
.article-content > *:first-child { margin-top: 0; }
.article-content h2, .article-content h3, .article-content h4 { margin: 1.8em 0 .6em; font-family: "Space Grotesk", sans-serif; letter-spacing: -.035em; line-height: 1.2; }
.article-content h2 { font-size: 2rem; }
.article-content h3 { font-size: 1.55rem; }
.article-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote {
	margin: 35px 0; padding: 10px 0 10px 28px; border-left: 4px solid var(--accent);
	font-family: "Space Grotesk", sans-serif; font-size: 1.45rem; font-weight: 600; line-height: 1.45;
}
.article-content img { border-radius: 9px; }
.article-content table { width: 100%; border-collapse: collapse; }
.article-content th, .article-content td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 32px; margin-top: 40px; border-top: 1px solid var(--line); }
.tag-list > span { margin-right: 8px; font-weight: 800; }
.tag-list a { padding: 5px 10px; border-radius: 5px; background: var(--surface-2); color: var(--muted); font-size: .75rem; text-decoration: none; }
.author-box { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 28px; margin-top: 45px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.author-box img { border-radius: 50%; }
.author-box h2 { margin: 5px 0; font-size: 1.25rem; }
.author-box p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.6; }
.post-navigation-wrap { padding-top: 55px; }
.post-navigation .nav-links { display: grid; grid-template-columns: repeat(2, 1fr); padding: 0; }
.post-navigation a { display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 10px; }
.post-navigation a:hover { border-color: var(--accent); background: var(--surface); color: var(--text); }
.post-navigation span { color: var(--muted); font-size: .72rem; }
.post-navigation strong { margin-top: 5px; line-height: 1.35; }
.related-posts { margin-top: 55px; background: var(--surface); }
.comments-wrap { padding-block: 60px; }
.comments-title { font-family: "Space Grotesk", sans-serif; }
.comment-list { padding: 0; list-style: none; }
.comment-list .comment { padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-meta { color: var(--muted); font-size: .75rem; }
.comment-form input:not([type="submit"]), .comment-form textarea {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); color: var(--text);
}
.comment-form .submit { padding: 12px 20px; border: 0; border-radius: 7px; background: var(--accent); color: #fff; font-weight: 800; cursor: pointer; }

/* Contact Form 7 */
.wpcf7 {
	width: 100%; margin-top: 30px; color: var(--text);
	font-family: "Manrope", system-ui, sans-serif;
}
.wpcf7 form {
	position: relative; padding: clamp(22px, 4vw, 38px); border: 1px solid var(--line);
	border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow);
}
.wpcf7 form > :first-child { margin-top: 0; }
.wpcf7 form > :last-child { margin-bottom: 0; }
.wpcf7 p { margin: 0 0 20px; }
.wpcf7 label { display: block; color: var(--text); font-size: .84rem; font-weight: 800; line-height: 1.45; }
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-top: 8px; }
.wpcf7 input:not([type="submit"], [type="checkbox"], [type="radio"]),
.wpcf7 textarea,
.wpcf7 select {
	display: block; width: 100%; min-height: 50px; padding: 12px 14px;
	border: 1px solid var(--line); border-radius: 8px; outline: 0;
	background: var(--bg); color: var(--text); font: inherit;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.wpcf7 textarea { min-height: 170px; resize: vertical; }
.wpcf7 select { cursor: pointer; }
.wpcf7 input[type="file"] { min-height: auto; padding: 10px; color: var(--muted); }
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: var(--muted); opacity: .78; }
.wpcf7 input:not([type="submit"], [type="checkbox"], [type="radio"]):focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	border-color: var(--accent); background: var(--surface-2);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
	width: 18px; height: 18px; margin: 0 8px 0 0; accent-color: var(--accent);
	vertical-align: -3px;
}
.wpcf7 .wpcf7-list-item { margin: 6px 18px 6px 0; }
.wpcf7 .wpcf7-list-item label { display: inline-flex; align-items: center; font-weight: 600; cursor: pointer; }
.wpcf7 input[type="submit"] {
	display: inline-flex; min-height: 50px; padding: 0 25px; border: 0; border-radius: 8px;
	background: var(--accent); color: #fff; font-weight: 800; cursor: pointer;
	box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 25%, transparent);
	transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.wpcf7 input[type="submit"]:hover { background: var(--accent-2); transform: translateY(-2px); }
.wpcf7 input[type="submit"]:disabled,
.wpcf7 form.submitting input[type="submit"] { opacity: .55; cursor: wait; transform: none; }
.wpcf7 .wpcf7-spinner {
	margin: 0 0 0 12px; background-color: var(--surface-2); vertical-align: middle;
}
.wpcf7 .wpcf7-not-valid {
	border-color: #ff5d62 !important; box-shadow: 0 0 0 3px rgba(255,93,98,.12) !important;
}
.wpcf7 .wpcf7-not-valid-tip {
	display: flex; align-items: center; gap: 6px; margin-top: 7px;
	color: #ff777b; font-size: .74rem; font-weight: 700; line-height: 1.4;
}
.wpcf7 .wpcf7-not-valid-tip::before { content: "!"; font-weight: 900; }
.wpcf7 form .wpcf7-response-output {
	margin: 22px 0 0; padding: 13px 15px; border: 1px solid #e0a82e;
	border-radius: 8px; background: rgba(224,168,46,.1); color: var(--text);
	font-size: .82rem; font-weight: 700; line-height: 1.55;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output { display: none; }
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #39b86b; background: rgba(57,184,107,.11);
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #ff5d62; background: rgba(255,93,98,.1);
}
.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f28b3c; background: rgba(242,139,60,.11);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #e0a82e; background: rgba(224,168,46,.1);
}
.wpcf7 .kn-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
.wpcf7 .kn-form-full { grid-column: 1 / -1; }
.wpcf7 .screen-reader-response { color: var(--text); }

.page-content { min-height: 60vh; }
.not-found { min-height: 68vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found__code { color: var(--surface-2); font-family: "Space Grotesk", sans-serif; font-size: clamp(7rem, 22vw, 18rem); font-weight: 700; letter-spacing: -.1em; line-height: .7; }
.not-found h1 { margin: 15px 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.05em; }
.not-found p { max-width: 550px; color: var(--muted); }

/* Advertising slots are absent from the layout until enabled with code. */
.ad-slot { width: 100%; overflow: hidden; }
.ad-slot > * { max-width: 100%; }
.ad-slot--wide { padding: 22px 0; text-align: center; }
.ad-slot--feed { margin: 8px 0 34px; text-align: center; }
.ad-slot--sidebar { margin: 0 0 18px; text-align: center; }
.ad-slot--article { margin: 30px 0; text-align: center; }
.ad-slot ins.adsbygoogle { display: block; }

.site-footer { margin-top: 20px; border-top: 1px solid var(--line); background: #07090c; color: #f7f5f0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1.2fr; gap: 70px; padding-block: 70px; }
.footer-no-newsletter .footer-grid { grid-template-columns: 1.25fr .75fr; }
.wordmark--footer { color: #fff; }
.footer-brand p { max-width: 330px; color: #8f98a4; font-size: .85rem; }
.social-links { display: flex; gap: 14px; font-size: .8rem; font-weight: 800; }
.social-links a:hover { color: var(--accent); }
.footer-menu-wrap h2, .newsletter-box h2, .footer-widget__title { margin: 0 0 16px; font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; }
.footer-menu { padding: 0; margin: 0; list-style: none; }
.footer-menu li { margin-bottom: 8px; }
.footer-menu a { color: #8f98a4; font-size: .85rem; }
.newsletter-box h2 { margin: 8px 0; font-size: 1.8rem; }
.newsletter-box p { color: #8f98a4; font-size: .82rem; }
.newsletter-form { display: flex; margin-top: 20px; }
.newsletter-form input { flex: 1; min-width: 0; height: 46px; padding: 0 13px; border: 1px solid #282e37; border-radius: 7px 0 0 7px; background: #10141a; color: #fff; }
.newsletter-form button { padding: 0 16px; border: 0; border-radius: 0 7px 7px 0; background: var(--accent); color: #fff; font-weight: 800; }
.footer-widgets { padding-bottom: 40px; }
.footer-bottom { border-top: 1px solid #20252d; }
.footer-bottom__inner { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; color: #737c87; font-size: .72rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1050px) {
	.hero-grid { grid-template-columns: 1.3fr 1fr; grid-template-rows: repeat(3, 210px); }
	.hero-card--main { grid-row: 1 / 3; }
	.hero-card--small:nth-of-type(4), .hero-card--small:nth-of-type(5) { grid-column: span 1; }
	.cards-grid--four { grid-template-columns: repeat(2, 1fr); }
	.youtube-video-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.content-layout { grid-template-columns: 1fr 280px; gap: 40px; }
	.home-news-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 32px; }
	.article-layout { grid-template-columns: 55px minmax(0, 1fr); }
	.article-layout > .sidebar { display: none; }
}

@media (max-width: 780px) {
	.container { width: min(calc(100% - 28px), var(--container)); }
	.section { padding: 48px 0; }
	.utility-links { display: none; }
	.brand-bar__inner { min-height: 72px; }
	.wordmark__text { font-size: 1.1rem; }
	.wordmark__mark { width: 36px; border-radius: 9px; }
	.menu-toggle { visibility: visible; }
	.primary-navigation {
		position: fixed; z-index: 999; top: 0; right: 0; bottom: 0; left: 0;
		padding-top: 90px; background: var(--bg); transform: translateX(-100%); transition: transform .25s;
	}
	.menu-is-open .primary-navigation { transform: translateX(0); }
	.primary-menu { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; }
	.primary-menu a { padding: 16px 10px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
	.menu-toggle { position: relative; z-index: 1000; }
	.hero-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: 420px repeat(2, 185px); }
	.hero-card--main { grid-column: 1 / 3; grid-row: auto; }
	.hero-card--main .hero-card__title { font-size: clamp(1.85rem, 8vw, 3rem); }
	.hero-card__content { padding: 18px; }
	.hero-card__title { font-size: .95rem; }
	.hero-card__meta { display: none; }
	.hero-empty { min-height: 480px; padding: 35px 25px; }
	.cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.feature-list-layout { grid-template-columns: 1fr; }
	.content-layout { grid-template-columns: 1fr; }
	.home-news-layout { grid-template-columns: 1fr; }
	.home-news-layout > .sidebar { position: static; }
	.content-layout > .sidebar { position: static; }
	.article-layout { grid-template-columns: 1fr; padding-top: 40px; }
	.share-rail { position: static; flex-direction: row; justify-content: flex-start; }
	.share-rail > span { writing-mode: initial; transform: none; margin: 0 8px 0 0; }
	.single-header { padding-top: 48px; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); gap: 45px; }
	.newsletter-box { grid-column: 1 / 3; }
	.admin-bar.has-sticky-header .site-header { top: 46px; }
	.ad-slot--wide { padding: 16px 0; }
	.ad-slot--article { margin: 24px 0; }
}

@media (max-width: 540px) {
	.utility-date { margin: auto; }
	.theme-toggle { display: none; }
	.breaking-bar__inner { gap: 13px; min-height: 46px; }
	.breaking-bar strong { gap: 7px; padding-right: 13px; font-size: .58rem; letter-spacing: .1em; }
	.breaking-bar strong::before { width: 7px; height: 7px; }
	.breaking-ticker { height: 46px; }
	.breaking-item { padding-right: 27px; line-height: 46px; font-size: .74rem; }
	.breaking-item::after { right: 3px; }
	.hero-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: 410px repeat(2, 190px);
		gap: 10px;
		overflow: visible;
	}
	.hero-card { width: 100%; height: auto; min-width: 0; }
	.hero-card--main { grid-column: 1 / -1; height: 410px; }
	.hero-card--small { height: 190px; }
	.hero-card__content { padding: 16px; }
	.hero-card--main .hero-card__content { padding: 22px 20px; }
	.hero-card--main .hero-card__title {
		max-width: 100%;
		font-size: clamp(1.65rem, 8vw, 2.15rem);
		line-height: 1.05;
		letter-spacing: -.045em;
	}
	.hero-card--small .hero-card__title {
		display: -webkit-box;
		overflow: hidden;
		font-size: .88rem;
		line-height: 1.18;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
	.hero-card--small .post-category { font-size: .58rem; }
	.cards-grid, .cards-grid--four { grid-template-columns: 1fr; }
	.youtube-section { padding-top: 8px; }
	.youtube-section__heading { align-items: end; }
	.youtube-video-track {
		display: flex; gap: 13px; width: calc(100% + 14px); margin-right: -14px; padding: 0 14px 12px 0;
		overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory;
		scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
	}
	.youtube-video-card { flex: 0 0 min(82vw, 310px); scroll-snap-align: start; }
	.youtube-video-card:hover { transform: none; }
	.youtube-video-card__body { padding: 15px; }
	.cards-grid--two { grid-template-columns: 1fr; }
	.post-card { display: grid; grid-template-columns: 125px 1fr; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
	.post-card__media { aspect-ratio: 1; }
	.post-card__body { padding: 0; }
	.post-card__title { font-size: 1rem; }
	.post-card__excerpt { display: none; }
	.post-list-item { grid-template-columns: 120px 1fr; gap: 15px; }
	.post-list-item h2 { font-size: 1rem; }
	.post-list-item p { display: none; }
	.compact-card { grid-template-columns: 115px 1fr; }
	.cta-panel { flex-direction: column; align-items: flex-start; padding: 32px 25px; }
	.single-header h1 { font-size: 2.4rem; }
	.single-deck { font-size: 1rem; }
	.article-content { font-size: 1rem; }
	.article-content h2 { font-size: 1.65rem; }
	.wpcf7 form { padding: 20px 16px; }
	.wpcf7 .kn-form-grid { grid-template-columns: 1fr; gap: 0; }
	.wpcf7 .kn-form-full { grid-column: auto; }
	.wpcf7 input[type="submit"] { width: 100%; }
	.post-navigation .nav-links { grid-template-columns: 1fr; }
	.author-box { grid-template-columns: 55px 1fr; padding: 20px; }
	.author-box img { width: 55px; }
	.author-header { align-items: flex-start; gap: 16px; }
	.author-header .avatar { width: 76px; height: 76px; }
	.author-header h1 { font-size: 1.8rem; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-no-newsletter .footer-grid { grid-template-columns: 1fr; }
	.newsletter-box { grid-column: auto; }
	.footer-bottom__inner { flex-direction: column; }
}

@media (max-width: 380px) {
	.hero-grid {
		grid-template-columns: 1fr;
		grid-template-rows: 380px repeat(4, 175px);
	}
	.hero-card--main { grid-column: 1; height: 380px; }
	.hero-card--small { height: 175px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
