:root {
  --black: #050505;
  --black-2: #101010;
  --black-3: #181818;
  --white: #ffffff;
  --paper: #f6f2e4;
  --muted: #cfc7a7;
  --ink-muted: #625d4e;
  --yellow: #f1c50e;
  --yellow-2: #ffd84f;
  --red: #d83b2d;
  --blue: #2868b8;
  --orange: #b85b18;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 5, 5, 0.12);
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 50;
  padding: 8px 10px;
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-140%);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-bar {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  color: var(--yellow);
  font-weight: 950;
}

.brand-logo {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.main-nav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 8px 10px;
  color: #f0ead2;
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav .sub-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 210px;
  display: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--black-2);
  box-shadow: var(--shadow);
}

.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
  display: grid;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(241, 197, 14, 0.14);
  color: var(--yellow);
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.74)),
    repeating-linear-gradient(135deg, rgba(241, 197, 14, 0.11) 0 1px, transparent 1px 18px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--yellow);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
  padding-block: 58px 70px;
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(241, 197, 14, 0.42);
  border-radius: 6px;
  padding: 4px 9px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.label-dark {
  border-color: var(--line-light);
  color: var(--black);
}

.hero h1,
.archive-hero h1,
.article-hero h1 {
  max-width: 840px;
  margin: 16px 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.hero-copy p,
.archive-hero p,
.article-hero p {
  max-width: 720px;
  color: #f1ead4;
  font-size: 1.14rem;
}

.hero-search {
  max-width: 760px;
  margin-top: 30px;
}

.hero-search label,
.archive-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-search div,
.archive-search {
  display: flex;
  gap: 10px;
}

input[type="search"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
}

input[type="search"]::placeholder {
  color: #b9b092;
}

button,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

button,
.button-yellow {
  background: var(--yellow);
  color: var(--black);
}

button:hover,
.button-yellow:hover {
  background: var(--yellow-2);
}

.button-ghost,
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
}

.button-dark {
  background: var(--black);
  color: var(--yellow);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.slider-shell {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px;
  background: linear-gradient(180deg, #171717, #080808);
  box-shadow: var(--shadow);
}

.slider-top {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.slider-dots button {
  width: 28px;
  min-height: 8px;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.26);
}

.slider-dots button.is-active {
  background: var(--yellow);
}

.slide {
  display: none;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d0d0d;
}

.slide.is-active {
  display: block;
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--black-2);
}

.slide-content {
  padding: 24px;
}

.slide-content h2 {
  margin: 12px 0 8px;
  font-size: 2rem;
  line-height: 1.08;
}

.slide-content p {
  color: #e5ddc1;
}

.slide-content a,
.text-link {
  color: var(--yellow);
  font-weight: 950;
}

.verdict {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 5px;
  padding: 3px 8px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.verdict-false {
  background: var(--red);
}

.verdict-alert {
  background: var(--blue);
}

.verdict-risk {
  background: var(--orange);
}

.section {
  padding-block: 58px;
}

.section-black {
  background: var(--black);
}

.section-light {
  background: var(--paper);
  color: var(--black);
}

.section-yellow {
  background: var(--yellow);
  color: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.stats-grid div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line-dark);
  padding: 22px;
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid span {
  color: var(--yellow);
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1;
}

.stats-grid p {
  margin: 0;
  color: #f0ead2;
  font-weight: 800;
}

.section-heading,
.contact-band,
.podcast-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.focus-copy h2,
.contact-band h2,
.podcast-strip h2,
.article-content h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.04;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.1);
}

.story-card a {
  display: grid;
  height: 100%;
}

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

.story-card div {
  padding: 18px;
}

.tag {
  color: #6a5600;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 8px 0;
  font-size: 1.32rem;
  line-height: 1.14;
}

.story-card p,
.focus-copy p,
.podcast-strip p,
.archive-card p,
.article-content p,
.article-content li {
  color: var(--ink-muted);
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.topic-list a {
  min-height: 104px;
  display: grid;
  gap: 4px;
  align-content: center;
  border: 2px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.topic-list strong {
  font-size: 1.18rem;
}

.topic-list span {
  color: #3d350c;
  font-weight: 700;
}

.contact-band {
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--black-2);
}

.contact-band p {
  max-width: 700px;
  color: #e5ddc1;
}

.podcast-strip {
  align-items: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
}

.site-footer {
  padding-block: 36px;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a {
  color: var(--yellow);
  font-weight: 850;
}

.archive-hero,
.article-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78)),
    repeating-linear-gradient(135deg, rgba(241, 197, 14, 0.1) 0 1px, transparent 1px 18px);
}

.archive-hero-grid,
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 40px;
  align-items: center;
  padding-block: 54px;
}

.archive-search {
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.filter-band {
  position: sticky;
  top: 78px;
  z-index: 10;
  border-block: 1px solid var(--line-dark);
  background: var(--black-2);
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 12px;
}

.filter-row a {
  flex: 0 0 auto;
  border: 1px solid rgba(241, 197, 14, 0.3);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--yellow);
  font-weight: 900;
}

.archive-list {
  display: grid;
  gap: 14px;
}

.empty-state,
.navigation.pagination {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 22px;
  background: white;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.navigation.pagination a,
.navigation.pagination span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 900;
}

.navigation.pagination .current {
  background: var(--black);
  color: var(--yellow);
}

.archive-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 28px rgba(5, 5, 5, 0.08);
}

.archive-card a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 12px;
}

.archive-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.archive-card h2 {
  margin: 10px 0 6px;
  font-size: 1.45rem;
  line-height: 1.14;
}

.archive-card small {
  color: #7b744f;
  font-weight: 850;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 950;
}

.article-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 850;
}

.article-hero-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 340px);
  gap: 48px;
  align-items: start;
}

.article-content {
  font-size: 1.07rem;
}

.article-content h2 {
  margin-top: 34px;
}

.verdict-box {
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px;
  background: white;
  box-shadow: 0 14px 28px rgba(5, 5, 5, 0.08);
}

.verdict-box h2 {
  margin: 0 0 8px;
  font-size: 1.42rem;
}

.verdict-box p {
  margin-bottom: 0;
}

.article-aside {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 14px;
}

.aside-panel {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
}

.aside-panel-dark {
  border-color: transparent;
  background: var(--black);
  color: white;
}

.aside-panel h2 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.aside-panel p {
  color: var(--muted);
}

.aside-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.aside-panel dt {
  color: #82784f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.aside-panel dd {
  margin: 2px 0 0;
  font-weight: 900;
}

@media (max-width: 940px) {
  .admin-bar .site-header {
    top: 0;
  }

  .header-bar {
    grid-template-columns: 1fr auto;
    padding-block: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .main-nav ul {
    justify-content: flex-start;
  }

  .hero-grid,
  .archive-hero-grid,
  .article-hero-grid,
  .focus-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .slider-shell {
    min-height: auto;
  }

  .cards-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--content), calc(100% - 28px));
  }

  .header-bar {
    grid-template-columns: 1fr;
  }

  .header-cta {
    justify-self: start;
  }

  .hero-grid,
  .archive-hero-grid,
  .article-hero-grid {
    padding-block: 38px 48px;
  }

  .hero h1,
  .archive-hero h1,
  .article-hero h1 {
    font-size: 2.65rem;
  }

  .hero-search div,
  .section-heading,
  .contact-band,
  .podcast-strip,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  button,
  .button {
    width: 100%;
  }

  .cards-grid,
  .stats-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .archive-card a {
    grid-template-columns: 1fr;
  }

  .archive-card img {
    aspect-ratio: 16 / 10;
  }
}
