:root {
  --ink: #101b28;
  --ink-soft: #233342;
  --navy: #101b28;
  --navy-2: #182737;
  --paper: #eceee9;
  --surface: #f8f9f6;
  --surface-2: #e2e6e0;
  --line: #cbd1cc;
  --muted: #65716f;
  --muted-light: #aab5b3;
  --lime: #c7df59;
  --lime-dark: #667c24;
  --white: #ffffff;
  --danger: #a03d2b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow-sm: 0 8px 24px rgba(16, 27, 40, .08);
  --shadow-lg: 0 24px 60px rgba(16, 27, 40, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 5.4rem);
  line-height: .98;
}

h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.65rem);
  line-height: 1;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.12;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.utility {
  background: #0c1621;
  color: #b6c0c3;
  font-size: .61rem;
  letter-spacing: .12em;
}

.utility-inner {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-claim {
  opacity: .72;
}

.utility-right {
  color: var(--lime);
  font-weight: 700;
}

.utility-right b {
  margin-left: 8px;
  font-size: .9rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 246, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 1.28rem/1 var(--serif);
  letter-spacing: -.055em;
}

.logo-m {
  width: 36px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--lime);
  font: 800 1.05rem/1 var(--sans);
  transform: skew(-8deg);
  box-shadow: 4px 4px 0 var(--lime);
}

.logo-y {
  color: var(--lime-dark);
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.25vw, 31px);
  margin-left: auto;
  text-transform: uppercase;
  color: #52606a;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.nav a {
  position: relative;
  padding: 31px 0 28px;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover,
.nav .active {
  color: var(--ink);
}

.nav a:hover::after,
.nav .active::after {
  transform: scaleX(1);
}

.search-button {
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 9px 0 9px 14px;
  border: 0;
  border-left: 1px solid var(--line);
  background: none;
  color: var(--ink);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.search-panel {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

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

.search-form {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 32px;
  padding-block: 25px;
}

.search-form label {
  font: 1.2rem/1.1 var(--serif);
}

.search-form > div {
  display: flex;
  border-bottom: 1px solid #66727c;
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  outline: 0;
  font-size: 1rem;
}

.search-form input::placeholder {
  color: #9ca8ad;
}

.search-form button {
  border: 0;
  background: var(--lime);
  color: var(--navy);
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.category-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.category-inner {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 25px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  color: #5d696f;
  font-size: .68rem;
}

.category-inner::-webkit-scrollbar {
  display: none;
}

.category-title {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .14em;
}

.category-inner a {
  transition: color .2s ease;
}

.category-inner a:hover {
  color: var(--lime-dark);
}

.subscribe-link {
  margin-left: auto;
  color: var(--lime-dark);
  font-weight: 900;
}

.results-context {
  margin-top: 30px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface);
  border-left: 4px solid var(--lime-dark);
  color: var(--muted);
}

.results-context strong {
  color: var(--ink);
}

.results-context a {
  color: var(--lime-dark);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .72fr);
  gap: 28px;
  padding: 38px 0 34px;
}

.lead-main {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
}

.lead-link {
  display: block;
}

.media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 26%, rgba(199, 223, 89, .55), transparent 22%),
    linear-gradient(145deg, #536a68 0%, #9cab8d 46%, #2d4347 47%, #101b28 100%);
}

.media::before {
  content: "M";
  position: absolute;
  right: 1rem;
  bottom: -5.2rem;
  z-index: 0;
  color: rgba(255, 255, 255, .16);
  font: 900 18rem/1 var(--sans);
  letter-spacing: -.18em;
  transform: skew(-9deg);
}

.media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(9, 18, 27, .62));
  pointer-events: none;
}

.media.has-image {
  z-index: 0;
  background-position: center;
  background-size: cover;
  transition: background-size .4s ease;
}

.lead-link:hover .media.has-image,
.story-card:hover .media.has-image {
  background-size: 104%;
}

.lead-media {
  min-height: 385px;
}

.media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 9px;
  background: var(--lime);
  color: var(--navy);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.photo-credit {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: #e3e8e5;
  font-size: .54rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lead-copy {
  padding: 25px 28px 27px;
}

.tag,
.eyebrow,
.section-kicker,
.meta {
  color: var(--lime-dark);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.35rem, 3.65vw, 4.25rem);
}

