@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-sans-italic-variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}


    :root {
      --ice: #f5f8fa;
      --ice-2: #edf3f6;
      --mist: #dfe8ed;
      --steel: #9aaab4;
      --ink: #172229;
      --muted: #667680;
      --line: #cdd8de;
      --blue: #6f8fa1;
      --blue-dark: #314955;
      --white: #ffffff;
      --max: 1180px;
      --radius: 18px;
      --shadow: 0 18px 50px rgba(43, 63, 74, .08);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      overflow-x: clip;
      color: var(--ink);
      background: var(--ice);
      font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
      font-weight: 400;
      letter-spacing: -.008em;
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

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

    a {
      color: inherit;
    }

    .wrap {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .top-banner {
      position: relative;
      height: clamp(110px, 14vw, 180px);
      overflow: hidden;
      background: var(--mist);
      border-bottom: 1px solid var(--line);
    }

    .top-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 48%;
      filter: grayscale(48%) brightness(1.08) contrast(.9) saturate(.55);
    }

    .top-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(245,248,250,.02), rgba(245,248,250,.38)),
        linear-gradient(90deg, rgba(209,224,232,.28), transparent 36%, rgba(255,255,255,.22));
      pointer-events: none;
    }

    body > header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(245,248,250,.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }

    nav {
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      width: 210px;
      gap: 4px;
      text-decoration: none;
      color: var(--blue-dark);
      line-height: 1;
      text-transform: none;
    }

    .brand-main {
      display: block;
      font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
      font-size: 1.42rem;
      font-weight: 650;
      letter-spacing: .16em;
      color: var(--blue-dark);
      white-space: nowrap;
    }

    .brand-name {
      display: block;
      font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
      font-size: .82rem;
      font-weight: 400;
      letter-spacing: .055em;
      color: var(--steel);
      text-transform: none;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

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

    section {
      padding: 92px 0;
      border-bottom: 1px solid var(--line);
    }

    .hero {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      align-items: center;
      gap: 72px;
      min-height: 690px;
    }

    .eyebrow {
      margin-bottom: 22px;
      color: var(--blue);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(3rem, 6.7vw, 6.8rem);
      line-height: .95;
      letter-spacing: -.055em;
      font-weight: 500;
    }

    h1 strong {
      display: block;
      color: var(--blue-dark);
      font-weight: 700;
    }

    .lead {
      max-width: 680px;
      margin: 30px 0 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.5vw, 1.2rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
      text-decoration: none;
      font-size: .84rem;
      font-weight: 600;
      letter-spacing: .04em;
      transition: all .2s ease;
    }

    .button.primary {
      color: var(--white);
      background: var(--blue-dark);
      border-color: var(--blue-dark);
    }

    .button.secondary {
      background: rgba(255,255,255,.38);
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(43,63,74,.08);
    }

    .portrait {
      position: relative;
      padding: 18px;
      background: rgba(255,255,255,.45);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .portrait::before {
      content: "";
      position: absolute;
      inset: 12px -12px -12px 12px;
      z-index: -1;
      border-radius: 28px;
      background: rgba(223,232,237,.75);
    }

    .portrait img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 30%;
      border-radius: 18px;
      filter: grayscale(82%) contrast(.98) brightness(1.05);
    }

    .manifesto {
      background: var(--ice-2);
    }

    .manifesto-grid {
      display: grid;
      grid-template-columns: .65fr 1.35fr;
      gap: 70px;
      align-items: start;
    }

    .section-number {
      color: var(--steel);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .manifesto-text {
      margin: 0;
      max-width: 900px;
      font-size: clamp(1.8rem, 3.5vw, 3.7rem);
      line-height: 1.18;
      letter-spacing: -.03em;
      font-weight: 400;
    }

    .manifesto-text strong {
      color: var(--blue-dark);
      font-weight: 700;
    }

    h2 {
      margin: 0;
      font-size: clamp(2.2rem, 4.8vw, 4.5rem);
      line-height: 1;
      letter-spacing: -.045em;
      font-weight: 500;
    }

    .section-intro {
      max-width: 760px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 1.04rem;
    }

    .areas {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 44px;
    }

    .area {
      padding: 30px;
      min-height: 220px;
      background: rgba(255,255,255,.55);
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .area-index {
      display: inline-block;
      margin-bottom: 44px;
      color: var(--steel);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .12em;
    }

    .area h3 {
      margin: 0 0 10px;
      font-size: 1.35rem;
      font-weight: 600;
    }

    .area p {
      margin: 0;
      color: var(--muted);
      font-size: .96rem;
    }

    .questions {
      margin-top: 42px;
      border-top: 1px solid var(--line);
    }

    .question {
      display: grid;
      grid-template-columns: 72px 1fr;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
      font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    }

    .question span {
      color: var(--steel);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .1em;
    }

    .journal {
      background: var(--ice-2);
    }

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

    .card {
      overflow: hidden;
      background: rgba(255,255,255,.58);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(43,63,74,.04);
    }

    .card-visual {
      height: 150px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.6), rgba(169,191,202,.72)),
        url("banner.png") center/cover;
      filter: grayscale(56%) saturate(.55);
      border-bottom: 1px solid var(--line);
    }

    .card:nth-child(2) .card-visual {
      background:
        linear-gradient(135deg, rgba(229,237,241,.86), rgba(112,142,158,.56)),
        url("banner.png") center 46%/cover;
    }

    .card:nth-child(3) .card-visual {
      background:
        linear-gradient(135deg, rgba(243,247,249,.8), rgba(76,102,116,.5)),
        url("banner.png") center 54%/cover;
    }

    .card-body {
      padding: 24px;
    }

    .meta {
      color: var(--blue);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .card h3 {
      margin: 12px 0;
      font-size: 1.3rem;
      line-height: 1.15;
      font-weight: 600;
    }

    .card p {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: .95rem;
    }

    .text-link {
      text-decoration: none;
      color: var(--blue-dark);
      font-size: .82rem;
      font-weight: 700;
    }

    .contact {
      padding: 0;
      background: var(--blue-dark);
      color: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      min-height: 420px;
    }

    .contact-copy {
      padding: 80px var(--gutter, 40px);
      border-right: 1px solid rgba(255,255,255,.18);
    }

    .contact-copy h2 {
      color: var(--white);
    }

    .contact-copy p {
      max-width: 700px;
      margin: 24px 0 0;
      color: rgba(255,255,255,.72);
    }

    .social-links {
      display: grid;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      padding: 0 26px;
      border-bottom: 1px solid rgba(255,255,255,.16);
      text-decoration: none;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .social-link:hover {
      background: rgba(255,255,255,.08);
    }

    footer {
      padding: 28px 0 36px;
      color: var(--muted);
      font-size: .82rem;
      letter-spacing: .05em;
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero,
      .manifesto-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        padding: 74px 0;
      }

      .portrait {
        max-width: 560px;
      }

      .contact-copy {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
      }

      .areas,
      .cards {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .wrap {
        width: min(100% - 24px, var(--max));
      }

      section {
        padding: 68px 0;
      }

      .top-banner {
        height: 105px;
      }

      h1 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
      }

      .question {
        grid-template-columns: 50px 1fr;
      }

      .button {
        width: 100%;
      }
    }

    /* Nordic identity update */
    .brand { display:inline-flex; align-items:baseline; gap:10px; }
    .brand-main { font-family:"Geist","Helvetica Neue",Arial,sans-serif; font-size:1.48rem; font-weight:700; letter-spacing:.11em; line-height:1; }
    .brand-sub { font-family:"Geist","Helvetica Neue",Arial,sans-serif; font-size:.76rem; font-style:italic; font-weight:400; letter-spacing:.12em; color:var(--steel); }
    .nav-right { display:flex; align-items:center; gap:22px; }
    .language-switch { display:flex; gap:8px; padding-left:18px; border-left:1px solid var(--line); }
    .language-switch a { text-decoration:none; color:var(--muted); font-size:.72rem; font-weight:700; letter-spacing:.08em; }
    .language-switch .active { color:var(--blue-dark); }
    .news-lead { background:linear-gradient(180deg,rgba(255,255,255,.58),rgba(237,243,246,.72)); }
    .news-lead-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:20px; margin-top:42px; }
    .news-feature,.news-mini { background:rgba(255,255,255,.62); border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 12px 32px rgba(43,63,74,.045); }
    .news-feature { overflow:hidden; }
    .news-feature-image { height:255px; background:linear-gradient(135deg,rgba(240,246,249,.28),rgba(88,116,130,.34)),url("banner.png") center 48%/cover; border-bottom:1px solid var(--line); }
    .news-feature-body,.news-mini { padding:26px; }
    .news-feature h3 { margin:10px 0 12px; font-size:clamp(1.7rem,3vw,2.55rem); line-height:1.08; }
    .news-mini-stack { display:grid; gap:18px; }
    .news-mini h3 { margin:10px 0 8px; font-size:1.28rem; }
    .news-feature p,.news-mini p { margin:0; color:var(--muted); }
    .portrait img { filter:saturate(.9) contrast(.98) brightness(1.035); }
    .site-preview { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:40px; }
    .site-preview article { padding:28px; background:rgba(255,255,255,.56); border:1px solid var(--line); border-radius:var(--radius); }
    .site-preview h3 { margin:10px 0 10px; font-size:1.45rem; }
    .site-preview p { color:var(--muted); }
    .page-hero { padding:82px 0 56px; }
    @media (max-width:980px){ .news-lead-grid{grid-template-columns:1fr;} .nav-links{display:none;} }
    @media (max-width:640px){ .brand-main{font-size:1.18rem;} .brand-sub{font-size:.64rem;} .language-switch{display:none;} .site-preview{grid-template-columns:1fr;} }
  

    .portfolio-grid,
    .tools-grid {
      display: grid;
      gap: 18px;
      margin-top: 42px;
    }

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

    .portfolio-item,
    .tool-group {
      background: rgba(255,255,255,.58);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(43,63,74,.04);
    }

    .portfolio-item {
      min-height: 260px;
      padding: 30px;
      display: flex;
      flex-direction: column;
    }

    .portfolio-number {
      color: var(--steel);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .12em;
    }

    .portfolio-item h3 {
      margin: 42px 0 12px;
      font-size: 1.5rem;
      line-height: 1.12;
    }

    .portfolio-item p,
    .tool-group p { color: var(--muted); }

    .portfolio-item .text-link { margin-top: auto; }

    .tool-group {
      min-height: 210px;
      padding: 26px;
    }

    .tool-group h3 {
      margin: 0 0 18px;
      font-size: 1.08rem;
    }

    .tool-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tool-chip {
      display: inline-flex;
      padding: 7px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255,255,255,.48);
      font-size: .8rem;
    }

    .language-note {
      max-width: 760px;
      margin-top: 26px;
      padding: 20px 22px;
      background: rgba(255,255,255,.56);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--muted);
    }

    @media (max-width: 980px) {
      .tools-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .brand { width: 194px; }
      .brand-main { font-size: 1.18rem; }
      .brand-name { font-size: .7rem; }
      .portfolio-grid,
      .tools-grid { grid-template-columns: 1fr; }
    }


    .mobile-menu-button {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      width: 42px;
      height: 42px;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.45);
      color: var(--blue-dark);
      cursor: pointer;
    }

    .mobile-menu-button span {
      display: block;
      width: 17px;
      height: 1.5px;
      background: currentColor;
    }

    .mobile-panel {
      display: none;
      border-top: 1px solid var(--line);
      background: rgba(244,248,250,.98);
    }

    .mobile-panel.open {
      display: block;
    }

    .mobile-panel-inner {
      width: min(var(--max), calc(100% - 24px));
      margin: 0 auto;
      padding: 12px 0 18px;
    }

    .mobile-panel-inner > a {
      display: block;
      padding: 12px 2px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      text-decoration: none;
      font-size: .86rem;
      font-weight: 600;
    }

    .mobile-language {
      display: flex;
      gap: 14px;
      padding-top: 14px;
    }

    .mobile-language a {
      color: var(--muted);
      text-decoration: none;
      font-size: .78rem;
      font-weight: 700;
    }

    .mobile-language .active {
      color: var(--blue-dark);
    }

    @media (max-width: 900px) {
      .mobile-menu-button {
        display: inline-flex;
      }

      .nav-right {
        display: none;
      }

      nav {
        min-height: 78px;
      }
    }

    @media (max-width: 560px) {
      .brand {
        width: 176px;
      }

      .brand-main {
        font-size: 1.14rem;
      }

      .brand-name {
        font-size: .72rem;
      }
    }


