:root,
[data-theme="dark"] {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --surface-3: #2e2e2e;
  --text: #ffffff;
  --muted: #9a9a9a;
  --accent: #f05423;
  --accent-hover: #ff6b3d;
  --red: #e63900;
  --border: #333333;
  --header-bg: #000000;
  --max: 860px;
  --wide: 1280px;
  --font: "Roboto", Arial, sans-serif;
  --font-cond: "Roboto Condensed", "Roboto", Arial, sans-serif;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --surface-3: #eeeeee;
  --text: #111111;
  --muted: #666666;
  --border: #dddddd;
  --header-bg: #111111;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.15;
  color: var(--text);
}

.container {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  clip: auto;
}

.section-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
}

.home-section {
  padding: 2.5rem 0;
}

.meta-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
}

.site-header__bar {
  background: var(--header-bg);
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 52px;
}

.site-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-cond);
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: min(180px, 42vw);
}

.site-logo:hover {
  color: #ffffff;
  text-decoration: none;
}

.site-header__inner img {
  display: block;
  height: 32px;
  width: auto;
  max-width: min(180px, 42vw);
  object-fit: contain;
}

.primary-nav {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-nav__list::-webkit-scrollbar {
  display: none;
}

.nav-item {
  flex-shrink: 0;
}

.primary-nav__list a {
  display: block;
  padding: 0 0.65rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  line-height: 52px;
  white-space: nowrap;
}

.primary-nav__list a:hover {
  color: var(--accent);
  text-decoration: none;
}

.primary-nav__list .current-menu-item a,
.primary-nav__list .current_page_item a {
  color: var(--accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-search__toggle,
.nav-toggle {
  background: none;
  border: none;
  padding: 0.45rem;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.header-search__toggle:hover,
.nav-toggle:hover {
  color: var(--accent);
}

.site-header__accent {
  height: 3px;
  background: var(--accent);
}

.header-search-panel {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-search-panel__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.header-search-panel .search-form {
  margin: 0;
}

.nav-toggle {
  display: none;
}

/* ===== Mobile Navigation Overlay ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #2b2b2b;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 52px;
  background: #000000;
  flex-shrink: 0;
}

.mobile-nav__header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav__close {
  background: none;
  border: none;
  color: #ffffff;
  padding: 0.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mobile-nav__accent {
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
}

.mobile-nav__body {
  flex: 1;
  padding: 0.5rem 0 2rem;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__link {
  display: block;
  flex: 1;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
}

.mobile-nav__link:hover {
  color: var(--accent);
  text-decoration: none;
}

.mobile-nav__expand {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-nav__item.is-expanded .mobile-nav__expand-icon {
  transform: rotate(45deg);
}

.mobile-nav__expand-icon {
  display: block;
  transition: transform 0.2s ease;
}

.mobile-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  background: rgba(0, 0, 0, 0.25);
}

.mobile-nav__item.is-expanded > .mobile-nav__submenu {
  display: block;
}

.mobile-nav__sublink {
  display: block;
  padding: 0.85rem 1.25rem 0.85rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cccccc;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav__sublink:hover {
  color: #ffffff;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}

/* ===== Hero Banner ===== */
.hero-banner {
  position: relative;
  min-height: clamp(320px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-banner__media {
  position: absolute;
  inset: 0;
}

.hero-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner__media--placeholder {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d0d0d 60%);
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 0 3rem;
}

.hero-banner__tag {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-banner__title {
  font-family: var(--font-cond);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
  max-width: 900px;
}

.hero-banner__title a {
  color: #ffffff;
  text-decoration: none;
}

.hero-banner__title a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ===== Spotlight ===== */
.spotlight {
  padding-top: 2rem;
}

.spotlight__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.spotlight__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spotlight-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spotlight-card--main {
  height: 100%;
}

.spotlight-card--side {
  flex-direction: row;
}

.spotlight-card--side .spotlight-card__media {
  width: 140px;
  flex-shrink: 0;
}

.spotlight-card--side .spotlight-card__media img {
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.spotlight-card__media {
  display: block;
  overflow: hidden;
}

.spotlight-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.spotlight-card__media:hover img {
  transform: scale(1.03);
}

.spotlight-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spotlight-card--side .spotlight-card__body {
  padding: 1rem;
}

.spotlight-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.spotlight-card__title {
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

.spotlight-card--side .spotlight-card__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.spotlight-card__title a {
  color: var(--text);
  text-decoration: none;
}

.spotlight-card__title a:hover {
  color: var(--accent);
}

.spotlight-card__excerpt {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 1rem;
  flex: 1;
}

.spotlight-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.spotlight-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.spotlight-card__meta .card__time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.spotlight-card__more {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.spotlight-card__more:hover {
  text-decoration: underline;
}

/* ===== Breaking + Grid ===== */
.breaking-grid__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.breaking-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.breaking-panel__title {
  font-family: var(--font-cond);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.breaking-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.breaking-panel__item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.breaking-panel__item:first-child {
  padding-top: 0;
}

.breaking-panel__time {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.breaking-panel__link {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  text-decoration: none;
}

.breaking-panel__link:hover {
  color: var(--accent);
}

.breaking-panel__more {
  align-self: flex-end;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  gap: 1rem;
}

.article-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card__media {
  display: block;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card__media:hover img {
  transform: scale(1.03);
}

.card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.card__title a {
  color: var(--text);
  text-decoration: none;
}

.card__title a:hover {
  color: var(--accent);
}

.card__excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
}

.card__meta-row {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: auto;
}

.card__time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===== Shorts Carousel ===== */
.shorts-section {
  background: linear-gradient(135deg, #0f1a2e 0%, #0d0d0d 100%);
  padding: 2.5rem 0;
}

.shorts-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.shorts-section__title {
  font-family: var(--font-cond);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #7dff4e;
  margin: 0;
}

.shorts-section__label {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  color: var(--muted);
  margin-top: 0.15rem;
}

.shorts-section__nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.carousel-btn--active,
.carousel-btn:hover {
  background: #ffffff;
  color: #0d0d0d;
}

.shorts-section__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.shorts-section__track::-webkit-scrollbar {
  display: none;
}

.short-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
}

.short-card__media {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--surface-3);
}

.short-card__media img,
.short-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.short-card__placeholder {
  display: block;
  background: var(--surface-3);
}

.short-card__play {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.short-card__title {
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0.65rem 0 0;
}

.short-card__title a {
  color: var(--text);
  text-decoration: none;
}

.short-card__title a:hover {
  color: var(--accent);
}

/* ===== Video Section ===== */
.video-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.video-feature__media {
  position: relative;
  display: block;
  min-height: 220px;
}

.video-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.video-feature__play svg {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 12px;
}

.video-feature__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.video-feature__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.video-feature__title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.video-feature__title a {
  color: var(--text);
  text-decoration: none;
}

.video-feature__title a:hover {
  color: var(--accent);
}

.video-feature__excerpt {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 1rem;
  flex: 1;
}

.video-feature__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.video-feature__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.video-feature__more {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.video-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card__media {
  position: relative;
  display: block;
}

.video-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.video-card__play svg {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  padding: 10px;
}

.video-card__body {
  padding: 1rem;
}

.video-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  display: block;
}

.video-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

.video-card__title a {
  color: var(--text);
  text-decoration: none;
}

.video-card__title a:hover {
  color: var(--accent);
}

.video-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== Most Read ===== */
.most-read__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  counter-reset: none;
}

.most-read__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.most-read__item--top {
  border-left: 4px solid var(--accent);
}

.most-read__rank {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}

.most-read__link {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  text-decoration: none;
}

.most-read__link:hover {
  color: var(--accent);
}

/* ===== Main Content Area (inner pages) ===== */
.site-main {
  min-height: 50vh;
}

.content-area {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.content-area--single {
  max-width: var(--max);
  padding-top: 1.5rem;
}

.content-area--archive {
  padding-top: 1.5rem;
}

.section-heading {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  text-transform: uppercase;
}

.post-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.post-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Single Post ===== */
.entry--single {
  max-width: 100%;
  margin: 0 auto;
}

.entry__featured {
  position: relative;
  margin: 0 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.entry__featured img {
  width: 100%;
  height: auto;
  display: block;
}

.entry__credit {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin: 0;
}

.entry__meta-bar {
	display: flex;
	align-items: center;
	padding: 1rem 0;
	font-size: 0.8125rem;
	color: var(--muted);
	border-bottom: 1px solid var(--border);
}

.entry__datetime {
	color: var(--muted);
}

.entry__tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
}

.entry-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.entry-tag--primary {
  background: #ffffff;
  color: #111111;
}

.entry-tag--primary:hover {
  opacity: 0.9;
  color: #111111;
}

.entry-tag--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.entry-tag--outline:hover {
  border-color: #ffffff;
  color: #ffffff;
}

[data-theme="light"] .entry-tag--outline {
  color: var(--text);
  border-color: var(--border);
}

[data-theme="light"] .entry-tag--outline:hover {
  border-color: var(--text);
  color: var(--text);
}

.entry-tag__star {
  flex-shrink: 0;
}

.entry__header {
  margin: 0 0 1.75rem;
  padding-top: 0.25rem;
}

.entry__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.entry__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .entry__content {
  color: var(--text);
}

.entry__content > *:first-child {
  margin-top: 0;
}

.entry__content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.entry__content h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.entry__content p {
  margin: 1.25rem 0;
}

.entry__content a {
  color: var(--accent);
  text-decoration: underline;
}

.entry__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.entry__share {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.entry__share-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.entry__share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
}

.entry__share a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== Archive / Category ===== */
.archive-hero {
  margin-bottom: 2rem;
}

.archive-hero__title {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.archive-hero__desc {
  color: var(--muted);
  margin: 0;
  font-size: 0.9375rem;
}

.archive-spotlight {
  margin-bottom: 2.5rem;
}

.archive-spotlight__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.archive-spotlight__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spotlight-card--archive {
  flex-direction: column;
}

.spotlight-card--archive .spotlight-card__media {
  width: 100%;
}

.spotlight-card--archive .spotlight-card__media img {
  aspect-ratio: 16 / 9;
  min-height: auto;
  height: auto;
}

.spotlight-card__bookmark {
  color: var(--muted);
  display: flex;
  align-items: center;
}

.archive-more {
  margin-bottom: 2rem;
}

.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-posts h2 {
  font-family: var(--font-cond);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs__sep {
  margin: 0 0.35rem;
}

/* ===== Page Header ===== */
.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  font-family: var(--font-cond);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.page-header__lead {
  color: var(--muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* ===== Search ===== */
.search-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.search-form__input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-size: 0.9375rem;
  border-radius: var(--radius);
}

.search-form__input:focus {
  border-color: var(--accent);
  outline: none;
}

.search-form__submit {
  padding: 0.65rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.search-form__submit:hover {
  background: var(--accent-hover);
}

/* ===== Footer ===== */
.site-footer {
  background: #000000;
  color: #cccccc;
  margin-top: 0;
  padding: 3rem 0 2rem;
}

.site-footer__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  text-transform: lowercase;
  margin-bottom: 1.5rem;
}

.site-footer__logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.site-footer__social {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.site-footer__social a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social a:hover {
  color: var(--accent);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer-nav__list--inline li:not(:last-child)::after {
  content: "|";
  margin: 0 0.65rem;
  color: #555555;
}

.footer-nav__list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.8125rem;
}

.footer-nav__list a:hover {
  color: #ffffff;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--surface-3);
  border: 1px solid #444444;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
}

.theme-toggle__icon {
  display: flex;
  align-items: center;
  opacity: 0.4;
}

[data-theme="dark"] .theme-toggle__icon--moon,
[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 1;
}

.site-footer__region {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: #888888;
  margin: 0 0 1.5rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: #666666;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.site-footer__copy a {
  color: #888888;
}

.site-footer__copy a:hover {
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .spotlight__grid,
  .archive-spotlight__grid {
    grid-template-columns: 1fr;
  }

  .spotlight__side,
  .archive-spotlight__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .breaking-grid__layout {
    grid-template-columns: 1fr;
  }

  .article-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-feature {
    grid-template-columns: 1fr;
  }

  .post-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav--desktop {
    display: none;
  }

  .spotlight__side,
  .archive-spotlight__side {
    grid-template-columns: 1fr;
  }

  .spotlight-card--side,
  .spotlight-card--archive {
    flex-direction: column;
  }

  .spotlight-card--side .spotlight-card__media,
  .spotlight-card--archive .spotlight-card__media {
    width: 100%;
  }

  .article-grid--six,
  .video-grid,
  .most-read__grid,
  .post-grid,
  .post-grid--compact {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 280px;
  }

  .hero-banner__content {
    padding: 1.5rem 0 2rem;
  }

  .footer-nav__list--inline li:not(:last-child)::after {
    display: none;
  }

  .footer-nav__list--inline {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-footer__links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-logo {
    font-size: 1.125rem;
    max-width: min(140px, 38vw);
  }

  .site-header__inner img {
    height: 28px;
    max-width: min(140px, 38vw);
  }

  .home-section {
    padding: 1.75rem 0;
  }
}