.lead-copy > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
}

.byline {
  margin-top: 21px;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .59rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.byline span {
  color: var(--lime-dark);
}

.latest {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  background: var(--navy);
  color: #eef2ef;
}

.aside-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #435363;
}

.aside-title h2 {
  font-size: 1.65rem;
}

.aside-title > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  font-size: .54rem;
  letter-spacing: .12em;
}

.aside-title i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 223, 89, .13);
}

#latest-list {
  flex: 1;
}

.latest-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 11px;
  padding: 17px 0;
  border-bottom: 1px solid #435363;
}

.latest-item time {
  color: var(--lime);
  font-size: .66rem;
  letter-spacing: .03em;
}

.latest-item b {
  display: block;
  font: 400 1.04rem/1.14 var(--serif);
  letter-spacing: -.025em;
  transition: color .2s ease;
}

.latest-item a:hover b {
  color: var(--lime);
}

.latest-item small {
  display: block;
  margin-top: 7px;
  color: #99a7ae;
  font-size: .61rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.all-news {
  display: block;
  padding-top: 18px;
  color: var(--lime);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.all-news span {
  margin-left: 5px;
  font-size: .9rem;
}

.briefing-strip {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.briefing-strip > * {
  min-height: 80px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.briefing-strip > *:last-child {
  border-right: 0;
}

.briefing-label {
  font: italic 1.15rem/1.15 var(--serif);
}

.briefing-label span {
  display: block;
  margin-bottom: 4px;
  color: var(--lime-dark);
  font: 900 .58rem/1 var(--sans);
  letter-spacing: .16em;
}

.briefing-strip a {
  transition: background .2s ease;
}

.briefing-strip a:hover {
  background: var(--surface);
}

.briefing-strip b {
  margin-bottom: 3px;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.briefing-strip a span {
  color: var(--muted);
  font: 1rem/1.1 var(--serif);
}

.ad-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid #c5cbc5;
  background:
    linear-gradient(120deg, transparent 74%, rgba(16, 27, 40, .035) 74%),
    #e6e9e4;
}

.ad-label {
  display: block;
  color: #748078;
  font: 800 .52rem/1 var(--sans);
  letter-spacing: .18em;
}

.ad-slot-home {
  margin-top: 28px;
  padding: 12px 18px 16px;
}

.ad-slot-home > a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ad-slot-home > a > span {
  display: grid;
  gap: 5px;
}

.ad-slot-home b {
  font: 1.35rem/1.1 var(--serif);
}

.ad-slot-home small {
  color: var(--muted);
  font-size: .66rem;
}

.ad-slot-home strong {
  flex: 0 0 auto;
  color: var(--lime-dark);
  font-size: .61rem;
  letter-spacing: .1em;
}

.section-block {
  padding: 78px 0 82px;
}

.section-top {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-top .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.section-top > a {
  flex: 0 0 auto;
  color: var(--lime-dark);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-top > a span {
  margin-left: 5px;
  font-size: .9rem;
}

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

.story-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.story-media {
  min-height: 205px;
}

.story-card-copy {
  padding: 18px 19px 20px;
}

.story-card h3 {
  margin: 10px 0 11px;
  transition: color .2s ease;
}

.story-card:hover h3 {
  color: var(--lime-dark);
}

.story-card p {
  color: var(--muted);
  font-size: .84rem;
}

.story-footer {
  margin-top: 16px;
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: #7d8887;
  font-size: .61rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 50px 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.empty-state p {
  color: var(--muted);
}

.empty-state a {
  display: inline-block;
  margin-top: 20px;
  color: var(--lime-dark);
  font-weight: 800;
}

.split-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 80px;
  border-top: 1px solid var(--line);
}

.section-kicker {
  margin-bottom: 17px;
}

.split-heading h2 {
  max-width: 480px;
}

.split-heading > p {
  max-width: 440px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 1rem;
}

.guide-row {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: start;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.guide-row:last-child {
  border-bottom: 1px solid var(--line);
}

.list-number {
  color: var(--lime-dark);
  font: 1.3rem/1 var(--serif);
}

.guide-row h3 {
  margin: 9px 0 7px;
  font-size: 1.38rem;
  transition: color .2s ease;
}

.guide-row:hover h3 {
  color: var(--lime-dark);
}

.guide-row p {
  color: var(--muted);
  font-size: .83rem;
}

.arrow {
  color: var(--lime-dark);
  font-size: 1.45rem;
  text-align: right;
  transition: transform .2s ease;
}

.guide-row:hover .arrow {
  transform: translate(3px, -3px);
}

.dark-band {
  margin-right: calc((48px - 100vw) / 2);
  margin-left: calc((48px - 100vw) / 2);
  padding: 73px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(115deg, transparent 65%, rgba(199, 223, 89, .05) 65%),
    var(--navy);
  color: #eef2ef;
}

.section-top-dark .eyebrow,
.section-top-dark > a {
  color: var(--lime);
}

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

.dark-grid article {
  min-height: 225px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #4a5a68;
}

.dark-number {
  color: var(--lime);
  font-size: .59rem;
  letter-spacing: .13em;
}

.dark-grid h3 {
  margin: 16px 0 28px;
  font-size: 1.75rem;
}

.dark-grid p {
  margin-top: auto;
  color: #a8b3b6;
  font-size: .61rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.opinion-section {
  padding: 100px 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.opinion-quote {
  position: relative;
  padding: 4px 0 0 30px;
  border-left: 3px solid var(--lime);
}

.opinion-quote > span {
  display: block;
  height: 34px;
  color: var(--lime-dark);
  font: 4.5rem/.7 var(--serif);
}

.opinion-quote p {
  max-width: 560px;
  font: 1.75rem/1.2 var(--serif);
  letter-spacing: -.025em;
}

.opinion-quote small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .13em;
}

.newsletter {
  margin-bottom: 85px;
  padding: 48px 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background:
    linear-gradient(120deg, transparent 72%, rgba(16, 27, 40, .08) 72%),
    var(--lime);
  color: var(--navy);
}

.newsletter .section-kicker {
  color: #52691d;
}

.newsletter h2 {
  max-width: 470px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.newsletter p {
  max-width: 430px;
  margin-top: 15px;
  color: #4f632d;
}

.newsletter label {
  display: block;
  margin-bottom: 14px;
  font: 1.25rem/1.1 var(--serif);
}

.newsletter form > div {
  display: flex;
  border-bottom: 1px solid #71843a;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  outline: 0;
}

.newsletter input::placeholder {
  color: #657b37;
}

.newsletter button {
  padding: 12px 15px;
  border: 0;
  background: var(--navy);
  color: var(--lime);
  font-weight: 900;
  cursor: pointer;
}

.newsletter small {
  display: block;
  margin-top: 10px;
  color: #52682e;
  font-size: .66rem;
}

.newsletter small.success {
  color: #263b15;
  font-weight: 800;
}

.newsletter .consent-check {
  margin: 13px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #405424;
  font: 600 .66rem/1.45 var(--sans);
}

.newsletter .consent-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.newsletter .consent-check a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-main {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: .63rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--lime-dark);
}

.footer-motto {
  color: var(--muted);
  font: italic 1rem/1 var(--serif);
}

.footer-bottom {
  min-height: 53px;
  padding: 15px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .59rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 20px;
}

.loading {
  padding: 28px;
  color: var(--muted);
}

.loading-dark {
  color: #9eaaaf;
}

/* Article */
.article-header-simple {
  position: relative;
}

.back-link {
  color: var(--lime-dark);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-page {
  max-width: 930px;
  padding: 66px 0 110px;
}

.article-header h1 {
  max-width: 900px;
  margin: 14px 0 17px;
  font-size: clamp(2.8rem, 5.25vw, 5.6rem);
}

.article-lead {
  max-width: 760px;
  color: var(--muted);
  font: 1.25rem/1.45 var(--sans);
}

.article-meta {
  margin-top: 25px;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .63rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.article-visual {
  min-height: 450px;
  margin: 30px 0 38px;
}

.article-content-grid {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 38px;
}

.article-share {
  position: sticky;
  top: 105px;
  align-self: start;
  padding-top: 6px;
}

.article-share > span {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.share-button {
  width: 100%;
  padding: 9px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: .66rem;
  font-weight: 800;
  cursor: pointer;
}

.share-button:hover {
  background: var(--surface);
}

.article-body {
  max-width: 710px;
  font: 1.14rem/1.82 var(--serif);
}

.article-body p {
  margin: 0 0 24px;
}

.article-body p:first-child::first-letter {
  float: left;
  margin: 7px 8px 0 0;
  color: var(--lime-dark);
  font: 4.8rem/.72 var(--serif);
}

.ad-slot-article {
  margin: 38px 0;
  padding: 12px 16px 16px;
  font-family: var(--sans);
}

.ad-slot-article > div {
  min-height: 92px;
  display: grid;
  place-content: center;
  text-align: center;
}

.ad-slot-article b {
  display: block;
  font: 1.08rem/1.2 var(--serif);
}

.ad-slot-article small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .61rem;
}

.article-source {
  max-width: 710px;
  margin-top: 36px;
  padding: 17px 19px;
  background: #e4e9df;
  border-left: 4px solid var(--lime-dark);
  font-size: .83rem;
}

.article-source a {
  color: var(--lime-dark);
  font-weight: 800;
}

.source-note {
  margin-top: 9px;
  color: var(--muted);
  font-size: .7rem;
}

.related-section {
  margin-top: 75px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.related-section h2 {
  margin-bottom: 25px;
  font-size: 2.4rem;
}

/* Admin */
.admin-body {
  background: #dde2de;
}

.admin-layout {
  padding: 70px 0 100px;
}

.login-card,
.editor-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.login-card {
  max-width: 500px;
  margin: auto;
  padding: 38px;
}

.login-card h1,
.admin-heading h1 {
  font-size: 3.45rem;
}

.login-card p {
  color: var(--muted);
}

.login-card label,
#news-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 17px 0;
  font-size: .73rem;
  font-weight: 800;
}

.login-card input,
#news-form input,
#news-form textarea,
#news-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  outline-color: var(--lime-dark);
}

#news-form textarea {
  resize: vertical;
}

#news-form label > small {
  color: var(--muted);
  font-weight: 400;
}

.admin-button {
  padding: 13px 18px;
  border: 0;
  background: var(--navy);
  color: var(--lime);
  font-weight: 900;
  cursor: pointer;
}

.form-message {
  margin-top: 12px;
  color: var(--danger);
  font-size: .82rem;
}

.hidden {
  display: none !important;
}

.admin-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.plain-button {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.editor-panel {
  max-width: 940px;
  margin: auto;
  padding: 38px;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-list {
  margin-top: 42px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.admin-list h2 {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.admin-item {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.admin-item b {
  font: 400 1.15rem/1.2 var(--serif);
}

.admin-item small {
  color: var(--muted);
  font-size: .68rem;
}

.status-badge {
  display: inline-block;
  margin-right: 7px;
  padding: 2px 6px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-badge.published {
  background: var(--lime);
}

/* Legal */
.legal-page {
  min-height: 100vh;
}

.legal {
  max-width: 780px;
  padding: 70px 0 100px;
}

.legal h1 {
  margin: 38px 0 25px;
}

.legal h2 {
  margin: 38px 0 13px;
  font-size: 2rem;
}

.legal p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.legal a {
  color: var(--lime-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal .legal-intro {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font: 1.25rem/1.55 var(--serif);
}

.legal-notice {
  margin: 28px 0;
  padding: 20px 22px 4px;
  border-left: 4px solid var(--lime-dark);
  background: var(--surface);
}

.legal-notice b {
  display: block;
  margin-bottom: 7px;
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-notice-ok {
  border-left-color: #5c812f;
}

.legal-notice-pending {
  border-left-color: #b17a2d;
}

.legal ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal li + li {
  margin-top: 9px;
}

.legal .legal-reference {
  margin-top: 45px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: .75rem;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: .78rem;
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--navy);
  color: var(--white);
  font-size: .6rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.commercial-page {
  max-width: 1080px;
}

.commercial-grid {
  margin: 45px 0 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.commercial-grid article {
  min-height: 250px;
  padding: 26px;
  background: var(--surface);
}

.commercial-grid article > span {
  color: var(--lime-dark);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.commercial-grid h2 {
  margin: 70px 0 12px;
}

.narrow-legal {
  max-width: 690px;
}

.unsubscribe-form {
  margin-top: 38px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.unsubscribe-form label {
  display: block;
  margin-bottom: 11px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.unsubscribe-form > div {
  display: flex;
}

.unsubscribe-form input {
  flex: 1;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--white);
}

.unsubscribe-form button {
  padding: 13px 17px;
  border: 0;
  background: var(--navy);
  color: var(--lime);
  font-weight: 800;
  cursor: pointer;
}

.unsubscribe-form small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.unsubscribe-form small.success {
  color: #41651f;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    gap: 16px;
  }

  .nav a:nth-last-child(-n+2) {
    display: none;
  }

  .lead-section {
    grid-template-columns: minmax(0, 1.3fr) minmax(290px, .8fr);
  }

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

  .briefing-label {
    grid-column: 1 / -1;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-section,
  .opinion-section {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .wrap {
    width: calc(100% - 30px);
  }

  .utility {
    display: none;
  }

  .header-inner {
    height: 67px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo-m {
    width: 32px;
    height: 30px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: 67px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 49;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 22px 24px;
    background: var(--surface);
    transform: translateX(105%);
    transition: transform .25s ease;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a,
  .nav a:nth-last-child(-n+2) {
    width: 100%;
    display: block;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font: 1.65rem/1 var(--serif);
    text-transform: none;
    letter-spacing: -.03em;
  }

  .nav a::after {
    display: none;
  }

  .search-button {
    min-width: auto;
    padding-left: 11px;
  }

  .search-button span {
    display: none;
  }

  .search-form {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-block: 20px;
  }

  .search-form label {
    font-size: 1rem;
  }

  .category-inner {
    gap: 19px;
  }

  .category-title {
    display: none;
  }

  .subscribe-link {
    margin-left: 0;
  }

  .results-context {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .lead-section {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .lead-media {
    min-height: 245px;
  }

  .lead-copy {
    padding: 21px;
  }

  .lead-copy h1 {
    font-size: 2.55rem;
  }

  .latest {
    padding: 21px 18px;
  }

  .briefing-strip {
    grid-template-columns: 1fr;
  }

  .briefing-label {
    grid-column: auto;
  }

  .briefing-strip > * {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .briefing-strip > *:last-child {
    border-bottom: 0;
  }

  .ad-slot-home > a {
    min-height: 105px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .section-block {
    padding: 60px 0;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .three-columns,
  .dark-grid {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 220px;
  }

  .split-section,
  .opinion-section,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 36px;
    padding: 60px 0;
  }

  .dark-band {
    margin-right: -15px;
    margin-left: -15px;
    padding: 56px 15px;
  }

  .dark-grid {
    gap: 25px;
  }

  .dark-grid article {
    min-height: 180px;
  }

  .opinion-section {
    gap: 38px;
    padding: 70px 0;
  }

  .opinion-quote p {
    font-size: 1.45rem;
  }

  .newsletter {
    gap: 34px;
    margin-bottom: 55px;
    padding: 31px 23px;
  }

  .newsletter form > div {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    border-bottom: 0;
  }

  .newsletter input {
    padding: 12px;
    border-bottom: 1px solid #71843a;
  }

  .newsletter .consent-check input {
    padding: 0;
    border: 0;
  }

  .footer-main,
  .footer-bottom {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav,
  .footer-bottom > span:last-child {
    flex-wrap: wrap;
  }

  .article-page {
    padding-top: 43px;
  }

  .article-header h1 {
    font-size: 3rem;
  }

  .article-lead {
    font-size: 1.08rem;
  }

  .article-visual {
    min-height: 250px;
  }

  .article-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-share {
    position: static;
  }

  .share-button {
    width: auto;
  }

  .form-two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .login-card,
  .editor-panel {
    padding: 23px;
  }

  .admin-heading {
    flex-direction: column;
  }

  .admin-heading h1 {
    font-size: 2.7rem;
  }

  .commercial-grid {
    grid-template-columns: 1fr;
  }

  .commercial-grid article {
    min-height: 190px;
  }

  .commercial-grid h2 {
    margin-top: 38px;
  }

  .unsubscribe-form > div {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Título principal semántico de la portada */
.seo-site-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