/* Final typography refinements */
.nav-links a {
  text-transform: none;
  letter-spacing: .025em;
  font-size: .84rem;
}

.mobile-panel-inner > a {
  text-transform: none;
  letter-spacing: .025em;
}

.brand-name {
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .018em;
  text-transform: none;
}


/* Refined name typography */
.brand-name {
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .01em;
  line-height: 1.08;
  color: var(--steel);
  text-transform: none;
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .brand-name {
    font-size: .9rem;
    letter-spacing: 0;
  }
}


/* Nordic name lockup */
.brand-name {
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: .84rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .055em;
  line-height: 1;
  color: var(--steel);
  text-transform: none;
  transform: translateY(2px);
}

@media (max-width: 640px) {
  .brand-name {
    font-size: .76rem;
    line-height: 1;
  }
}


/* ===== Stable responsive header v8 ===== */
.brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center;
  width: 190px !important;
  min-width: 190px;
  gap: 1px !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.brand-main {
  display: block !important;
  width: auto !important;
  font-size: 1.30rem !important;
  letter-spacing: .16em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.brand-name {
  display: block !important;
  width: auto !important;
  margin-top: 3px;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: .055em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-transform: none !important;
  transform: none !important;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  color: var(--blue-dark);
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.mobile-menu-icon {
  position: relative;
}

.mobile-menu-icon::before {
  position: absolute;
  top: -5px;
  left: 0;
}

.mobile-menu-icon::after {
  position: absolute;
  top: 5px;
  left: 0;
}

.mobile-menu[open] .mobile-menu-icon {
  background: transparent;
}

.mobile-menu[open] .mobile-menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .mobile-menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu-content {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 100;
  width: min(320px, calc(100vw - 24px));
  padding: 12px;
  background: rgba(244,248,250,.99);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(43,63,74,.14);
}

.mobile-menu-content > a {
  display: block;
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: none;
}

.mobile-menu-content > a:last-of-type {
  border-bottom: 0;
}

.mobile-menu-languages {
  display: flex;
  gap: 14px;
  padding: 12px 10px 3px;
}

.mobile-menu-languages a {
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
}

.mobile-menu-languages .active {
  color: var(--blue-dark);
}

@media (max-width: 980px) {
  .nav-right,
  .mobile-panel,
  .mobile-menu-button {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  nav {
    min-height: 76px !important;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 166px !important;
    min-width: 166px;
  }

  .brand-main {
    font-size: 1.08rem !important;
  }

  .brand-name {
    font-size: 1.14rem !important;
  }
}


/* v9 language consistency */
@media (max-width: 980px) {
  body > header .nav-right { display: none !important; }
  body > header .mobile-menu { display: block !important; }
}

@media (min-width: 981px) {
  body > header .nav-right { display: flex !important; }
  body > header .mobile-menu { display: none !important; }
}


/* ===== Climate Clock banner overlay ===== */
.top-banner {
  min-height: 132px;
}

.climate-clock-panel {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: max(18px, calc((100vw - var(--max)) / 2));
  transform: translateY(-50%);
  width: min(520px, calc(100% - 36px));
  padding: 14px 18px 13px;
  color: #f7fbfd;
  background:
    linear-gradient(135deg, rgba(18, 34, 43, .86), rgba(49, 73, 85, .72));
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(10, 24, 31, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.climate-clock-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: #ef6a62;
}

.climate-clock-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-left: 7px;
}

.climate-clock-label {
  max-width: 330px;
  color: rgba(247,251,253,.76);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .105em;
  line-height: 1.35;
  text-transform: uppercase;
}

.climate-clock-source {
  color: rgba(247,251,253,.58);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  white-space: nowrap;
}

.climate-clock-source:hover {
  color: #ffffff;
}

.climate-clock-time {
  display: grid;
  grid-template-columns: repeat(5, minmax(50px, 1fr));
  gap: 8px;
  margin: 10px 0 0 7px;
}

.climate-clock-unit {
  min-width: 0;
}

.climate-clock-value {
  display: block;
  color: #ffffff;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

.climate-clock-caption {
  display: block;
  margin-top: 4px;
  color: rgba(247,251,253,.54);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.climate-clock-status {
  margin: 9px 0 0 7px;
  color: rgba(247,251,253,.58);
  font-size: .62rem;
}

.climate-clock-panel.is-error .climate-clock-time {
  display: none;
}

@media (max-width: 820px) {
  .top-banner {
    height: 154px;
  }

  .top-banner img {
    object-position: center;
  }

  .climate-clock-panel {
    left: 12px;
    right: 12px;
    width: auto;
    padding: 12px 14px 11px;
    border-radius: 15px;
  }

  .climate-clock-label {
    max-width: 250px;
    font-size: .6rem;
  }

  .climate-clock-source {
    font-size: .56rem;
  }

  .climate-clock-time {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .climate-clock-value {
    font-size: clamp(.93rem, 4.2vw, 1.18rem);
  }

  .climate-clock-caption {
    font-size: .49rem;
    letter-spacing: .06em;
  }
}

@media (max-width: 430px) {
  .top-banner {
    height: 166px;
  }

  .climate-clock-panel {
    top: 52%;
  }

  .climate-clock-topline {
    align-items: flex-start;
  }

  .climate-clock-label {
    max-width: 215px;
  }

  .climate-clock-source {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: .05em;
  }
}


/* ===== Climate Clock visual refinement v11 ===== */
.climate-clock-panel {
  background:
    linear-gradient(
      112deg,
      rgba(22, 78, 111, .78) 0%,
      rgba(52, 87, 104, .67) 42%,
      rgba(120, 92, 70, .62) 72%,
      rgba(115, 63, 49, .70) 100%
    );
  border: 1px solid rgba(255,255,255,.34);
  box-shadow:
    0 16px 38px rgba(8, 28, 39, .20),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.climate-clock-panel::before {
  width: 2px;
  background:
    linear-gradient(
      180deg,
      rgba(124, 206, 232, .92),
      rgba(255,255,255,.70) 48%,
      rgba(235, 151, 105, .95)
    );
  box-shadow: 0 0 16px rgba(255,255,255,.22);
}

.climate-clock-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(244,178,133,.15), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(100,188,224,.13), transparent 38%);
}

.climate-clock-topline,
.climate-clock-time,
.climate-clock-status {
  position: relative;
  z-index: 1;
}

.climate-clock-label {
  color: rgba(255,255,255,.84);
}

.climate-clock-source {
  color: rgba(255,255,255,.68);
}

.climate-clock-value {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(0,0,0,.22);
}

.climate-clock-caption {
  color: rgba(255,255,255,.62);
}

.climate-clock-status {
  color: rgba(255,255,255,.66);
}

@media (max-width: 820px) {
  .climate-clock-panel {
    background:
      linear-gradient(
        110deg,
        rgba(22, 78, 111, .80) 0%,
        rgba(58, 90, 105, .70) 48%,
        rgba(118, 73, 55, .72) 100%
      );
  }
}


/* ===== Climate Clock transparent treatment v12 ===== */
.climate-clock-panel {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 10px 4px !important;
}

.climate-clock-panel::before,
.climate-clock-panel::after {
  display: none !important;
}

.climate-clock-label,
.climate-clock-source,
.climate-clock-caption,
.climate-clock-status,
.climate-clock-value {
  text-shadow:
    0 1px 2px rgba(0,0,0,.95),
    0 2px 8px rgba(0,0,0,.78),
    0 0 18px rgba(0,0,0,.48);
}

.climate-clock-label {
  color: rgba(255,255,255,.96) !important;
  font-weight: 800;
}

.climate-clock-source {
  color: rgba(255,255,255,.82) !important;
}

.climate-clock-value {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -.055em;
}

.climate-clock-caption {
  color: rgba(255,255,255,.86) !important;
  font-weight: 800;
}

.climate-clock-status {
  color: rgba(255,255,255,.86) !important;
}

@media (max-width: 820px) {
  .climate-clock-panel {
    padding: 8px 2px !important;
  }
}


/* ===== Mixed Latest: News + Journal ===== */
.content-type {
  display: inline-flex;
  align-items: center;
  padding: .22rem .5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.content-type-news {
  color: #315e73;
  background: rgba(75, 126, 151, .08);
}

.content-type-journal {
  color: #755443;
  background: rgba(151, 104, 75, .08);
}

.news-mini .text-link {
  display: inline-block;
  margin-top: .7rem;
}


/* ===== Artistic hobbies page v14 ===== */
.hobbies-page {
  overflow-x: hidden;
}

.hobby-hero {
  padding: clamp(72px, 9vw, 120px) 0 72px;
  background:
    radial-gradient(circle at 82% 22%, rgba(150, 93, 64, .11), transparent 30%),
    radial-gradient(circle at 18% 62%, rgba(63, 119, 142, .10), transparent 32%);
}

.hobby-hero-grid,
.growing-grid,
.soundtrack-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.hobby-hero h1 {
  max-width: 780px;
  margin: .7rem 0 1.1rem;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.hobby-intro {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
  color: var(--muted);
}

.hobby-orbit {
  position: relative;
  min-height: 320px;
}

.orbit-circle {
  position: absolute;
  border: 1px solid rgba(47, 91, 111, .25);
  border-radius: 50%;
}

.orbit-a { inset: 12% 8% 6% 18%; transform: rotate(-8deg); }
.orbit-b { inset: 24% 20% 18% 4%; border-color: rgba(137, 86, 57, .28); transform: rotate(13deg); }
.orbit-dot { position: absolute; width: 16px; height: 16px; border-radius: 50%; }
.dot-a { top: 19%; right: 15%; background: #416f84; }
.dot-b { bottom: 16%; left: 18%; background: #a16f52; }
.orbit-word {
  position: absolute;
  inset: 42% auto auto 28%;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: .15em;
  color: rgba(44, 79, 95, .10);
  transform: rotate(-9deg);
}

.hobby-section {
  padding: 82px 0;
}

.hobby-section-soft {
  background: linear-gradient(180deg, rgba(79, 112, 124, .055), rgba(154, 107, 76, .035));
}

.hobby-mosaic {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  margin-top: 30px;
}

.hobby-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 52px rgba(42, 68, 80, .07);
}

.hobby-card-large {
  grid-row: span 2;
}

.hobby-art {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.hobby-card-large .hobby-art {
  min-height: 420px;
}

.hobby-art::before,
.hobby-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(.2px);
}

.hobby-art span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: .42rem .65rem;
  border-radius: 999px;
  color: white;
  background: rgba(20, 34, 41, .52);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hobby-art-wood {
  background:
    repeating-linear-gradient(92deg, rgba(63,35,21,.14) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, #c8a37c, #805f45 60%, #4e3d31);
}

.hobby-art-wood::before {
  width: 72%; height: 72%; left: -14%; top: 12%;
  border: 18px solid rgba(246,232,210,.34);
}
.hobby-art-wood::after {
  width: 54%; height: 54%; right: -5%; bottom: -10%;
  border: 12px solid rgba(73,41,26,.20);
}

.hobby-art-watercolor {
  background:
    radial-gradient(circle at 25% 25%, rgba(72,135,167,.72), transparent 34%),
    radial-gradient(circle at 72% 42%, rgba(200,119,94,.62), transparent 38%),
    radial-gradient(circle at 45% 85%, rgba(106,144,117,.55), transparent 40%),
    #edf3f4;
}

.hobby-art-electronics {
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,.12) 50%, transparent 51%),
    radial-gradient(circle at 68% 28%, #6fc7dc 0 4px, transparent 5px),
    radial-gradient(circle at 28% 72%, #d49069 0 4px, transparent 5px),
    linear-gradient(135deg, #182d37, #355565);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.hobby-card-body {
  padding: 22px;
}

.hobby-card-body h2 {
  margin: 0 0 .55rem;
  font-size: 1.45rem;
}

.leaf-composition {
  position: relative;
  min-height: 320px;
}

.leaf {
  position: absolute;
  width: 130px;
  height: 210px;
  border-radius: 70% 10% 70% 10%;
  background: linear-gradient(145deg, rgba(74,118,89,.30), rgba(118,145,105,.08));
  border: 1px solid rgba(71,109,81,.22);
  transform-origin: bottom center;
}
.leaf-1 { left: 24%; bottom: 20px; transform: rotate(-28deg); }
.leaf-2 { left: 43%; bottom: 24px; transform: rotate(8deg) scale(.9); }
.leaf-3 { left: 58%; bottom: 18px; transform: rotate(34deg) scale(.78); }
.leaf-stem {
  position: absolute;
  width: 2px;
  height: 220px;
  left: 49%;
  bottom: 0;
  background: rgba(75,108,76,.38);
  transform: rotate(-5deg);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.story-grid article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(58,91,105,.035));
}

.story-index {
  display: block;
  margin-bottom: 48px;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  font-size: 2rem;
  color: rgba(52,85,100,.38);
}

.soundtrack-section {
  background:
    linear-gradient(180deg, rgba(31,52,62,.98), rgba(16,29,35,.99));
  color: #f5f8f9;
}

.soundtrack-section .section-number,
.soundtrack-section p {
  color: rgba(245,248,249,.68);
}

.soundtrack-heading {
  margin-bottom: 32px;
}

.soundwave {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  min-height: 80px;
}

.soundwave i {
  display: block;
  width: 5px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7bb8cc, #ca8462);
}
.soundwave i:nth-child(2) { height: 54px; }
.soundwave i:nth-child(3) { height: 34px; }
.soundwave i:nth-child(4) { height: 74px; }
.soundwave i:nth-child(5) { height: 46px; }
.soundwave i:nth-child(6) { height: 61px; }
.soundwave i:nth-child(7) { height: 28px; }

.track-list {
  display: grid;
  gap: 12px;
}

.track-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.track-card:hover,
.track-card.is-playing {
  transform: translateX(4px);
  background: rgba(255,255,255,.065);
  border-color: rgba(123,184,204,.38);
}

.track-play {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}

.track-meta {
  color: #8fc1d3;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.track-info h3 {
  margin: .3rem 0 .35rem;
  color: white;
}

.track-info p {
  margin: 0 0 .75rem;
}

.track-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}

.track-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #7bb8cc, #ca8462);
}

.track-time {
  min-width: 50px;
  color: rgba(255,255,255,.62);
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: .78rem;
  text-align: right;
}

.audio-note {
  margin-top: 18px;
  font-size: .72rem;
}

@media (max-width: 860px) {
  .hobby-hero-grid,
  .growing-grid,
  .soundtrack-heading,
  .hobby-mosaic {
    grid-template-columns: 1fr;
  }

  .hobby-orbit {
    min-height: 230px;
  }

  .hobby-card-large {
    grid-row: auto;
  }

  .hobby-card-large .hobby-art {
    min-height: 280px;
  }

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

  .soundwave {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hobby-hero {
    padding-top: 54px;
  }

  .hobby-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.3rem);
  }

  .track-card {
    grid-template-columns: 50px 1fr;
  }

  .track-time {
    grid-column: 2;
    text-align: left;
  }
}


/* ===== YouTube soundtrack player v15 ===== */
.hobby-player-hero {
  padding: clamp(58px, 8vw, 96px) 0 72px;
  background:
    radial-gradient(circle at 12% 18%, rgba(66, 122, 145, .11), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(165, 104, 71, .10), transparent 28%);
}

.youtube-player-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(22px, 3.6vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(241,246,248,.72));
  box-shadow: 0 24px 70px rgba(41, 68, 82, .10);
}

.youtube-player-visual {
  display: grid;
  place-items: center;
}

.youtube-artwork {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 24%, rgba(101,184,216,.60), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(210,127,88,.48), transparent 32%),
    linear-gradient(145deg, #16303d, #31586b 56%, #7b5141);
  box-shadow: 0 28px 56px rgba(19, 42, 53, .22);
}

.youtube-artwork-glow {
  position: absolute;
  width: 62%;
  height: 62%;
  left: -8%;
  top: -10%;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  filter: blur(18px);
}

.youtube-artwork-disc {
  position: absolute;
  width: 56%;
  aspect-ratio: 1;
  left: 22%;
  top: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  background:
    radial-gradient(circle, rgba(255,255,255,.12) 0 8%, transparent 9% 18%, rgba(255,255,255,.08) 19% 20%, transparent 21%);
  box-shadow:
    0 0 0 28px rgba(255,255,255,.03),
    0 0 0 56px rgba(255,255,255,.025);
}

.youtube-artwork-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 26px, rgba(255,255,255,.055) 27px 28px);
  mix-blend-mode: screen;
}

.youtube-artwork-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: rgba(255,255,255,.86);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.youtube-now-playing {
  color: var(--steel);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.youtube-player-content h1 {
  margin: .55rem 0 .25rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.youtube-artist {
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.youtube-player-content > p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.youtube-frame-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: #10232c;
  box-shadow: 0 14px 34px rgba(20, 42, 51, .16);
}

.youtube-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-player-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.youtube-nav-button,
.youtube-open-link {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--blue-dark);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.youtube-open-link {
  display: grid;
  place-items: center;
  justify-self: center;
}

.youtube-track-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.youtube-track-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  align-items: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.56);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.youtube-track-chip:hover,
.youtube-track-chip.is-active {
  transform: translateY(-2px);
  border-color: rgba(52, 101, 123, .38);
  background: rgba(247,251,252,.94);
}

.youtube-track-chip span {
  grid-row: 1 / span 2;
  color: rgba(52, 83, 98, .40);
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.7rem;
  font-style: italic;
}

.youtube-track-chip strong {
  color: var(--blue-dark);
  font-size: .82rem;
}

.youtube-track-chip small {
  color: var(--muted);
  font-size: .74rem;
}

.youtube-player-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .72rem;
}

@media (max-width: 900px) {
  .youtube-player-shell {
    grid-template-columns: 1fr;
  }

  .youtube-artwork {
    width: min(100%, 320px);
  }

  .youtube-track-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .youtube-player-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .youtube-player-controls {
    grid-template-columns: 1fr 1fr;
  }

  .youtube-open-link {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .youtube-nav-button {
    width: 100%;
  }
}


/* YouTube embed diagnostics v16 */
.youtube-local-warning {
  display: none;
  margin-top: 12px;
  padding: 10px 13px;
  border-left: 3px solid #9b6b4f;
  background: rgba(155,107,79,.08);
  color: var(--muted);
  font-size: .76rem;
}

.youtube-player-shell.is-local-preview + .youtube-track-selector + .youtube-local-warning,
.is-local-preview ~ .youtube-local-warning {
  display: block;
}


/* ===== Compact soundtrack radio v17 ===== */
.compact-radio-section {
  padding: 42px 0 54px;
  background:
    radial-gradient(circle at 12% 20%, rgba(62,119,143,.08), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(161,102,72,.07), transparent 26%);
}

.compact-radio {
  display: grid;
  grid-template-columns: 92px minmax(220px, .9fr) minmax(230px, .8fr) minmax(260px, 420px);
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 52px rgba(40,67,80,.08);
}

.compact-radio-mark {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 22px;
  background: linear-gradient(145deg, #1b3542, #3e6c81 62%, #865d49);
}

.compact-radio-mark span,
.compact-radio-mark i {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
}
.compact-radio-mark span { height: 18px; }
.compact-radio-mark i:nth-child(2) { height: 34px; }
.compact-radio-mark i:nth-child(3) { height: 50px; }
.compact-radio-mark i:nth-child(4) { height: 26px; }

.compact-radio-copy .section-number {
  margin-bottom: .4rem;
}

.compact-radio-now {
  color: var(--steel);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.compact-radio-copy h1 {
  margin: .3rem 0 .35rem;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.compact-radio-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.compact-radio-controls label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.compact-radio-controls select {
  width: 100%;
  min-height: 44px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue-dark);
  background: rgba(247,250,251,.94);
  font: inherit;
  font-size: .82rem;
}

.compact-radio-buttons {
  display: flex;
  gap: 8px;
  margin-top: 9px;
}

.compact-radio-buttons button,
.compact-radio-buttons a {
  min-width: 38px;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.66);
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.compact-radio-buttons a {
  margin-left: auto;
}

.compact-radio-player {
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
  aspect-ratio: 16 / 9;
  background: #102630;
  box-shadow: 0 10px 26px rgba(17,41,51,.16);
}

.compact-radio-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.compact-radio-note {
  max-width: 760px;
  margin: 10px 0 0 auto;
  color: var(--muted);
  font-size: .68rem;
  text-align: right;
}

@media (max-width: 1040px) {
  .compact-radio {
    grid-template-columns: 72px 1fr 1fr;
  }

  .compact-radio-player {
    grid-column: 2 / -1;
    width: min(100%, 520px);
  }
}

@media (max-width: 700px) {
  .compact-radio {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .compact-radio-mark {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .compact-radio-controls,
  .compact-radio-player {
    grid-column: 1 / -1;
  }

  .compact-radio-player {
    width: 100%;
  }

  .compact-radio-note {
    text-align: left;
  }
}


/* ===== Personal phrase hero v18 ===== */
.hobby-phrase-hero {
  padding: clamp(58px, 8vw, 92px) 0 22px;
  background:
    radial-gradient(circle at 84% 22%, rgba(154, 93, 62, .08), transparent 26%),
    radial-gradient(circle at 14% 64%, rgba(57, 115, 139, .08), transparent 30%);
}

.hobby-phrase-hero h1 {
  max-width: 920px;
  margin: .55rem 0 .85rem;
  font-size: clamp(3rem, 7.2vw, 6.9rem);
  line-height: .91;
  letter-spacing: -.06em;
}

.hobby-phrase-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

.compact-radio-section {
  padding-top: 30px;
}


/* V29 — square editorial geometry across the complete website */
html *,
html *::before,
html *::after {
  border-radius: 0 !important;
}


/* V31 — refined editorial typography and dual actions for Climate action */
body,
button,
input,
select,
textarea {
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
}

h1 {
  font-weight: 340;
}

h2 {
  font-weight: 450;
}

h3 {
  font-weight: 530;
}

.manifesto-text {
  font-weight: 390;
}

h1 strong,
.manifesto-text strong {
  font-weight: 620;
}

.brand-main {
  font-weight: 640 !important;
}

.brand-name,
.nav-links a,
.mobile-panel-inner > a,
.language-switch a {
  font-weight: 500 !important;
}

.eyebrow,
.section-number,
.section-kicker,
.content-type,
.portfolio-number {
  font-weight: 600;
}

.lead,
.section-intro,
.news-feature p,
.news-mini p,
.tool-chip {
  letter-spacing: -.006em;
}

.tool-group h3 {
  font-weight: 560;
  letter-spacing: -.018em;
}

.tool-chip {
  font-weight: 430;
}

.news-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 18px;
  margin-top: .85rem;
}

.news-mini .news-card-actions .text-link {
  margin-top: 0;
}

.news-card-actions .tool-link {
  padding-left: 13px;
  border-left: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 600;
}

@media (max-width: 520px) {
  .news-card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-card-actions .tool-link {
    padding-left: 0;
    border-left: 0;
  }
}

/* ===== V32 — editorial Journal and Atlas project news ===== */
.card-featured {
  grid-column: span 2;
}

.card-media {
  display: block;
  aspect-ratio: 16 / 6.35;
  max-height: 270px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.68) contrast(.95) brightness(1.035);
  transition: transform .55s ease, filter .55s ease;
}

.card-featured:hover .card-media img,
.card-featured:focus-within .card-media img {
  transform: scale(1.018);
  filter: saturate(.82) contrast(.98) brightness(1.02);
}

.card-featured .card-body {
  padding: clamp(26px, 4vw, 40px);
}

.card-featured h3 {
  max-width: 820px;
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.card-featured p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
}

.muted-link {
  color: var(--steel);
}

.news-mini.has-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  min-height: 178px;
  padding: 0;
  overflow: hidden;
}

.news-mini-copy {
  min-width: 0;
  padding: 20px 22px;
}

.news-mini-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-left: 1px solid var(--line);
  filter: saturate(.56) contrast(.95) brightness(1.04);
}

.article-back {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
}

.article-back:hover,
.article-back:focus-visible {
  color: var(--blue-dark);
}

.article-hero {
  padding: clamp(72px, 8vw, 112px) 0 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(111,143,161,.13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(237,243,246,.5));
  border-bottom: 1px solid var(--line);
}

.article-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
  margin-top: 18px;
}

.article-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3.4rem, 7.1vw, 7rem);
  line-height: .91;
  letter-spacing: -.068em;
}

.article-deck {
  max-width: 820px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.6;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 30px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 540;
  letter-spacing: .025em;
}

.article-byline span + span::before {
  content: "·";
  margin-right: 22px;
  color: var(--steel);
}

.article-language-note {
  margin: 14px 0 0;
  color: var(--steel);
  font-size: .78rem;
}

.article-hero-side {
  padding: 0 0 8px 26px;
  border-left: 1px solid var(--line);
}

.article-part {
  display: block;
  color: var(--blue);
  font-size: clamp(4.8rem, 8vw, 7rem);
  font-weight: 260;
  letter-spacing: -.07em;
  line-height: .8;
}

.article-hero-side p {
  margin: 24px 0 20px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

.article-pdf-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 13px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  font-size: .76rem;
  font-weight: 650;
  text-decoration: none;
}

.article-pdf-link:hover,
.article-pdf-link:focus-visible {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.article-hero-image {
  margin: clamp(54px, 7vw, 86px) 0 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--ice-2);
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 8.1;
  object-fit: cover;
  object-position: center top;
}

.article-hero-image figcaption,
.article-figure figcaption,
.news-story-image figcaption {
  padding: 11px 14px;
  color: var(--muted);
  background: rgba(255,255,255,.7);
  border-top: 1px solid var(--line);
  font-size: .72rem;
  line-height: 1.45;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1080px);
  justify-content: center;
  gap: 54px;
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: 110px;
}

.article-toc {
  position: relative;
  min-width: 0;
  background: rgba(255,255,255,.46);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.article-toc > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 620;
  list-style: none;
}

.article-toc > summary::-webkit-details-marker {
  display: none;
}

.article-toc > summary .meta {
  color: var(--blue-dark);
}

.article-toc > summary b {
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.article-toc[open] > summary b {
  transform: rotate(45deg);
}

.article-toc-inner {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 26px;
  align-items: start;
  padding: 0 22px 22px;
}

.article-toc nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  min-height: auto;
  margin-top: 0;
  border-top: 0;
}

.article-toc nav a {
  padding: 11px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .77rem;
  line-height: 1.35;
  text-decoration: none;
}

.article-toc nav a:hover,
.article-toc nav a:focus-visible {
  color: var(--ink);
}

.article-toc-cta {
  display: inline-flex;
  margin-top: 0;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 650;
  text-decoration: none;
}

.article-copy {
  min-width: 0;
  column-count: 2;
  column-gap: clamp(38px, 5vw, 66px);
  column-rule: 1px solid var(--line);
  orphans: 3;
  widows: 3;
}

.article-abstract {
  margin-bottom: 78px;
  padding: 34px 36px 28px;
  background: var(--ice-2);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.article-abstract p {
  margin: 16px 0 0 !important;
  color: var(--blue-dark);
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

.article-keywords {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: .78rem !important;
  letter-spacing: .01em;
}

.article-copy > h2 {
  margin: 86px 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.047em;
  scroll-margin-top: 96px;
}

.article-copy > h2,
.article-copy > h3,
.article-copy > blockquote,
.article-copy > figure,
.article-copy > table,
.article-copy > .article-table-caption,
.article-copy > ul,
.article-copy > ol,
.article-copy > .article-end {
  column-span: all;
}

.article-copy > h3 {
  margin: 54px 0 18px;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.16;
  letter-spacing: -.028em;
  scroll-margin-top: 96px;
}

.article-copy > p,
.article-copy > ul,
.article-copy > ol {
  font-size: 1rem;
  line-height: 1.82;
}

.article-copy > p {
  margin: 0 0 1.45em;
}

.article-copy > ul,
.article-copy > ol {
  margin: 26px 0 34px;
  padding-left: 1.35em;
}

.article-copy li {
  margin: 0 0 12px;
}

.article-copy li p {
  margin: 0;
}

.article-copy blockquote {
  margin: 52px 0;
  padding: 30px 34px;
  color: var(--blue-dark);
  background: linear-gradient(120deg, rgba(223,232,237,.75), rgba(255,255,255,.62));
  border-left: 4px solid var(--blue);
}

.article-copy blockquote p {
  margin: 0;
  font-size: clamp(1.22rem, 2.3vw, 1.7rem);
  font-weight: 470;
  line-height: 1.46;
  letter-spacing: -.022em;
}

.article-figure {
  margin: 48px 0 56px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.article-figure img {
  width: 100%;
  height: auto;
}

.article-figure-diagram {
  width: min(100%, 780px);
  margin-right: auto;
  margin-left: auto;
}

.article-figure-wide {
  width: 100%;
  margin-left: 0;
}

.article-copy table {
  display: block;
  width: 100%;
  margin: 42px 0 0;
  overflow-x: auto;
  border-collapse: collapse;
  border-top: 2px solid var(--blue-dark);
  border-bottom: 1px solid var(--line);
  font-size: .83rem;
  line-height: 1.5;
}

.article-copy th,
.article-copy td {
  min-width: 170px;
  padding: 15px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-copy th:last-child,
.article-copy td:last-child {
  min-width: 310px;
  border-right: 0;
}

.article-copy th {
  color: var(--blue-dark);
  background: var(--ice-2);
}

.article-table-caption {
  margin-top: 10px !important;
  color: var(--muted);
  font-size: .75rem !important;
  line-height: 1.5 !important;
}

.article-copy h2#bibliografía ~ p,
.article-copy h2#references ~ p {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(205,216,222,.68);
  font-size: .84rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.article-copy a:not(.text-link) {
  color: var(--blue-dark);
  text-decoration-color: rgba(49,73,85,.35);
  text-underline-offset: 3px;
}

.article-copy .citation-link {
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}

.article-figure figcaption {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
  border-top: 0;
}

.article-end {
  margin-top: 92px;
  padding: 40px;
  color: var(--white);
  background: var(--blue-dark);
}

.article-end h2 {
  max-width: 620px;
  margin: 14px 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.article-end p {
  max-width: 620px;
  color: rgba(255,255,255,.72);
}

.article-end .section-kicker,
.article-end .text-link {
  color: var(--white);
}

.article-end .text-link.secondary {
  color: rgba(255,255,255,.7);
}

.news-story-hero {
  padding: clamp(72px, 8vw, 110px) 0 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(111,143,161,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(237,243,246,.52));
  border-bottom: 1px solid var(--line);
}

.news-story-hero h1 {
  max-width: 1050px;
  margin: 18px 0 0;
  font-size: clamp(3.4rem, 7.4vw, 7.2rem);
  line-height: .9;
  letter-spacing: -.07em;
}

.news-story-deck {
  max-width: 790px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.58;
}

.news-story-image {
  margin: 58px 0 0;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.news-story-image img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  object-position: center top;
}

.news-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1040px);
  justify-content: center;
  gap: 48px;
  padding-top: 82px;
  padding-bottom: 110px;
}

.news-factbox {
  align-self: start;
  position: static;
  display: flex;
  flex-flow: row wrap;
  gap: 10px 22px;
  align-items: baseline;
  padding: 22px 24px;
  background: rgba(255,255,255,.55);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.news-factbox .meta {
  flex: 1 0 100%;
}

.news-factbox strong {
  margin-top: 0;
  color: var(--blue-dark);
  font-size: 4.8rem;
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .9;
}

.news-factbox > span {
  margin-top: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.news-fact-divider {
  width: 1px;
  height: 24px;
  margin: 0 2px;
  border-left: 1px solid var(--line);
}

.news-story-copy > p {
  margin: 0 0 1.5em;
  font-size: 1.08rem;
  line-height: 1.86;
}

.news-story-copy {
  min-width: 0;
  column-count: 2;
  column-gap: clamp(38px, 5vw, 66px);
  column-rule: 1px solid var(--line);
  orphans: 3;
  widows: 3;
}

.news-story-copy .story-lead,
.news-story-copy .story-links,
.news-story-copy .news-comment,
.news-story-copy .story-tags {
  column-span: all;
}

.news-story-copy .story-lead {
  color: var(--blue-dark);
  font-size: clamp(1.28rem, 2.4vw, 1.72rem);
  line-height: 1.58;
  letter-spacing: -.018em;
}

.story-links {
  display: grid;
  margin: 56px 0 38px;
  border-top: 1px solid var(--blue-dark);
}

.story-links a {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.story-links a span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-links a strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.story-links a b {
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.story-links a:hover b,
.story-links a:focus-visible b {
  transform: translateX(4px);
}

.news-comment {
  margin: 38px 0;
  padding: 26px 30px;
  color: var(--blue-dark);
  background: var(--ice-2);
  border-left: 3px solid var(--blue);
  font-size: 1.16rem;
  font-weight: 500;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-tags span {
  padding: 6px 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: .7rem;
  letter-spacing: .025em;
}

.longform-article,
.news-story,
.article-availability-page {
  overflow-x: clip;
}

.editorial-card-actions {
  gap: 10px 0;
}

.editorial-card-actions .text-link {
  padding-right: 14px;
}

.editorial-card-actions .text-link + .text-link {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.article-availability-page {
  padding: clamp(72px, 9vw, 118px) 0 110px;
  background:
    radial-gradient(circle at 82% 12%, rgba(111,143,161,.13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.64), rgba(237,243,246,.38));
}

.article-availability-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .62fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: end;
}

.article-availability-grid h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  font-size: clamp(3rem, 6.5vw, 6.3rem);
  line-height: .93;
  letter-spacing: -.062em;
}

.article-availability-grid p {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.language-status {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--blue-dark);
  background: var(--ice-2);
  border: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.availability-primary {
  display: inline-flex;
  margin-top: 30px;
  padding: 13px 17px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: .82rem;
  font-weight: 650;
  text-decoration: none;
}

.availability-actions,
.availability-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.availability-downloads {
  margin-top: 12px;
}

.availability-downloads .article-pdf-link {
  margin-top: 0;
}

.article-availability-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-availability-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.article-availability-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .7rem;
}

.availability-links {
  max-width: 840px;
  margin-top: 72px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .card-featured {
    grid-column: auto;
  }

  .article-title-grid,
  .article-layout,
  .news-story-layout {
    grid-template-columns: 1fr;
  }

  .article-hero-side {
    max-width: 620px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .article-part {
    font-size: 4.5rem;
  }

  .article-toc,
  .news-factbox {
    position: static;
  }

  .article-toc-inner {
    position: static;
    grid-template-columns: 1fr;
  }

  .article-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-toc nav a:nth-child(odd) {
    padding-right: 20px;
    border-right: 1px solid var(--line);
  }

  .article-toc nav a:nth-child(even) {
    padding-left: 20px;
  }

  .news-factbox {
    max-width: none;
  }

  .article-availability-grid {
    grid-template-columns: 1fr;
  }

  .article-availability-grid figure {
    max-width: 700px;
  }
}

@media (max-width: 860px) {
  .article-copy,
  .news-story-copy {
    column-count: 1;
    column-rule: 0;
  }
}

@media (max-width: 680px) {
  .news-mini.has-image {
    grid-template-columns: 1fr;
  }

  .news-mini-image {
    order: -1;
    height: 118px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .article-hero,
  .news-story-hero {
    padding-top: 60px;
  }

  .article-hero h1,
  .news-story-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .article-byline {
    display: grid;
    gap: 5px;
  }

  .article-byline span + span::before {
    display: none;
  }

  .article-layout,
  .news-story-layout {
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .article-toc nav {
    grid-template-columns: 1fr;
  }

  .article-toc > summary {
    grid-template-columns: minmax(0, 1fr) 18px;
  }

  .article-toc > summary > span:nth-child(2) {
    display: none;
  }

  .article-toc-inner,
  .news-factbox {
    padding: 20px;
  }

  .article-toc nav a:nth-child(odd),
  .article-toc nav a:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .article-abstract {
    padding: 26px 22px 22px;
  }

  .article-copy blockquote {
    margin: 42px 0;
    padding: 24px 22px;
  }

  .article-figure-wide {
    width: 100%;
    margin-left: 0;
  }

  .news-fact-divider {
    width: 100%;
    height: 0;
    margin: 8px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .editorial-card-actions .text-link,
  .editorial-card-actions .text-link + .text-link {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .article-end {
    padding: 28px 24px;
  }

  .story-links a {
    grid-template-columns: 1fr auto;
  }

  .story-links a span {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-media img,
  .story-links a b {
    transition: none;
  }
}


/* ===== V33 — operational readiness editorial ===== */
.news-feature-energy{background:linear-gradient(135deg,rgba(237,243,246,.16),rgba(49,73,85,.24)),url("banner.png") center 48%/cover}
.card-visual-energy{background:radial-gradient(circle at 22% 30%,rgba(255,255,255,.76),transparent 20%),radial-gradient(circle at 78% 68%,rgba(111,143,161,.34),transparent 24%),repeating-linear-gradient(90deg,transparent 0 38px,rgba(49,73,85,.065) 39px 40px),linear-gradient(135deg,#edf3f6,#cbd9df)}
.systems-visual{margin:clamp(48px,6vw,72px) 0 0;padding:clamp(20px,3vw,30px);border:1px solid var(--line);background:linear-gradient(145deg,rgba(255,255,255,.68),rgba(223,232,237,.56));overflow:hidden}
.systems-visual>summary{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr) auto 20px;gap:18px;align-items:center;cursor:pointer;list-style:none;color:var(--muted);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase}
.systems-visual>summary::-webkit-details-marker{display:none}.systems-visual>summary strong{color:var(--blue-dark)}.systems-visual>summary small{color:var(--steel);font-size:.67rem;letter-spacing:.04em;text-transform:none}.systems-visual>summary b{color:var(--blue-dark);font-size:1.2rem;font-weight:400;text-align:right;transition:transform .2s ease}.systems-visual[open]>summary b{transform:rotate(45deg)}
.systems-visual-body{margin-top:18px;padding-top:18px;border-top:1px solid var(--line)}
.systems-map{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.systems-core{grid-column:2 / 4;grid-row:1 / 3;display:flex;min-height:180px;flex-direction:column;justify-content:center;align-items:center;padding:24px;color:var(--white);background:var(--blue-dark);text-align:center}
.systems-core span{font-size:.7rem;letter-spacing:.12em;text-transform:uppercase}.systems-core strong{max-width:280px;margin-top:10px;font-size:clamp(1.35rem,3vw,2.2rem);line-height:1.05}
.systems-node{display:flex;align-items:flex-end;min-height:84px;padding:14px;color:var(--blue-dark);background:rgba(255,255,255,.62);border:1px solid var(--line);font-size:.75rem;font-weight:600;line-height:1.3}
.systems-node-1,.systems-node-2{grid-row:1}.systems-node-3,.systems-node-4{grid-row:2}.systems-node-5,.systems-node-6,.systems-node-7{grid-row:3}.systems-node-1,.systems-node-3{grid-column:1}.systems-node-2,.systems-node-4{grid-column:4}.systems-node-5{grid-column:1 / 2}.systems-node-6{grid-column:2 / 4}.systems-node-7{grid-column:4 / 5}
.systems-visual-caption{margin:13px 0 0;color:var(--muted);font-size:.72rem;line-height:1.5}
.translation-review-note{max-width:760px;margin-top:24px;padding:16px 18px;color:var(--blue-dark);background:rgba(255,255,255,.58);border-left:3px solid var(--blue);font-size:.78rem;line-height:1.55}
.translation-review-note p{margin:5px 0 0}.translation-review-note a{color:inherit;text-underline-offset:3px}
.news-story-copy>h2{column-span:all;margin:64px 0 22px;padding-top:18px;border-top:1px solid var(--line);font-size:clamp(1.85rem,3.6vw,3rem);line-height:1.08;letter-spacing:-.042em;scroll-margin-top:96px}
.news-story-copy>.editorial-list{column-span:all;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 26px;margin:28px 0 40px;padding:0;list-style:none;border-top:1px solid var(--blue-dark)}
.editorial-list li{position:relative;padding:16px 12px 16px 32px;border-bottom:1px solid var(--line);font-size:.92rem;line-height:1.55}.editorial-list li::before{content:"✓";position:absolute;left:4px;color:var(--blue);font-weight:700}.editorial-questions li::before{content:"?"}
.framework-list{counter-reset:layers}.framework-list li{counter-increment:layers;position:relative;padding:24px 22px 22px 64px;background:rgba(255,255,255,.5);border:1px solid var(--line);list-style:none}.framework-list li::before{content:counter(layers,decimal-leading-zero);position:absolute;left:20px;top:22px;color:var(--blue);font-size:1.15rem;font-weight:650}.framework-list li strong{display:block;color:var(--blue-dark);font-size:1rem}.framework-list li p{margin:8px 0 0;font-size:.84rem;line-height:1.55}.article-copy>.framework-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;padding:0}
.short-journal .article-hero h1{font-size:clamp(3.2rem,6.5vw,6.3rem)}.short-journal .article-layout{padding-top:72px}.short-journal .article-copy>h2:first-child{margin-top:24px}
@media(max-width:760px){.systems-visual>summary{grid-template-columns:minmax(0,1fr) 20px;gap:5px 14px}.systems-visual>summary span,.systems-visual>summary strong{grid-column:1}.systems-visual>summary b{grid-column:2;grid-row:1 / 3}.systems-visual>summary small{display:none}.systems-map{grid-template-columns:1fr 1fr}.systems-core{grid-column:1 / -1;grid-row:auto;min-height:150px}.systems-node,.systems-node-1,.systems-node-2,.systems-node-3,.systems-node-4,.systems-node-5,.systems-node-6,.systems-node-7{grid-column:auto;grid-row:auto}.news-story-copy>.editorial-list,.article-copy>.framework-list{grid-template-columns:1fr}.news-story-copy>h2{margin-top:48px}}
