﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap");

:root {
  --font-body: "Poppins";
  --font-display: "Poppins";
  --blue-950: #2a376a;
  --blue-900: #2d5f9a;
  --blue-800: #3e78aa;
  --blue-700: #4fabd4;
  --blue-600: #75bddc;
  --cyan: #d88d43;
  --cyan-soft: #f8e4c9;
  --ink: #2a376a;
  --muted: #68728e;
  --gray: #8d91a0;
  --line: #dedee7;
  --surface: #f7f6f8;
  --white: #ffffff;
  --culture: #732d67;
  --health: #399289;
  --education: #d88d43;
  --opportunities: #4fabd4;
  --social: #be3069;
  --signature-deep-green: #174c4a;
  --support-blue: #c0deea;
  --support-yellow: #eee8b6;
  --support-rose: #eac1c8;
  --support-mint: #c8dfd5;
  --secondary-orange: #cf723c;
  --secondary-gold: #edc34b;
  --secondary-yellow: #faed51;
  --secondary-lime: #becc53;
  --shadow-soft: 0 1.25rem 3.75rem rgba(42, 55, 106, 0.14);
  --shadow-card: 0 1rem 2.5rem rgba(42, 55, 106, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body), sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

button,
input,
summary {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 0.1875rem solid var(--cyan);
  outline-offset: 0.1875rem;
}

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

.container {
  width: min(75rem, calc(100% - 3rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--blue-900);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

html.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(0.35rem);
  transform: translateY(2.25rem);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

html.motion-ready [data-reveal="left"] {
  transform: translateX(-2.75rem);
}

html.motion-ready [data-reveal="right"] {
  transform: translateX(2.75rem);
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    filter: blur(0.3rem);
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes contentSwapIn {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--blue-950);
  color: var(--white);
  isolation: isolate;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.8s ease,
    transform 7s ease;
}

.hero-background.is-lowered {
  top: 4rem;
  bottom: auto;
  height: calc(100% - 4rem);
}

.hero-background.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(42, 55, 106, 0.86) 0%, rgba(45, 95, 154, 0.64) 34%, rgba(42, 55, 106, 0.2) 64%, rgba(42, 55, 106, 0.03) 100%),
    linear-gradient(180deg, rgba(29, 39, 77, 0.26) 0%, rgba(42, 55, 106, 0.02) 48%, rgba(42, 55, 106, 0.54) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12rem;
  bottom: -20rem;
  width: 42rem;
  height: 42rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(216, 141, 67, 0.06),
    0 0 0 10rem rgba(79, 171, 212, 0.05);
  opacity: 0.38;
}

.utility-bar {
  position: relative;
  z-index: 25;
  min-height: 2.75rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 16, 67, 0.42);
  backdrop-filter: blur(0.75rem);
  font-size: 0.75rem;
}

.utility-inner {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.social-links,
.utility-toolbar {
  display: flex;
  align-items: center;
}

.social-links {
  gap: 0.35rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  border-radius: 0.6rem;
  color: var(--white);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.social-glyph {
  position: relative;
  width: 1rem;
  height: 1rem;
  display: block;
  color: currentColor;
  font-style: normal;
}

.social-glyph.is-facebook::before {
  position: absolute;
  right: 0.18rem;
  bottom: -0.12rem;
  content: "f";
  font-family: Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
}

.social-glyph.is-instagram {
  border: 0.105rem solid currentColor;
  border-radius: 0.3rem;
}

.social-glyph.is-instagram::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.36rem;
  height: 0.36rem;
  content: "";
  border: 0.09rem solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.social-glyph.is-instagram::after {
  position: absolute;
  top: 0.17rem;
  right: 0.17rem;
  width: 0.12rem;
  height: 0.12rem;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.social-glyph.is-youtube {
  width: 1.08rem;
  height: 0.76rem;
  border: 0.095rem solid currentColor;
  border-radius: 0.28rem;
}

.social-glyph.is-youtube::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.2rem solid transparent;
  border-bottom: 0.2rem solid transparent;
  border-left: 0.31rem solid currentColor;
  transform: translate(-45%, -50%);
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--blue-950);
  transform: translateY(-0.1rem);
}

.social-links.with-labels {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links.with-labels .social-link {
  width: auto;
  min-height: 2.25rem;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
}

.social-links.with-labels .social-link span {
  font-size: 0.66rem;
  font-weight: 750;
}

.utility-toolbar {
  gap: 1rem;
  margin-left: auto;
}

.utility-social-links {
  padding-right: 1rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.utility-actions button {
  min-width: 2.125rem;
  min-height: 1.875rem;
  padding: 0.25rem 0.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.utility-actions button:hover {
  background: var(--white);
  color: var(--blue-900);
}

.utility-actions button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.utility-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  margin-left: 0.625rem;
  font-weight: 700;
}

.floating-header {
  position: absolute;
  z-index: 40;
  top: 4.25rem;
  left: 50%;
  width: min(84rem, calc(100% - 3rem));
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6875rem 0.875rem 0.6875rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 0.0625rem solid rgba(255, 255, 255, 0.66);
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4.5rem rgba(29, 39, 77, 0.24);
  color: var(--ink);
  backdrop-filter: blur(1.125rem);
  transform: translateX(-50%);
  transition:
    top 0.2s ease,
    width 0.2s ease,
    min-height 0.2s ease,
    padding 0.2s ease,
    border-radius 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-header.is-fixed {
  position: fixed;
  top: 1.75rem;
  z-index: 300;
  box-shadow: 0 1rem 2.75rem rgba(29, 39, 77, 0.22);
}

.brand {
  width: 10.5rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 500;
}

.desktop-nav > a,
.nav-dropdown > summary {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.625rem;
  border-radius: 0.75rem;
  cursor: pointer;
  list-style: none;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: var(--cyan-soft);
  color: var(--blue-900);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown[open] > summary svg {
  transform: rotate(180deg);
}

.nav-popover {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  width: 18.75rem;
  display: grid;
  gap: 0.1875rem;
  padding: 0.75rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

.nav-dropdown:not([open]) .nav-popover {
  display: none;
}

.nav-popover::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  height: 1rem;
}

.nav-popover-title {
  padding: 0.5rem 0.625rem 0.625rem;
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-popover a {
  min-height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.625rem;
  border-radius: 0.6875rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-popover a:hover {
  background: var(--surface);
  color: var(--blue-700);
}

.nav-popover a.featured-link {
  margin-top: 0.25rem;
  background: var(--blue-900);
  color: var(--white);
}

.nav-popover a.featured-link:hover {
  background: var(--blue-700);
}

.dte-action {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--blue-900);
  border-radius: 0.875rem;
  color: var(--white);
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dte-action:hover {
  background: var(--blue-700);
  transform: translateY(-0.125rem);
}

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

.mobile-menu > summary {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--blue-900);
  border-radius: 0.875rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

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

.menu-close {
  display: none;
}

.mobile-menu[open] .menu-open {
  display: none;
}

.mobile-menu[open] .menu-close {
  display: block;
}

.mobile-menu nav {
  position: absolute;
  z-index: 60;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(28rem, calc(100vw - 2rem));
  max-height: calc(100svh - 10.75rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.mobile-group {
  padding: 0.25rem 0;
  border-bottom: 0.0625rem solid var(--line);
}

.mobile-group > summary,
.mobile-group .mobile-parent {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  list-style: none;
}

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

.mobile-group > summary:hover,
.mobile-group[open] > summary {
  background: var(--cyan-soft);
  color: var(--blue-900);
}

.mobile-group[open] > summary svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  gap: 0.125rem;
  padding: 0.125rem 0.25rem 0.625rem;
}

.mobile-submenu a {
  min-height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.6875rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
}

.mobile-submenu a:hover {
  background: var(--surface);
  color: var(--blue-700);
}

.mobile-dte {
  display: block;
  margin-top: 1rem;
  min-height: 3.25rem;
  padding: 1rem;
  background: var(--blue-900);
  border-radius: 0.75rem;
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 11rem;
  padding-bottom: 5.75rem;
}

.hero-copy {
  width: min(46rem, 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--cyan);
  border: 0.1875rem solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 0.3125rem rgba(216, 141, 67, 0.16);
}

.hero h1 {
  max-width: 50rem;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(4rem, 7.3vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-copy > p {
  max-width: 39rem;
  margin: 1.75rem 0 2rem;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.hero-search {
  max-width: 42rem;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: var(--white);
  border: 0.0625rem solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  box-shadow: 0 1.25rem 3rem rgba(29, 39, 77, 0.24);
  color: var(--blue-900);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  padding: 0.75rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.hero-search input::placeholder {
  color: var(--gray);
}

.hero-search button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  background: var(--blue-700);
  border-radius: 0.75rem;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s ease;
}

.hero-search button:hover {
  background: var(--blue-900);
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
  font-size: 0.75rem;
}

.search-suggestions span {
  color: rgba(255, 255, 255, 0.64);
}

.search-suggestions a {
  padding: 0.35rem 0.625rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}

.search-suggestions a:hover {
  background: var(--white);
  color: var(--blue-900);
}

.hero-news {
  width: min(25rem, 100%);
  position: relative;
}

.hero-news > summary::-webkit-details-marker {
  display: none;
}

.hero-notice {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
  background: rgba(42, 55, 106, 0.64);
  border-radius: 1rem;
  backdrop-filter: blur(1rem);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-news:hover .hero-notice,
.hero-news[open] .hero-notice,
.hero-news:focus-within .hero-notice {
  background: rgba(79, 171, 212, 0.84);
  transform: translateY(-0.1875rem);
}

.notice-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: var(--cyan);
  border-radius: 0.75rem;
  color: var(--blue-950);
  flex: 0 0 auto;
}

.hero-notice > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.hero-notice small,
.hero-notice strong {
  display: block;
}

.hero-notice small {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.hero-notice strong {
  font-size: 0.83rem;
  line-height: 1.3;
}

.notice-chevron {
  transition: transform 0.25s ease;
}

.hero-news:hover .notice-chevron,
.hero-news[open] .notice-chevron,
.hero-news:focus-within .notice-chevron {
  transform: rotate(180deg);
}

.hero-news-panel {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: calc(100% + 0.75rem);
  width: min(24rem, 84vw);
  display: grid;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(35, 47, 91, 0.76);
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(29, 39, 77, 0.34);
  backdrop-filter: blur(1.125rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem) scale(0.98);
  transform-origin: left bottom;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.hero-news:hover .hero-news-panel,
.hero-news[open] .hero-news-panel,
.hero-news:focus-within .hero-news-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero-news-card {
  position: relative;
  min-height: 6.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  padding: 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  color: var(--white);
  isolation: isolate;
}

.hero-news-card > img,
.hero-news-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-news-card > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero-news-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(35, 47, 91, 0.94) 0%, rgba(35, 47, 91, 0.62) 72%, rgba(35, 47, 91, 0.38) 100%);
}

.hero-news-copy {
  min-width: 0;
}

.hero-news-copy small,
.hero-news-copy strong {
  display: block;
}

.hero-news-copy small {
  margin-bottom: 0.35rem;
  color: var(--cyan);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-news-copy strong {
  max-width: 18rem;
  font-size: 0.88rem;
  line-height: 1.25;
}

.hero-news-card > svg {
  margin-bottom: 0.1rem;
}

.hero-news-card:hover > img,
.hero-news-card:focus-visible > img {
  transform: scale(1.06);
}

.hero-story {
  width: min(43rem, 64%);
  padding-bottom: 0.5rem;
}

.hero-story > * {
  animation: heroTextIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-story > h1 {
  animation-delay: 0.08s;
}

.hero-story > p {
  animation-delay: 0.16s;
}

.hero-story > .hero-story-controls {
  animation-delay: 0.24s;
}

.hero-story-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.75rem;
  background: var(--cyan);
  border-radius: 999px;
  color: var(--blue-950);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-story h1 {
  max-width: 42rem;
  margin: 1.25rem 0 1rem;
  font-size: clamp(3.4rem, 5.8vw, 6.25rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-story > p {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-story-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-story-dots,
.hero-story-arrows {
  display: flex;
  align-items: center;
}

.hero-story-dots {
  gap: 0.5rem;
}

.hero-story-dots button {
  width: 2.4rem;
  height: 0.25rem;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.hero-story-dots button.is-active {
  width: 4.5rem;
  background: var(--cyan);
}

.hero-story-arrows {
  position: absolute;
  z-index: 5;
  right: clamp(2rem, 10vw, 12.5rem);
  bottom: clamp(4.5rem, 14vh, 8rem);
  gap: 0.75rem;
}

.hero-story-arrows button {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0.0625rem solid rgba(255, 255, 255, 0.32);
  background: rgba(42, 55, 106, 0.36);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-story-arrows button:hover {
  background: var(--blue-700);
  transform: translateY(-0.125rem);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2.5rem;
  height: 0.0625rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-line::after {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  background: var(--cyan);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(180%); }
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.transparency-copy h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.35rem;
  border-bottom: 0.125rem solid var(--cyan);
  color: var(--blue-900);
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 800;
}

.editorial {
  background: var(--white);
}

.news-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(19rem, 0.72fr);
  gap: clamp(1.75rem, 3vw, 3rem);
  align-items: start;
}

.featured-story {
  position: relative;
  height: clamp(42rem, 56vw, 54rem);
  overflow: hidden;
  background: var(--secondary-orange);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
}

.featured-story > a {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.featured-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-story:hover img {
  transform: scale(1.035);
}

.featured-story.is-imageless {
  background:
    radial-gradient(120% 120% at 12% 0%, rgba(237, 195, 75, 0.32), transparent 58%),
    linear-gradient(160deg, var(--secondary-orange) 0%, #a5522a 100%);
}

.story-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(216, 141, 67, 0.03) 34%, rgba(207, 114, 60, 0.72) 70%, rgba(111, 49, 20, 0.94) 100%);
  transition: background 0.35s ease;
}

.featured-story-content {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(119, 53, 22, 0.46);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(0.8rem);
  color: var(--white);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.featured-story-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--blue-950);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.featured-story-tag > span {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--opportunities);
  border-radius: 50%;
}

.featured-story h2 {
  max-width: 46rem;
  margin: 1rem 0 0.65rem;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.featured-story p {
  max-width: 41rem;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.news-meta,
.latest-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.7rem;
}

.news-meta {
  color: rgba(255, 255, 255, 0.72);
}

.latest-meta {
  color: var(--gray);
  font-size: 0.72rem;
}

.latest-list {
  min-width: 0;
}

.latest-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.85rem;
  border-bottom: 0.075rem solid var(--blue-950);
}

.latest-list-heading h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.latest-list-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 0.15rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
}

.latest-item {
  border-bottom: 0.0625rem solid var(--line);
}

.latest-item:last-child {
  border-bottom: 0;
}

.latest-item > a {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 7.1rem;
  padding: 0.9rem 0;
  border-radius: 0.9rem;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    padding 0.25s ease;
}

.latest-thumb {
  width: 5.4rem;
  height: 5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--surface);
  border-radius: 0.8rem;
}

.latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.latest-item:hover .latest-thumb img {
  transform: scale(1.07);
}

.latest-item.is-imageless > a {
  grid-template-columns: minmax(0, 1fr);
}

.latest-copy {
  min-width: 0;
}

.latest-tag {
  display: block;
  overflow: hidden;
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.latest-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0.35rem 0 0.45rem;
  font-family: var(--font-display), sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
  line-height: 1.12;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(207, 114, 60, 0.32), transparent 24rem),
    linear-gradient(180deg, #fffaf4 0%, var(--cyan-soft) 100%);
}

.services::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.5rem;
  content: "";
  background: linear-gradient(90deg, var(--secondary-orange), var(--cyan), var(--secondary-gold));
}

.services .section-heading h2 {
  font-weight: 500;
}

.services-shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 2fr);
  gap: 1.25rem;
}

.service-search-panel {
  position: relative;
  min-height: 27rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: var(--blue-950);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  color: var(--white);
  isolation: isolate;
}

.service-panel-image,
.service-panel-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-panel-image {
  z-index: -1;
  object-fit: cover;
  object-position: center 46%;
  transition: transform 0.65s ease;
}

.service-search-panel:hover .service-panel-image {
  transform: scale(1.025);
}

.service-panel-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 19, 71, 0.9) 0%, rgba(3, 19, 71, 0.48) 45%, rgba(3, 19, 71, 0.88) 100%),
    linear-gradient(90deg, rgba(3, 19, 71, 0.45), transparent 72%);
}

.service-panel-copy,
.service-search-panel form {
  position: relative;
  z-index: 1;
}

.service-panel-kicker {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-search-panel h3 {
  max-width: 20rem;
  margin: 1.25rem 0 0.75rem;
  font-family: var(--font-display), sans-serif;
  font-size: 2.45rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.service-search-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.service-search-panel form {
  min-height: 3.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.45rem 0.45rem 0.45rem 0.875rem;
  background: var(--white);
  border-radius: 0.875rem;
  color: var(--blue-900);
}

.service-search-panel input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.service-search-panel button {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--cyan);
  border-radius: 0.6875rem;
  color: var(--blue-950);
  cursor: pointer;
}

.service-directory {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-audience-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.service-audience-tabs button {
  min-width: 0;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-950);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.service-audience-tabs button:hover {
  border-color: rgba(79, 171, 212, 0.42);
  transform: translateY(-0.125rem);
}

.service-audience-tabs button.is-active {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: var(--white);
}

.service-audience-tabs button.is-active svg {
  color: var(--cyan);
}

.service-audience-tabs button:focus-visible {
  outline: 0.1875rem solid rgba(216, 141, 67, 0.48);
  outline-offset: 0.125rem;
}

.service-audience-heading {
  min-height: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0.25rem 0.25rem;
}

.service-audience-heading,
.service-grid {
  animation: contentSwapIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-audience-heading > div > span {
  color: var(--blue-700);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-audience-heading h3 {
  margin: 0.3rem 0 0.2rem;
  font-family: var(--font-display), sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-audience-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.service-audience-heading > strong {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  background: var(--cyan-soft);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.68rem;
  font-weight: 500;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 6.65rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 0.0625rem solid var(--line);
  border-radius: 1.125rem;
  box-shadow: 0 0.6rem 1.5rem rgba(7, 23, 56, 0.04);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: rgba(79, 171, 212, 0.38);
  box-shadow: var(--shadow-card);
  transform: translateY(-0.25rem);
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  border-radius: 0.875rem;
  color: var(--blue-900);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.service-content {
  min-width: 0;
}

.service-content strong,
.service-content small {
  display: block;
}

.service-content strong {
  margin-bottom: 0.25rem;
  font-family: var(--font-display), sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.service-content small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.card-arrow {
  color: var(--blue-700);
  transition: transform 0.2s ease;
}

.service-card:hover .card-arrow {
  transform: translateX(0.25rem);
}

.service-card-featured {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--white);
}

.service-card-featured .service-icon {
  background: var(--cyan);
  color: var(--blue-950);
}

.service-card-featured .service-content small,
.service-card-featured .card-arrow {
  color: rgba(255, 255, 255, 0.72);
}

.transparency {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--cyan) 58%, #e6a15a 100%);
  color: var(--blue-950);
}

.transparency::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -9rem;
  width: 28rem;
  height: 28rem;
  border: 0.0625rem solid rgba(42, 55, 106, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(42, 55, 106, 0.035),
    0 0 0 8rem rgba(255, 255, 255, 0.035);
}

.transparency-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
  align-items: center;
  gap: 5rem;
}

.kicker.light {
  color: var(--blue-950);
}

.transparency-copy h2 {
  max-width: 42rem;
  font-weight: 500;
}

.transparency-copy > p {
  max-width: 36rem;
  margin: 1.4rem 0 2rem;
  color: rgba(42, 55, 106, 0.82);
}

.transparency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.15rem;
  border-radius: 0.875rem;
  font-size: 0.78rem;
  font-weight: 850;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-0.125rem);
}

.button-light {
  background: var(--white);
  color: var(--blue-900);
}

.button-light:hover {
  background: var(--cyan);
  color: var(--blue-950);
}

.button-ghost {
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.transparency .button-light {
  background: var(--blue-950);
  color: var(--white);
}

.transparency .button-light:hover {
  background: var(--blue-900);
  color: var(--white);
}

.transparency .button-ghost {
  border: 0.0625rem solid rgba(42, 55, 106, 0.42);
  color: var(--blue-950);
}

.transparency .button-ghost:hover {
  background: rgba(42, 55, 106, 0.1);
}

.transparency-cards {
  display: grid;
  gap: 0.75rem;
}

.stat-card {
  min-height: 5.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 0.0625rem solid rgba(42, 55, 106, 0.18);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(0.75rem);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(0.25rem);
}

.stat-card.featured {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-950);
}

.transparency .stat-card:not(.featured) {
  background: var(--blue-950);
  border-color: var(--blue-950);
  color: var(--white);
}

.transparency .stat-card:not(.featured):hover {
  background: var(--blue-900);
}

.stat-card small,
.stat-card strong {
  display: block;
}

.stat-card small {
  margin-bottom: 0.15rem;
  color: inherit;
  font-size: 0.63rem;
  font-weight: 750;
  opacity: 0.68;
  text-transform: uppercase;
}

.stat-card strong {
  font-size: 0.86rem;
}

.official-gazette {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(207, 114, 60, 0.34), transparent 24rem),
    linear-gradient(145deg, #fff8ef 0%, #f5d2aa 100%);
}

.official-gazette-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.25rem;
}

.official-gazette-heading h2 {
  max-width: 42rem;
  margin: 0.75rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.official-gazette-heading p {
  max-width: 39rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.gazette-archive-link {
  background: var(--blue-900);
  color: var(--white);
  flex: 0 0 auto;
}

.gazette-archive-link:hover {
  background: var(--blue-700);
}

.official-gazette-panel {
  overflow: hidden;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 2rem;
  box-shadow: 0 1.5rem 4rem rgba(7, 23, 56, 0.09);
}

.official-gazette-panel-header {
  min-height: 6.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(15rem, 0.65fr);
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--blue-950);
  color: var(--white);
}

.official-gazette-icon {
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  background: var(--cyan);
  border-radius: 1rem;
  color: var(--blue-950);
}

.official-gazette-panel-header small,
.official-gazette-panel-header strong {
  display: block;
}

.official-gazette-panel-header small {
  margin-bottom: 0.2rem;
  color: var(--cyan);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-gazette-panel-header strong {
  font-family: var(--font-display), sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.official-gazette-panel-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.45;
}

.gazette-browser {
  display: grid;
  grid-template-columns: minmax(19rem, 0.78fr) minmax(0, 1.32fr);
  min-height: 42rem;
  background: var(--white);
}

.gazette-calendar-panel {
  padding: clamp(1.25rem, 2.3vw, 2rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 141, 67, 0.12), transparent 18rem),
    #f4f8fb;
  border-right: 0.0625rem solid var(--line);
}

.gazette-calendar-nav {
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.gazette-calendar-nav button {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 50%;
  color: var(--blue-950);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.gazette-calendar-nav button:hover:not(:disabled),
.gazette-calendar-nav button:focus-visible {
  background: var(--blue-950);
  border-color: var(--blue-950);
  color: var(--white);
  transform: translateY(-0.1rem);
}

.gazette-calendar-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gazette-calendar-nav div {
  text-align: center;
}

.gazette-calendar-nav span {
  display: block;
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.gazette-calendar-nav h3 {
  margin: 0.3rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.gazette-weekdays,
.gazette-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.gazette-weekdays {
  margin: 1.5rem 0 0.55rem;
}

.gazette-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gazette-calendar-grid button,
.gazette-calendar-empty {
  min-width: 0;
  aspect-ratio: 1;
}

.gazette-calendar-grid button {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0.0625rem solid transparent;
  border-radius: 0.75rem;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.gazette-calendar-grid button:hover,
.gazette-calendar-grid button:focus-visible {
  background: rgba(216, 141, 67, 0.13);
  border-color: rgba(45, 95, 154, 0.22);
  color: var(--blue-950);
}

.gazette-calendar-grid button.has-publications {
  background: var(--white);
  border-color: rgba(45, 95, 154, 0.2);
  box-shadow: 0 0.35rem 0.8rem rgba(7, 23, 56, 0.06);
  color: var(--blue-950);
}

.gazette-calendar-grid button.has-publications::after {
  position: absolute;
  bottom: 0.28rem;
  left: 50%;
  width: 0.27rem;
  height: 0.27rem;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  transform: translateX(-50%);
}

.gazette-calendar-grid button.is-selected {
  background: var(--blue-950);
  border-color: var(--blue-950);
  box-shadow: 0 0.6rem 1.2rem rgba(42, 55, 106, 0.24);
  color: var(--white);
  transform: translateY(-0.1rem);
}

.gazette-calendar-grid button.is-selected::after {
  background: var(--cyan);
}

.gazette-calendar-grid button small {
  position: absolute;
  top: 0.18rem;
  right: 0.22rem;
  min-width: 0.95rem;
  height: 0.95rem;
  display: grid;
  place-items: center;
  background: var(--cyan);
  border-radius: 999px;
  color: var(--blue-950);
  font-size: 0.48rem;
  font-weight: 900;
}

.gazette-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.gazette-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.gazette-calendar-legend i {
  width: 0.65rem;
  height: 0.65rem;
  background: var(--white);
  border: 0.0625rem solid rgba(45, 95, 154, 0.28);
  border-radius: 0.2rem;
}

.gazette-calendar-legend i.is-selected {
  background: var(--blue-950);
  border-color: var(--blue-950);
}

.gazette-demo-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding-top: 1.1rem;
  border-top: 0.0625rem solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
}

.gazette-demo-note svg {
  color: var(--blue-700);
  flex: 0 0 auto;
}

.gazette-results {
  min-width: 0;
  padding: clamp(1.35rem, 2.7vw, 2.5rem);
}

.gazette-results-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.gazette-results-heading > div > span {
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gazette-results-heading h3 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.gazette-results-heading p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.gazette-results-date {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  background: #eef4f8;
  border-radius: 1rem;
  color: var(--blue-900);
  flex: 0 0 auto;
}

.gazette-results-date strong {
  font-size: 0.64rem;
  line-height: 1;
}

.gazette-filter {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin: 1.6rem -0.2rem 0;
  padding: 0.2rem 0.2rem 0.65rem;
  scrollbar-width: thin;
}

.gazette-filter button {
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 800;
}

.gazette-filter button:hover,
.gazette-filter button:focus-visible,
.gazette-filter button.is-active {
  background: var(--blue-950);
  border-color: var(--blue-950);
  color: var(--white);
}

.gazette-publication-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.gazette-publication {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  border: 0.0625rem solid var(--line);
  border-radius: 1.15rem;
}

.gazette-publication::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  content: "";
  background: var(--blue-700);
}

.gazette-publication.is-extra::before {
  background: var(--secondary-orange);
}

.gazette-publication.is-licitacoes::before {
  background: var(--culture);
}

.gazette-publication.is-pessoal::before {
  background: var(--health);
}

.gazette-publication-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.1rem 1.1rem 0.9rem 1.3rem;
}

.gazette-publication-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 0.8rem;
  color: var(--blue-800);
}

.gazette-publication-labels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gazette-publication-labels span,
.gazette-publication-labels small {
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gazette-publication-labels span {
  color: var(--blue-700);
}

.gazette-publication-labels small {
  padding: 0.22rem 0.42rem;
  background: rgba(216, 141, 67, 0.13);
  border-radius: 999px;
  color: var(--blue-950);
}

.gazette-publication h4 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.gazette-publication-copy > p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.gazette-publication dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.9rem 0 0;
}

.gazette-publication dl div {
  min-width: 4rem;
}

.gazette-publication dt {
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 750;
  text-transform: uppercase;
}

.gazette-publication dd {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0.18rem 0 0;
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
}

.gazette-publication-expand {
  width: 100%;
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem 0.65rem 1.3rem;
  background: var(--white);
  border: 0;
  border-top: 0.0625rem solid var(--line);
  color: var(--blue-800);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 850;
}

.gazette-publication-expand svg {
  transition: transform 0.2s ease;
}

.gazette-publication-expand[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.gazette-publication-detail {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem 1.1rem 1.3rem;
  background: var(--white);
  border-top: 0.0625rem dashed var(--line);
  animation: contentSwapIn 0.28s ease both;
}

.gazette-publication-detail > div {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.gazette-publication-detail svg {
  margin-top: 0.12rem;
  color: var(--blue-700);
  flex: 0 0 auto;
}

.gazette-publication-detail small,
.gazette-publication-detail strong {
  display: block;
}

.gazette-publication-detail small {
  color: var(--muted);
  font-size: 0.54rem;
  text-transform: uppercase;
}

.gazette-publication-detail strong {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  line-height: 1.4;
}

.gazette-empty-state {
  display: grid;
  place-items: center;
  min-height: 13rem;
  padding: 2rem;
  background: #f8fafc;
  border: 0.0625rem dashed #cbd5df;
  border-radius: 1rem;
  text-align: center;
}

.gazette-empty-state svg {
  color: var(--blue-700);
}

.gazette-empty-state h4 {
  margin: 0.65rem 0 0;
  font-size: 1rem;
}

.gazette-empty-state p {
  max-width: 24rem;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.gazette-official-source {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--blue-800);
  font-size: 0.7rem;
  font-weight: 850;
}

.gazette-official-source:hover {
  color: var(--blue-600);
}

.official-gazette-page {
  padding-top: 5rem;
}

.gazette-back-home {
  margin-top: 2rem;
}

.event-agenda {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.event-agenda::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 26rem;
  height: 26rem;
  background: rgba(216, 141, 67, 0.14);
  border-radius: 50%;
  filter: blur(1rem);
}

.agenda-shell {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: #eef4f8;
  border: 0.0625rem solid var(--line);
  border-radius: 2rem;
  box-shadow: 0 1.5rem 4rem rgba(7, 23, 56, 0.08);
}

.agenda-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.agenda-heading h2 {
  max-width: 34rem;
  margin: 0.75rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.agenda-heading p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.agenda-month {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 0.0625rem solid #d6ddd6;
  border-radius: 999px;
  color: var(--blue-950);
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 800;
}

.agenda-week {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 5.25rem);
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 58rem);
  margin: 2.75rem auto 2rem;
}

.agenda-week::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: 0.72rem;
  left: 4%;
  height: 0.075rem;
  background: #cfd7cf;
}

.agenda-day {
  position: relative;
  z-index: 1;
  width: 5.25rem;
  min-height: 8.75rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 1rem 0.5rem 2rem;
  border: 0.0625rem solid rgba(7, 23, 56, 0.06);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 0.65rem 1.6rem rgba(7, 23, 56, 0.04);
  color: var(--blue-950);
  cursor: pointer;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.agenda-day:hover {
  box-shadow: 0 0.8rem 1.8rem rgba(7, 23, 56, 0.1);
  transform: translateY(-0.25rem);
}

.agenda-day.is-active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 1rem 2.25rem rgba(79, 171, 212, 0.22);
  transform: translateY(-0.35rem);
}

.agenda-day-number {
  font-family: var(--font-display), sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.agenda-day-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.agenda-day-dot {
  position: absolute;
  bottom: 0.38rem;
  width: 0.62rem;
  height: 0.62rem;
  background: #aeb8ae;
  border: 0.2rem solid #eef4f8;
  border-radius: 50%;
  box-sizing: content-box;
}

.agenda-day.is-active .agenda-day-dot {
  background: var(--blue-950);
}

.agenda-day.is-active .agenda-day-label {
  color: var(--blue-950);
}

.agenda-detail {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--white);
  border: 0.0625rem solid #dde4dd;
  border-radius: 1.5rem;
  animation: contentSwapIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.agenda-detail-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid var(--line);
}

.agenda-detail-heading span {
  color: var(--blue-700);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-detail-heading h3 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.agenda-detail-heading > strong {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  background: var(--blue-950);
  border-radius: 999px;
  color: var(--white);
  flex: 0 0 auto;
  font-size: 0.68rem;
}

.agenda-event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.25rem;
}

.agenda-event-card {
  position: relative;
  min-height: 0;
  height: 23rem;
  overflow: hidden;
  background: var(--blue-950);
  border: 0.0625rem solid rgba(45, 95, 154, 0.18);
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2.5rem rgba(7, 23, 56, 0.12);
  color: var(--white);
  isolation: isolate;
}

.agenda-event-image,
.agenda-event-image-backdrop,
.agenda-event-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.agenda-event-image-backdrop {
  z-index: -3;
  display: block;
  inset: -2rem;
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
  background-position: center;
  background-size: cover;
  filter: blur(1.4rem) saturate(0.78);
  opacity: 0.62;
  transform: scale(1.06);
}

.agenda-event-image {
  z-index: -2;
  padding: 0;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.65s ease;
}

.agenda-event-card:hover .agenda-event-image {
  transform: scale(1.04);
}

.agenda-event-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(42, 55, 106, 0.08) 25%, rgba(42, 55, 106, 0.62) 62%, rgba(35, 47, 91, 0.96) 100%),
    linear-gradient(90deg, rgba(45, 95, 154, 0.16), transparent 68%);
  transition: background 0.35s ease;
}

.agenda-event-card.is-imageless {
  background:
    radial-gradient(120% 120% at 82% 0%, rgba(79, 171, 212, 0.34), transparent 62%),
    linear-gradient(165deg, var(--blue-900) 0%, var(--blue-950) 100%);
}

.agenda-event-time {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 4.5rem;
  height: 4.5rem;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.94);
  border: 0.0625rem solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 0.75rem 2rem rgba(42, 55, 106, 0.2);
  color: var(--blue-900);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.agenda-event-time svg {
  color: var(--cyan);
}

.agenda-event-category {
  width: fit-content;
  display: inline-flex;
  padding: 0.38rem 0.6rem;
  background: rgba(255, 255, 255, 0.16);
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.agenda-event-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
}

.agenda-event-card h4 {
  max-width: 22rem;
  margin: 0.75rem 0 0.55rem;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.agenda-event-card p {
  max-width: 28rem;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  line-height: 1.5;
}

.agenda-event-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 750;
}

.agenda-event-location svg {
  color: var(--opportunities);
  flex: 0 0 auto;
}

@media (min-width: 69rem) {
  .agenda-event-image {
    padding: 0;
  }
}

@media (hover: hover) {
  .featured-story:hover .story-shade {
    background:
      linear-gradient(180deg, rgba(216, 141, 67, 0.1) 28%, rgba(207, 114, 60, 0.8) 68%, rgba(94, 40, 17, 0.97) 100%);
  }

  .featured-story:hover .featured-story-content {
    background: rgba(142, 61, 23, 0.72);
    border-color: rgba(216, 141, 67, 0.7);
    transform: translateY(-0.3rem);
  }

  .featured-story:hover .featured-story-tag {
    background: var(--cyan);
    color: var(--blue-950);
  }

  .featured-story:hover .featured-story-tag > span {
    background: var(--blue-950);
  }

  .latest-item:hover > a {
    padding-inline: 0.75rem;
    background: linear-gradient(100deg, var(--secondary-orange), var(--cyan));
    color: var(--blue-950);
  }

  .latest-item:hover .latest-tag {
    color: var(--blue-950);
  }

  .latest-item:hover .latest-meta {
    color: rgba(42, 55, 106, 0.74);
  }

  .service-card:hover {
    background: var(--blue-900);
    border-color: var(--blue-900);
    color: var(--white);
  }

  .service-card:hover .service-icon {
    background: var(--cyan);
    color: var(--blue-950);
    transform: rotate(-4deg) scale(1.06);
  }

  .service-card:hover .service-content small {
    color: rgba(255, 255, 255, 0.72);
  }

  .service-card:hover .card-arrow {
    color: var(--cyan);
  }

  .stat-card:not(.featured):hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--blue-950);
  }

  .agenda-day:not(.is-active):hover {
    background: var(--blue-950);
    border-color: var(--blue-950);
    color: var(--white);
  }

  .agenda-day:not(.is-active):hover .agenda-day-label {
    color: rgba(255, 255, 255, 0.74);
  }

  .agenda-day:not(.is-active):hover .agenda-day-dot {
    background: var(--cyan);
  }

  .agenda-event-card:hover .agenda-event-shade {
    background:
      linear-gradient(180deg, rgba(42, 55, 106, 0.16) 18%, rgba(45, 95, 154, 0.72) 58%, rgba(35, 47, 91, 0.98) 100%),
      linear-gradient(90deg, rgba(216, 141, 67, 0.18), transparent 72%);
  }

  .agenda-event-card:hover .agenda-event-time {
    background: var(--cyan);
    color: var(--blue-950);
    transform: scale(1.05);
  }

  .city-video-card:hover {
    background: rgba(42, 55, 106, 0.68);
    border-color: rgba(216, 141, 67, 0.68);
    box-shadow: 0 1.75rem 4.5rem rgba(29, 39, 77, 0.42);
  }
}

@media (min-width: 69rem) and (max-height: 68rem) {
  .event-agenda.section {
    padding: 2.5rem 0;
  }

  .agenda-shell {
    padding: 1.5rem 2rem;
  }

  .agenda-heading h2 {
    margin-top: 0.45rem;
    font-size: clamp(2.5rem, 3.5vw, 3.65rem);
  }

  .agenda-heading p {
    margin-top: 0.55rem;
  }

  .agenda-month {
    min-height: 3rem;
    padding: 0.65rem 0.95rem;
  }

  .agenda-week {
    grid-template-columns: repeat(7, 4.4rem);
    gap: 0.75rem;
    width: min(100%, 50rem);
    margin: 1.35rem auto 1rem;
  }

  .agenda-week::after {
    bottom: 0.55rem;
  }

  .agenda-day {
    width: 4.4rem;
    min-height: 6.2rem;
    padding: 0.65rem 0.35rem 1.45rem;
  }

  .agenda-day-number {
    font-size: 1.4rem;
  }

  .agenda-day-label {
    font-size: 0.64rem;
  }

  .agenda-day-dot {
    bottom: 0.24rem;
    width: 0.5rem;
    height: 0.5rem;
    border-width: 0.16rem;
  }

  .agenda-detail {
    padding: 1rem 1.25rem 1.25rem;
  }

  .agenda-detail-heading {
    padding-bottom: 0.7rem;
  }

  .agenda-detail-heading h3 {
    margin-top: 0.25rem;
    font-size: 1.7rem;
  }

  .agenda-detail-heading > strong {
    min-height: 2rem;
    padding: 0.4rem 0.7rem;
  }

  .agenda-event-list {
    gap: 0.85rem;
    margin-top: 0.85rem;
  }

  .agenda-event-card {
    height: 19rem;
  }

  .agenda-event-time {
    top: 0.8rem;
    right: 0.8rem;
    width: 3.8rem;
    height: 3.8rem;
    gap: 0.28rem;
  }

  .agenda-event-content {
    padding: 1.15rem;
  }

  .agenda-event-card h4 {
    margin: 0.55rem 0 0.4rem;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  }

  .agenda-event-card p {
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
}

.city-newspaper {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(216, 141, 67, 0.24), transparent 28rem),
    linear-gradient(145deg, #232f5b 0%, var(--blue-950) 100%);
  color: var(--white);
}

.city-newspaper::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.35rem;
  content: "";
  background: var(--cyan);
}

.city-newspaper-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.city-newspaper-heading h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.city-newspaper-heading p {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.city-newspaper-badge {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 800;
}

.city-newspaper-badge svg {
  color: var(--cyan);
}

.city-newspaper-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.85fr);
  gap: 1.25rem;
}

.city-newspaper-featured,
.city-newspaper-archive {
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 1.75rem 4rem rgba(29, 39, 77, 0.26);
  backdrop-filter: blur(1rem);
}

.city-newspaper-featured {
  display: grid;
  grid-template-columns: minmax(14rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding: 1.25rem;
}

.city-newspaper-cover-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 210 / 297;
  border-radius: 1.15rem;
  background: var(--blue-950);
  box-shadow: 0 1.5rem 3rem rgba(1, 10, 42, 0.42);
}

.city-newspaper-cover-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.city-newspaper-featured:hover .city-newspaper-cover-frame img {
  transform: scale(1.025);
}

.city-newspaper-cover-frame.is-imageless {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(79, 171, 212, 0.28), transparent 60%),
    linear-gradient(165deg, var(--blue-900) 0%, var(--blue-950) 100%);
}

.city-newspaper-cover-frame > span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0.7rem 1.5rem rgba(42, 55, 106, 0.28);
  color: var(--blue-950);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.city-newspaper-featured-content {
  align-self: center;
  padding: 1.5rem 1.25rem 1.5rem 0;
}

.city-newspaper-edition,
.city-newspaper-archive-card > div > span {
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.city-newspaper-featured h3 {
  max-width: 26rem;
  margin: 0.9rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.city-newspaper-featured-content > p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.58;
}

.city-newspaper-file-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.city-newspaper-file-meta span {
  padding: 0.4rem 0.6rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 750;
}

.city-newspaper-download {
  width: fit-content;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.25);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 850;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.city-newspaper-download.featured {
  min-height: 3.4rem;
  margin-top: 1.5rem;
  padding-inline: 1.15rem;
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--blue-950);
  font-size: 0.75rem;
}

.city-newspaper-download:hover,
.city-newspaper-download:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-950);
  transform: translateY(-0.12rem);
}

.city-newspaper-archive {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.25rem;
}

.city-newspaper-archive-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.2rem 0.75rem;
}

.city-newspaper-archive-heading > span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
}

.city-newspaper-archive-heading > strong {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
}

.city-newspaper-archive-card {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background: rgba(2, 13, 50, 0.34);
}

.city-newspaper-archive-card > img {
  width: 7rem;
  aspect-ratio: 210 / 297;
  display: block;
  border-radius: 0.7rem;
  object-fit: cover;
  box-shadow: 0 0.8rem 1.6rem rgba(1, 10, 42, 0.34);
}

.city-newspaper-archive-card.is-imageless {
  grid-template-columns: minmax(0, 1fr);
}

.city-newspaper-archive-card > div {
  min-width: 0;
  align-self: center;
}

.city-newspaper-archive-card h3 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.city-newspaper-archive-card small {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
}

.city-newspaper-demo-note {
  margin: 0.2rem 0 0;
  padding: 0.9rem 0.25rem 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  line-height: 1.5;
}

.institutional-videos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 8%, rgba(216, 141, 67, 0.14), transparent 25rem),
    #f3f7fb;
}

.institutional-videos-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.institutional-videos-heading h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.institutional-videos-heading p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.institutional-videos-heading > a {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid var(--blue-900);
  border-radius: 999px;
  color: var(--blue-900);
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 850;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.institutional-videos-heading > a:hover,
.institutional-videos-heading > a:focus-visible {
  background: var(--blue-900);
  color: var(--white);
  transform: translateY(-0.12rem);
}

.institutional-videos-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(20rem, 0.72fr);
  align-items: start;
  gap: 1.25rem;
}

.institutional-video-featured {
  overflow: hidden;
  border: 0.0625rem solid rgba(45, 95, 154, 0.14);
  border-radius: 1.75rem;
  background: var(--blue-950);
  box-shadow: 0 1.75rem 4rem rgba(7, 23, 56, 0.18);
  color: var(--white);
  animation: contentSwapIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.institutional-video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1d274d;
}

.institutional-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.institutional-video-featured-copy {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.institutional-video-featured-copy > span {
  color: var(--cyan);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.institutional-video-featured-copy h3 {
  margin: 0.65rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.institutional-video-featured-copy p {
  max-width: 46rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.55;
}

.institutional-video-featured-copy > a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
}

.institutional-video-featured-copy > a:hover,
.institutional-video-featured-copy > a:focus-visible {
  color: var(--cyan);
}

.institutional-video-playlist {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 0.0625rem solid var(--line);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.4rem 3.5rem rgba(7, 23, 56, 0.09);
  backdrop-filter: blur(1rem);
}

.institutional-video-playlist-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.25rem 0.65rem;
}

.institutional-video-playlist-heading > span {
  color: var(--blue-950);
  font-size: 0.74rem;
  font-weight: 850;
}

.institutional-video-playlist-heading > strong {
  color: var(--muted);
  font-size: 0.6rem;
}

.institutional-video-item {
  width: 100%;
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem;
  border: 0.0625rem solid transparent;
  border-radius: 1rem;
  background: transparent;
  color: var(--blue-950);
  cursor: pointer;
  text-align: left;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.institutional-video-item:hover,
.institutional-video-item:focus-visible {
  background: rgba(216, 141, 67, 0.1);
  border-color: rgba(45, 95, 154, 0.18);
}

.institutional-video-item.is-active {
  background: var(--blue-950);
  border-color: var(--blue-950);
  color: var(--white);
  transform: translateX(-0.2rem);
}

.institutional-video-thumb {
  position: relative;
  overflow: hidden;
  width: 8rem;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 0.75rem;
  background: var(--blue-950);
}

.institutional-video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.institutional-video-thumb > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(42, 55, 106, 0.82);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.institutional-video-item.is-active .institutional-video-thumb > span {
  background: var(--cyan);
  color: var(--blue-950);
}

.institutional-video-item-copy {
  min-width: 0;
  display: block;
}

.institutional-video-item-copy small,
.institutional-video-item-copy strong,
.institutional-video-item-copy > span {
  display: block;
}

.institutional-video-item-copy small {
  color: var(--blue-700);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.institutional-video-item.is-active .institutional-video-item-copy small {
  color: var(--cyan);
}

.institutional-video-item-copy strong {
  overflow: hidden;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.institutional-video-item-copy > span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.58rem;
}

.institutional-video-item.is-active .institutional-video-item-copy > span {
  color: rgba(255, 255, 255, 0.58);
}

.city-section {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6.5rem 0;
  background: var(--blue-950);
  color: var(--white);
  isolation: isolate;
}

.city-video-stage,
.city-video-overlay,
.city-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.city-video-stage {
  z-index: -3;
  background: var(--blue-950);
}

.city-video {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 1s ease,
    transform 7s ease;
}

.city-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.city-video-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(42, 55, 106, 0.88) 0%, rgba(45, 95, 154, 0.64) 44%, rgba(42, 55, 106, 0.28) 100%),
    linear-gradient(180deg, rgba(29, 39, 77, 0.2) 0%, rgba(42, 55, 106, 0.7) 100%);
}

.city-video-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(25rem, 0.96fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 4rem);
}

.city-video-card {
  width: 100%;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(42, 55, 106, 0.44);
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  box-shadow: 0 1.5rem 4rem rgba(29, 39, 77, 0.3);
  backdrop-filter: blur(1rem);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.city-video-card h2 {
  max-width: 28rem;
  margin: 1rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.85rem, 2.6vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.city-video-card p {
  max-width: 36rem;
  margin: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.city-video-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.city-video-indicator span {
  width: 2rem;
  height: 0.2rem;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.city-video-indicator span.is-active {
  width: 3.5rem;
  background: var(--cyan);
}

.city-crest-experience {
  position: relative;
  min-height: 38rem;
  display: grid;
  place-items: center;
  perspective: 75rem;
}

.city-crest-reveal {
  min-width: 0;
}

.city-crest-heading {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: min(26rem, 100%);
  text-align: center;
  transform: translateX(-50%);
}

.city-crest-heading span,
.city-crest-heading strong {
  display: block;
}

.city-crest-heading span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-crest-heading strong {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.45;
}

.city-crest-object {
  position: relative;
  z-index: 2;
  width: min(22rem, 82vw);
  aspect-ratio: 2 / 3;
  margin-top: 2.5rem;
  transform-style: preserve-3d;
  animation: city-crest-float 6.5s ease-in-out infinite;
  filter: drop-shadow(0 2.5rem 2.4rem rgba(0, 0, 0, 0.32));
  transition: filter 0.35s ease;
}

.city-crest-experience:not(.is-interacting):hover .city-crest-object {
  animation-play-state: paused;
  transform: rotateY(-7deg) rotateX(2deg) translateY(-0.4rem);
  filter: drop-shadow(1.4rem 2.6rem 2.6rem rgba(0, 0, 0, 0.36));
}

.city-crest-experience.is-interacting .city-crest-object {
  animation-play-state: paused;
}

.city-crest-aura {
  position: absolute;
  inset: 13% 2% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 202, 211, 0.25), transparent 69%);
  filter: blur(1.3rem);
  transform: translateZ(-2rem);
}

.city-crest-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.city-crest-hotspot {
  position: absolute;
  z-index: 3;
  padding: 0;
  border: 0;
  border-radius: 1.2rem;
  background: transparent;
  cursor: pointer;
}

.city-crest-hotspot::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 0.12rem solid transparent;
  border-radius: inherit;
  background: rgba(22, 209, 218, 0);
  box-shadow: 0 0 0 0 rgba(22, 209, 218, 0);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.city-crest-hotspot > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border: 0.14rem solid var(--white);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 0.32rem rgba(7, 42, 143, 0.48),
    0 0 1.2rem rgba(22, 209, 218, 0.85);
  transform: translate(-50%, -50%);
}

.city-crest-hotspot > span::after {
  position: absolute;
  inset: -0.5rem;
  content: "";
  border: 0.08rem solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: city-crest-pulse 2.2s ease-out infinite;
}

.city-crest-hotspot:hover::before,
.city-crest-hotspot:focus-visible::before,
.city-crest-hotspot.is-active::before {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(19, 202, 211, 0.12);
  box-shadow:
    inset 0 0 1.5rem rgba(19, 202, 211, 0.16),
    0 0 1.3rem rgba(19, 202, 211, 0.22);
}

.city-crest-hotspot:focus-visible {
  outline: 0.2rem solid var(--cyan);
  outline-offset: 0.2rem;
}

.city-crest-hotspot.is-coroa {
  inset: 5% 13% auto;
  height: 23%;
}

.city-crest-hotspot.is-triangulo {
  top: 31%;
  left: 23%;
  width: 28%;
  height: 25%;
}

.city-crest-hotspot.is-militar {
  top: 31%;
  right: 22%;
  width: 28%;
  height: 25%;
}

.city-crest-hotspot.is-industria {
  top: 57%;
  left: 23%;
  width: 55%;
  height: 25%;
}

.city-crest-popover {
  position: absolute;
  top: 50%;
  right: -1rem;
  z-index: 8;
  width: min(18rem, 48%);
  padding: 1.45rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 1.35rem;
  background: rgba(2, 20, 78, 0.94);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(1.15rem);
  animation: city-crest-popover-in 0.25s ease both;
}

.city-crest-popover > span {
  display: block;
  padding-right: 2rem;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.city-crest-popover h3 {
  margin: 0.55rem 0 0;
  padding-right: 1.75rem;
  color: var(--white);
  font-family: var(--font-display), sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

.city-crest-popover p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.55;
}

.city-crest-popover-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.city-crest-popover-close:hover,
.city-crest-popover-close:focus-visible {
  background: var(--cyan);
  color: var(--blue-950);
}

@keyframes city-crest-float {
  0%,
  100% {
    transform: rotateY(-4deg) rotateX(1deg) translateY(0);
  }

  50% {
    transform: rotateY(5deg) rotateX(-1deg) translateY(-0.75rem);
  }
}

@keyframes city-crest-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.55);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes city-crest-popover-in {
  from {
    opacity: 0;
    transform: translate(0.8rem, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

.footer {
  padding-top: 4.5rem;
  background: #020d32;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 1.15fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand-lockup {
  width: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand-crest {
  width: 9rem;
  height: 6.9rem;
  display: block;
  overflow: hidden;
  filter: drop-shadow(0 0.75rem 1.25rem rgba(0, 0, 0, 0.25));
}

.footer-brand-crest img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand-wordmark {
  margin-top: 0.35rem;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-align: center;
  text-transform: uppercase;
}

.footer-brand-wordmark span,
.footer-brand-wordmark strong {
  display: block;
}

.footer-brand-wordmark strong {
  margin-top: 0.15rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-brand p {
  max-width: 16rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-social-heading,
.inner-footer-social-heading {
  display: block;
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-social-band,
.inner-footer-social-band {
  grid-column: 3 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.125rem solid var(--cyan);
}

.footer-social-links,
.inner-footer-social-links {
  width: min(100%, 36rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.footer-social-links .social-link,
.inner-footer-social-links .social-link {
  width: 100%;
  min-height: 3.75rem;
  gap: 0.75rem;
  justify-content: center;
  padding: 0.7rem 0.85rem;
  background: rgba(216, 141, 67, 0.18);
  border-color: rgba(216, 141, 67, 0.42);
}

.footer-social-links .social-glyph,
.inner-footer-social-links .social-glyph {
  flex: 0 0 auto;
  margin-inline: 0.2rem;
  transform: scale(1.65);
  transform-origin: center;
}

.footer-social-links .social-link span,
.inner-footer-social-links .social-link span {
  font-size: 0.72rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.footer-column h3 {
  margin: 0 0 0.75rem;
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column > a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer-column > a:hover {
  color: var(--white);
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.contact-link svg {
  margin-top: 0.1rem;
  color: var(--cyan);
  flex: 0 0 auto;
}

.footer-bottom {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media (max-width: 78rem) {
  .floating-header {
    gap: 0.75rem;
  }

  .desktop-nav {
    gap: 0;
    font-size: 0.78rem;
  }

  .desktop-nav > a,
  .nav-dropdown > summary {
    padding-inline: 0.42rem;
  }

  .dte-action {
    padding-inline: 0.75rem;
  }
}

@media (max-width: 68rem) {
  .desktop-nav,
  .dte-action {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    align-items: flex-end;
  }

  .hero-news {
    width: min(25rem, 100%);
  }

  .hero-story {
    width: min(39rem, 72%);
  }

  .news-showcase {
    grid-template-columns: 1fr;
  }

  .featured-story {
    height: 40rem;
  }

  .latest-list {
    max-width: none;
  }

  .services-shell {
    grid-template-columns: 1fr;
  }

  .service-search-panel {
    min-height: 21rem;
  }

  .transparency-wrap {
    gap: 2.5rem;
  }

  .official-gazette-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .gazette-browser {
    grid-template-columns: 1fr;
  }

  .gazette-calendar-panel {
    border-right: 0;
    border-bottom: 0.0625rem solid var(--line);
  }

  .gazette-calendar-nav,
  .gazette-weekdays,
  .gazette-calendar-grid,
  .gazette-calendar-legend,
  .gazette-demo-note {
    width: min(100%, 32rem);
    margin-left: auto;
    margin-right: auto;
  }

  .agenda-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agenda-event-card {
    height: 22rem;
  }

  .city-newspaper-showcase {
    grid-template-columns: 1fr;
  }

  .city-newspaper-featured {
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  }

  .city-newspaper-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-newspaper-archive-heading,
  .city-newspaper-demo-note {
    grid-column: 1 / -1;
  }

  .institutional-videos-showcase {
    grid-template-columns: 1fr;
  }

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

  .institutional-video-playlist-heading {
    grid-column: 1 / -1;
  }

  .city-video-content {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    gap: 1.5rem;
  }

  .city-crest-object {
    width: min(19rem, 82vw);
  }

  .city-crest-popover {
    right: -0.5rem;
    width: min(16rem, 54%);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-column.contact {
    grid-column: 2 / 4;
  }

  .footer-social-band {
    grid-column: 2 / -1;
  }
}

@media (max-width: 48rem) {
  .container {
    width: min(100% - 2rem, 75rem);
  }

  .utility-inner > span:first-child,
  .utility-label,
  .utility-actions > svg {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .utility-toolbar {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .utility-social-links {
    padding-right: 0.5rem;
  }

  .utility-actions {
    width: auto;
    justify-content: flex-end;
    gap: 0.4rem;
  }

  .utility-actions a {
    margin-left: 0.25rem;
  }

  .floating-header {
    top: 3.5rem;
    width: calc(100% - 2rem);
    min-height: 4.75rem;
    padding: 0.5rem 0.5rem 0.5rem 0.875rem;
    border-radius: 1rem;
  }

  .floating-header.is-fixed {
    top: 1.25rem;
  }

  .brand {
    width: 9rem;
    height: 3.4rem;
  }

  .hero-background {
    object-position: 35% center;
  }

  .hero-background.is-lowered {
    top: 2.75rem;
    height: calc(100% - 2.75rem);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(42, 55, 106, 0.34) 0%, rgba(45, 95, 154, 0.12) 38%, rgba(42, 55, 106, 0.82) 100%);
  }

  .hero-content {
    padding-top: 9rem;
    padding-bottom: 4rem;
  }

  .hero-story {
    width: 100%;
  }

  .hero-story > p {
    max-width: 32rem;
    font-size: 0.94rem;
  }

  .hero-story-controls {
    width: calc(100% - 7.5rem);
    display: block;
    margin-top: 1.5rem;
  }

  .hero-story-dots {
    width: 100%;
    min-width: 0;
  }

  .hero-story-dots button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
  }

  .hero-story-dots button.is-active {
    width: auto;
    flex-grow: 1.8;
  }

  .hero-story-arrows {
    position: absolute;
    right: clamp(1rem, 4vw, 1.5rem);
    bottom: 1.25rem;
    gap: 0.5rem;
  }

  .hero-story-arrows button {
    width: 3rem;
    height: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5rem);
  }

  .hero-copy > p {
    font-size: 0.96rem;
  }

  .hero-search {
    min-height: 4rem;
    padding-left: 1rem;
  }

  .hero-search button {
    min-height: 3rem;
    padding-inline: 1rem;
  }

  .hero-search button svg {
    display: none;
  }

  .hero-news {
    width: 100%;
    margin: 2.2rem 0 0;
  }

  .hero-news-panel {
    position: static;
    width: 100%;
    display: none;
    margin-top: 0.75rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .hero-news[open] .hero-news-panel {
    display: grid;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .city-section {
    padding: 4.5rem 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 2rem;
  }

  .text-link {
    margin-top: 1.25rem;
  }

  .section-heading h2,
  .transparency-copy h2,
  .official-gazette-heading h2,
  .agenda-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .city-video-card h2 {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .featured-story {
    height: 38rem;
  }

  .featured-story-content {
    padding: 1.5rem;
  }

  .featured-story h2 {
    font-size: 2.25rem;
  }

  .latest-item > a {
    grid-template-columns: 4.25rem minmax(0, 1fr);
  }

  .latest-thumb {
    width: 4.25rem;
    height: 4.25rem;
  }

  .service-search-panel {
    min-height: 24rem;
    padding: 1.5rem;
  }

  .service-audience-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .transparency-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .official-gazette-panel {
    border-radius: 1.35rem;
  }

  .official-gazette-panel-header {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1rem;
  }

  .official-gazette-panel-header p {
    grid-column: 1 / -1;
  }

  .gazette-calendar-grid button,
  .gazette-calendar-empty {
    aspect-ratio: auto;
    min-height: 3.1rem;
  }

  .agenda-shell {
    padding: 1.25rem;
    border-radius: 1.35rem;
  }

  .agenda-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .agenda-month {
    min-height: 3rem;
  }

  .agenda-week {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    margin: 2rem -0.25rem 1.5rem;
    padding: 0.35rem 0.25rem 0.75rem;
    scrollbar-width: thin;
  }

  .agenda-week::after {
    display: none;
  }

  .agenda-day {
    min-width: 5.35rem;
    min-height: 8rem;
    padding-bottom: 1.35rem;
  }

  .agenda-day-dot {
    bottom: 0.45rem;
    border-color: rgba(255, 255, 255, 0.86);
  }

  .agenda-day.is-active .agenda-day-dot {
    border-color: var(--cyan);
  }

  .agenda-detail-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .agenda-event-list {
    grid-template-columns: 1fr;
  }

  .agenda-event-card {
    height: 24rem;
  }

  .city-newspaper-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .city-newspaper-featured {
    grid-template-columns: 1fr;
  }

  .city-newspaper-cover-frame {
    width: min(100%, 19rem);
    margin-inline: auto;
  }

  .city-newspaper-featured-content {
    padding: 0.5rem 0.5rem 1rem;
  }

  .city-newspaper-archive {
    grid-template-columns: 1fr;
  }

  .city-newspaper-archive-heading,
  .city-newspaper-demo-note {
    grid-column: auto;
  }

  .city-newspaper-download.featured {
    width: 100%;
  }

  .institutional-videos-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .institutional-videos-heading > a {
    width: 100%;
  }

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

  .institutional-video-playlist-heading {
    grid-column: auto;
  }

  .institutional-video-item {
    grid-template-columns: 6.75rem minmax(0, 1fr);
  }

  .institutional-video-item.is-active {
    transform: none;
  }

  .institutional-video-thumb {
    width: 6.75rem;
  }

  .city-section {
    min-height: 42rem;
  }

  .city-video-content {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .city-video-card {
    width: 100%;
    padding: 2rem;
    border-radius: 1.5rem;
  }

  .city-video-card p {
    font-size: 0.9rem;
  }

  .city-crest-experience {
    min-height: 41rem;
  }

  .city-crest-object {
    width: min(21rem, 84vw);
  }

  .city-crest-popover {
    top: auto;
    right: 50%;
    bottom: 0;
    width: min(29rem, calc(100% - 1rem));
    transform: translateX(50%);
  }

  @keyframes city-crest-popover-in {
    from {
      opacity: 0;
      transform: translate(50%, 0.8rem);
    }

    to {
      opacity: 1;
      transform: translate(50%, 0);
    }
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .footer-column.contact {
    grid-column: 1 / -1;
  }

  .footer-social-band {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.25rem 0;
  }
}

@media (max-width: 31rem) {
  .utility-actions a {
    font-size: 0;
  }

  .utility-actions a svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  .utility-social-links .social-link {
    width: 1.75rem;
    height: 1.75rem;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero-search button {
    font-size: 0;
  }

  .hero-search button svg {
    display: block;
  }

  .search-suggestions span {
    width: 100%;
  }

  .service-search-panel h3 {
    font-size: 2.1rem;
  }

  .service-audience-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gazette-calendar-panel,
  .gazette-results {
    padding: 1rem;
  }

  .gazette-calendar-grid,
  .gazette-weekdays {
    gap: 0.2rem;
  }

  .gazette-calendar-grid button {
    min-height: 2.65rem;
    border-radius: 0.6rem;
  }

  .gazette-calendar-grid button small {
    top: 0.1rem;
    right: 0.12rem;
    min-width: 0.8rem;
    height: 0.8rem;
  }

  .gazette-results-date {
    display: none;
  }

  .gazette-publication-main {
    grid-template-columns: 1fr;
  }

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

  .footer-column.contact {
    grid-column: auto;
  }

  .footer-social-links .social-link,
  .inner-footer-social-links .social-link {
    min-height: 3.5rem;
    gap: 0.35rem;
    padding-inline: 0.4rem;
  }

  .footer-social-links .social-link span,
  .inner-footer-social-links .social-link span {
    font-size: 0.58rem;
  }
}

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

/* Institutional inner pages */

.inner-site {
  min-height: 100svh;
  background: var(--surface);
  color: var(--ink);
}

.inner-utility {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
}

.inner-utility-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inner-utility-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.inner-social-links {
  padding-right: 1rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

.inner-social-links .social-link {
  width: 1.85rem;
  height: 1.85rem;
}

.inner-utility-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 700;
}

.inner-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0.0625rem solid var(--line);
  box-shadow: 0 0.7rem 2rem rgba(7, 23, 56, 0.06);
  backdrop-filter: blur(1rem);
}

.inner-header-content {
  min-height: 6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.inner-brand {
  width: 10.5rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.inner-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.inner-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  margin-left: auto;
}

.inner-desktop-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.7rem;
  border-radius: 0.75rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.inner-desktop-nav a:hover {
  background: var(--cyan-soft);
  color: var(--blue-900);
}

.inner-search-link,
.inner-mobile-menu > summary {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  background: var(--blue-900);
  border-radius: 0.85rem;
  color: var(--white);
  flex: 0 0 auto;
}

.inner-search-link:hover {
  background: var(--blue-700);
}

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

.inner-mobile-menu > summary {
  cursor: pointer;
  list-style: none;
}

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

.inner-mobile-menu nav {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(23rem, calc(100vw - 2rem));
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.inner-mobile-menu nav a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.inner-mobile-menu nav a:hover {
  background: var(--surface);
  color: var(--blue-700);
}

.inner-hero {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--blue-950);
  color: var(--white);
  isolation: isolate;
}

.inner-hero > img,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: center 44%;
}

.inner-hero.is-imageless,
.inner-site .inner-hero.is-imageless {
  min-height: 24rem;
  background:
    radial-gradient(110% 130% at 8% 0%, rgba(79, 171, 212, 0.32), transparent 60%),
    linear-gradient(150deg, var(--blue-900) 0%, var(--blue-950) 100%);
}

.inner-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(42, 55, 106, 0.94) 0%, rgba(45, 95, 154, 0.79) 48%, rgba(42, 55, 106, 0.34) 100%),
    linear-gradient(180deg, rgba(42, 55, 106, 0.04), rgba(42, 55, 106, 0.76));
}

.inner-hero-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.4rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.inner-breadcrumb a:hover {
  color: var(--cyan);
}

.inner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(216, 141, 67, 0.16);
}

.inner-hero h1,
.search-hero h1 {
  max-width: 58rem;
  margin: 1.15rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.inner-hero-content > p {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.inner-primary-action {
  min-height: 3.25rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.8rem 1.1rem;
  background: var(--cyan);
  border-radius: 0.85rem;
  color: var(--blue-950);
  font-size: 0.78rem;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease;
}

.inner-primary-action:hover {
  background: var(--white);
  transform: translateY(-0.12rem);
}

.inner-page-layout {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  align-items: start;
  gap: 3.5rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.inner-sidebar {
  position: sticky;
  top: 1.5rem;
  overflow: hidden;
  display: grid;
  padding: 0.7rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
}

.inner-sidebar-title {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
  padding: 0.8rem;
  background: var(--blue-950);
  border-radius: 0.85rem;
  color: var(--white);
  font-size: 0.78rem;
}

.inner-sidebar-title svg {
  color: var(--cyan);
}

.inner-sidebar > a {
  min-height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.7rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
  transition: background 0.2s ease, color 0.2s ease;
}

.inner-sidebar > a:hover {
  background: var(--cyan-soft);
  color: var(--blue-900);
}

.inner-sidebar > a svg {
  flex: 0 0 auto;
}

.inner-sidebar > .inner-sidebar-all {
  margin-top: 0.35rem;
  background: var(--surface);
  color: var(--blue-900);
  font-weight: 750;
}

.inner-main-content {
  min-width: 0;
}

.inner-embed-shell {
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
}

.inner-embed-shell iframe {
  width: 100%;
  height: clamp(35rem, 66vw, 47rem);
  display: block;
  border: 0;
}

.inner-section {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(7, 23, 56, 0.055);
}

.inner-section + .inner-section {
  margin-top: 1.25rem;
}

.inner-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.inner-section-heading > span {
  width: 0.28rem;
  height: 2.1rem;
  margin-top: 0.15rem;
  background: var(--cyan);
  border-radius: 999px;
  flex: 0 0 auto;
}

.inner-section-heading h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.inner-section-heading p {
  max-width: 47rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.inner-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.inner-content-card {
  min-height: 8.2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem;
  background: var(--surface);
  border: 0.0625rem solid transparent;
  border-radius: 1rem;
}

.inner-content-card.is-link {
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.inner-content-card.is-link:hover {
  background: var(--white);
  border-color: var(--cyan);
  transform: translateY(-0.15rem);
}

.inner-card-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 0.75rem;
  color: var(--blue-700);
  box-shadow: 0 0.4rem 1rem rgba(7, 23, 56, 0.06);
}

.inner-card-copy {
  min-width: 0;
}

.inner-card-copy small,
.inner-card-copy strong,
.inner-card-copy > span {
  display: block;
}

.inner-card-copy small {
  margin-bottom: 0.3rem;
  color: var(--blue-700);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inner-card-copy strong {
  font-family: var(--font-display), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
}

.inner-card-copy > span {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.42;
}

.inner-card-arrow {
  margin-top: 0.2rem;
  color: var(--blue-700);
  flex: 0 0 auto;
}

.inner-note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  background: var(--cyan-soft);
  border-left: 0.25rem solid var(--cyan);
  border-radius: 0 0.8rem 0.8rem 0;
  color: var(--blue-950);
  font-size: 0.78rem;
}

.inner-back-home {
  margin-top: 1.5rem;
}

.inner-back-home a {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.inner-footer {
  padding-top: 4rem;
  background: #020d32;
  color: var(--white);
}

.inner-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.9fr 1.35fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.inner-footer-brand img {
  width: 8.5rem;
  height: 8.5rem;
  object-fit: contain;
  object-position: left center;
}

.inner-footer-brand p {
  max-width: 15rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.inner-footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  font-style: normal;
}

.inner-footer-column h2 {
  margin: 0 0 0.65rem;
  color: var(--cyan);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-footer-column a,
.inner-footer-column span {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.73rem;
  line-height: 1.4;
}

.inner-footer-column a:hover {
  color: var(--white);
}

.inner-footer-column svg {
  margin-top: 0.05rem;
  color: var(--cyan);
  flex: 0 0 auto;
}

.inner-footer-bottom {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
}

.inner-footer-bottom a:hover {
  color: var(--white);
}

.search-hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 141, 67, 0.22), transparent 25rem),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
  color: var(--white);
}

.search-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.search-hero .container > p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.portal-search-form {
  max-width: 56rem;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.55rem 0.55rem 0.55rem 1.2rem;
  background: var(--white);
  border-radius: 1rem;
  color: var(--blue-900);
  box-shadow: 0 1.5rem 3.5rem rgba(29, 39, 77, 0.22);
}

.portal-search-form input {
  min-width: 0;
  flex: 1;
  padding: 0.8rem 0;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.portal-search-form button {
  min-height: 3.35rem;
  padding: 0.8rem 1.25rem;
  border: 0;
  background: var(--blue-900);
  border-radius: 0.75rem;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.search-results-section {
  padding-top: 3.5rem;
  padding-bottom: 6rem;
}

.search-results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-results-heading h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.search-results-heading span {
  color: var(--muted);
  font-size: 0.75rem;
}

.search-results-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.search-results-list a {
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 1.1rem;
  box-shadow: 0 0.8rem 2rem rgba(7, 23, 56, 0.045);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.search-results-list a:hover {
  border-color: var(--cyan);
  transform: translateY(-0.15rem);
}

.search-results-list small,
.search-results-list strong {
  display: block;
}

.search-results-list small {
  margin-bottom: 0.4rem;
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.search-results-list strong {
  font-family: var(--font-display), sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.search-results-list p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.search-results-list svg {
  color: var(--blue-700);
  flex: 0 0 auto;
}

.search-empty {
  padding: 4rem 2rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 1.5rem;
  text-align: center;
}

.search-empty svg {
  color: var(--cyan);
}

.search-empty h2 {
  margin: 1rem 0 0;
}

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

.search-empty a {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--blue-900);
  border-radius: 0.75rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 68rem) {
  .inner-desktop-nav {
    display: none;
  }

  .inner-search-link {
    margin-left: auto;
  }

  .inner-mobile-menu {
    display: block;
  }

  .inner-page-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .inner-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem;
  }

  .inner-sidebar-title,
  .inner-sidebar > .inner-sidebar-all {
    grid-column: 1 / -1;
  }

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

  .inner-footer-social-band {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  .inner-utility-content > span {
    display: none;
  }

  .inner-utility-content {
    justify-content: space-between;
  }

  .inner-utility-actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .inner-social-links {
    padding-right: 0.5rem;
  }

  .inner-header-content {
    min-height: 5rem;
    gap: 0.6rem;
  }

  .inner-brand {
    width: 8.75rem;
    height: 3.25rem;
  }

  .inner-hero {
    min-height: 27rem;
  }

  .inner-hero-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .inner-breadcrumb {
    margin-bottom: 1.75rem;
  }

  .inner-hero h1,
  .search-hero h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .inner-page-layout {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .inner-sidebar {
    grid-template-columns: 1fr;
  }

  .inner-sidebar-title,
  .inner-sidebar > .inner-sidebar-all {
    grid-column: auto;
  }

  .inner-section {
    padding: 1.25rem;
    border-radius: 1.15rem;
  }

  .inner-card-grid,
  .search-results-list {
    grid-template-columns: 1fr;
  }

  .inner-content-card {
    min-height: 0;
  }

  .inner-embed-shell {
    border-radius: 1.15rem;
  }

  .inner-embed-shell iframe {
    height: 38rem;
  }

  .inner-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .inner-footer-social-band {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.25rem 0;
  }

  .search-hero {
    padding: 3.5rem 0 3rem;
  }

  .portal-search-form {
    min-height: 4rem;
    padding-left: 1rem;
  }

  .portal-search-form button {
    padding-inline: 0.9rem;
    font-size: 0.74rem;
  }

  .search-results-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Editorial system for institutional pages */
.inner-site {
  background: #f5f8fc;
}

.inner-site main {
  overflow: clip;
}

.inner-site .inner-hero {
  min-height: 34rem;
}

.inner-site .inner-hero > img {
  transform: scale(1.015);
}

.inner-site .inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(42, 55, 106, 0.96) 0%, rgba(45, 95, 154, 0.8) 46%, rgba(42, 55, 106, 0.22) 100%),
    linear-gradient(180deg, rgba(42, 55, 106, 0.08), rgba(42, 55, 106, 0.74));
}

.inner-page-meta {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  border-bottom: 0.0625rem solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.inner-page-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.inner-page-meta svg {
  color: var(--blue-700);
}

.inner-site .inner-page-layout {
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  padding-top: 3.5rem;
}

.inner-site .inner-sidebar {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.inner-site .inner-sidebar-title {
  min-height: auto;
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  border-bottom: 0.125rem solid var(--blue-950);
  border-radius: 0;
  background: transparent;
  color: var(--blue-950);
}

.inner-sidebar-toc,
.inner-sidebar-related {
  display: grid;
}

.inner-sidebar-toc a {
  min-height: 2.75rem;
  display: grid;
  grid-template-columns: 1.65rem minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  border-bottom: 0.0625rem solid rgba(7, 23, 56, 0.1);
  color: var(--blue-950);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.3;
  transition: color 0.2s ease, padding 0.2s ease;
}

.inner-sidebar-toc a span {
  color: var(--blue-700);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.inner-sidebar-toc a:hover {
  padding-left: 0.3rem;
  color: var(--blue-700);
}

.inner-sidebar-related {
  gap: 0.2rem;
  margin-top: 2rem;
}

.inner-sidebar-related > span {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-sidebar-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.3;
}

.inner-sidebar-related a:hover {
  color: var(--blue-700);
}

.inner-site .inner-sidebar > .inner-sidebar-all {
  min-height: auto;
  margin-top: 1.5rem;
  padding: 0.8rem 0;
  border-top: 0.0625rem solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--blue-700);
}

.inner-article-lead {
  margin-bottom: 1rem;
  padding: 0 0 3.5rem;
  border-bottom: 0.0625rem solid var(--line);
}

.inner-editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-editorial-kicker::before {
  width: 1.7rem;
  height: 0.15rem;
  content: "";
  border-radius: 999px;
  background: var(--cyan);
}

.inner-article-lead > p {
  max-width: 52rem;
  margin: 1.15rem 0 0;
  color: var(--blue-950);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.inner-site .inner-embed-shell {
  margin: 2rem 0 3rem;
}

.inner-site .inner-section {
  padding: clamp(3rem, 6vw, 5.25rem) 0;
  border: 0;
  border-bottom: 0.0625rem solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: 2rem;
}

.inner-site .inner-section + .inner-section {
  margin-top: 0;
}

.inner-site .inner-section-heading {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem;
}

.inner-site .inner-section-heading > span {
  width: auto;
  height: auto;
  margin: 0.25rem 0 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.inner-site .inner-section-heading h2 {
  max-width: 50rem;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  line-height: 0.96;
}

.inner-site .inner-section-heading p {
  max-width: 51rem;
  margin-top: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.inner-site .inner-card-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.25rem;
  border-top: 0.0625rem solid rgba(7, 23, 56, 0.12);
}

.inner-site .inner-content-card {
  min-height: 7rem;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border: 0;
  border-bottom: 0.0625rem solid rgba(7, 23, 56, 0.12);
  border-radius: 0;
  background: transparent;
}

.inner-site .inner-content-card.is-link:hover {
  padding-inline: 1rem;
  border-color: var(--cyan);
  background: rgba(216, 141, 67, 0.08);
  transform: none;
}

.inner-card-index {
  color: var(--blue-700);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.inner-site .inner-card-copy strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.inner-site .inner-card-copy > span {
  max-width: 48rem;
  font-size: 0.78rem;
  line-height: 1.55;
}

.inner-site .inner-note {
  margin: 2rem 0 0 4.25rem;
  padding: 1.25rem 1.4rem;
  border-left-width: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

.inner-city-overview {
  display: grid;
  gap: clamp(5rem, 9vw, 8rem);
}

.inner-city-story,
.inner-city-timeline,
.inner-city-gallery,
.inner-city-crest-section {
  scroll-margin-top: 2rem;
}

.inner-city-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.inner-city-story-copy h2,
.inner-editorial-heading h2,
.inner-city-crest-copy h2 {
  margin: 1rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

.inner-city-story-copy > p {
  max-width: 50rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.inner-city-story-copy .inner-city-story-lead {
  color: var(--blue-950);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.inner-city-story-copy blockquote {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  margin: 2.25rem 0;
  padding: 1.5rem 0;
  border-block: 0.0625rem solid var(--line);
  color: var(--blue-950);
}

.inner-city-story-copy blockquote svg {
  color: var(--cyan);
}

.inner-city-story-copy blockquote p {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

.inner-city-sources {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.inner-city-sources > span {
  width: 100%;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-city-sources a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue-700);
  font-size: 0.68rem;
  font-weight: 750;
}

.inner-city-facts {
  overflow: hidden;
  border-radius: 1.75rem;
  background: var(--blue-950);
  box-shadow: 0 1.75rem 4rem rgba(7, 23, 56, 0.18);
  color: var(--white);
}

.inner-city-facts-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 1.4rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inner-city-facts dl {
  margin: 0;
}

.inner-city-facts dl > div {
  padding: 1.35rem 1.4rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.11);
}

.inner-city-facts dl > div:last-child {
  border-bottom: 0;
}

.inner-city-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
}

.inner-city-facts dd {
  margin: 0.45rem 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.inner-city-facts small {
  display: block;
  margin-top: 0.25rem;
  color: var(--cyan);
  font-size: 0.56rem;
}

.inner-editorial-heading {
  max-width: 58rem;
}

.inner-city-timeline ol {
  position: relative;
  display: grid;
  margin: 3.25rem 0 0;
  padding: 0;
  list-style: none;
}

.inner-city-timeline ol::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8.5rem;
  width: 0.0625rem;
  content: "";
  background: rgba(45, 95, 154, 0.2);
}

.inner-city-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 3rem;
  padding: 1.5rem 0;
}

.inner-city-timeline li::before {
  position: absolute;
  top: 2rem;
  left: 8.13rem;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border: 0.18rem solid #f5f8fc;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0.12rem var(--blue-700);
}

.inner-city-timeline time {
  padding-top: 0.25rem;
  color: var(--blue-700);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.inner-city-timeline h3 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.inner-city-timeline p {
  max-width: 42rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.inner-city-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, 16rem);
  gap: 1rem;
  margin-top: 2.75rem;
}

.inner-city-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 1.5rem;
  background: var(--blue-950);
}

.inner-city-gallery figure.is-featured {
  grid-row: 1 / 3;
}

.inner-city-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.inner-city-gallery figure:hover img {
  transform: scale(1.035);
}

.inner-city-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1.25rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(42, 55, 106, 0.9));
  color: var(--white);
  font-size: 0.68rem;
  line-height: 1.45;
}

.inner-city-crest-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(28rem, 1.3fr);
  align-items: center;
  gap: 2rem;
  margin-inline: clamp(-4rem, -4vw, -1.5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 75% 45%, rgba(216, 141, 67, 0.16), transparent 30rem),
    var(--blue-950);
  color: var(--white);
  box-shadow: 0 2rem 5rem rgba(7, 23, 56, 0.2);
}

.inner-city-crest-copy .inner-editorial-kicker {
  color: var(--cyan);
}

.inner-city-crest-copy h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
}

.inner-city-crest-copy p {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.7;
}

.inner-city-crest-section .city-crest-experience {
  min-height: 38rem;
}

@media (max-width: 68rem) {
  .inner-site .inner-page-layout {
    grid-template-columns: 1fr;
  }

  .inner-site .inner-sidebar {
    position: static;
    display: block;
    padding-bottom: 1.25rem;
    border-bottom: 0.0625rem solid var(--line);
  }

  .inner-sidebar-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
  }

  .inner-sidebar-related,
  .inner-site .inner-sidebar > .inner-sidebar-all {
    display: none;
  }

  .inner-city-crest-section {
    margin-inline: 0;
  }
}

@media (max-width: 48rem) {
  .inner-site .inner-hero {
    min-height: 30rem;
  }

  .inner-breadcrumb span[aria-current="page"] {
    display: none;
  }

  .inner-page-meta {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .inner-site .inner-page-layout {
    padding-top: 2.5rem;
  }

  .inner-sidebar-toc {
    grid-template-columns: 1fr;
  }

  .inner-site .inner-section-heading {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .inner-site .inner-content-card {
    min-height: 0;
    grid-template-columns: 2.25rem minmax(0, 1fr) auto;
    padding: 1.15rem 0;
  }

  .inner-site .inner-content-card.is-link:hover {
    padding-inline: 0.5rem;
  }

  .inner-site .inner-note {
    margin-left: 0;
  }

  .inner-city-overview {
    gap: 4.5rem;
  }

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

  .inner-city-timeline ol::before {
    left: 0.35rem;
  }

  .inner-city-timeline li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.4rem 0 1.4rem 2rem;
  }

  .inner-city-timeline li::before {
    top: 1.75rem;
    left: 0;
  }

  .inner-city-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 18rem);
  }

  .inner-city-gallery figure.is-featured {
    grid-row: auto;
  }

  .inner-city-crest-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
    border-radius: 1.75rem;
  }

  .inner-city-crest-section .city-crest-experience {
    min-height: 41rem;
  }
}

.service-audience-heading[hidden],
.service-grid[hidden],
.hero-story[hidden],
[data-agenda-panel][hidden] {
  display: none !important;
}

.hero,
.hero-story,
.featured-story-content,
.service-search-panel,
.city-newspaper,
.city-newspaper-featured,
.city-newspaper-archive,
.institutional-video-featured,
.institutional-video-featured-copy,
.city-video-card,
.city-section {
  color: var(--white);
}

.hero h1,
.hero-story h1,
.featured-story-content h2,
.service-search-panel h3,
.city-newspaper-heading h2,
.city-newspaper-featured h3,
.city-newspaper-archive-card h3,
.institutional-video-featured-copy h3,
.city-video-card h2 {
  color: var(--white);
}

.service-search-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.city-newspaper .kicker.light,
.city-video-card .kicker.light,
.institutional-videos .kicker {
  color: var(--cyan);
}

.city-crest-heading strong {
  color: rgba(255, 255, 255, 0.78);
}

.transparency,
.transparency-copy,
.transparency-copy h2,
.official-gazette-heading h2 {
  color: var(--blue-950);
}

a.button.button-light {
  color: var(--blue-900);
}

a.button.button-light:hover,
a.button.button-light:focus-visible {
  color: var(--blue-950);
}

.transparency a.button.button-light,
.transparency a.button.button-light:hover,
.transparency a.button.button-light:focus-visible {
  color: var(--white);
}

.transparency a.button.button-ghost,
.transparency a.button.button-ghost:hover,
.transparency a.button.button-ghost:focus-visible {
  color: var(--blue-950);
}

a.button.gazette-archive-link,
a.button.gazette-archive-link:hover,
a.button.gazette-archive-link:focus-visible {
  color: var(--white);
}

a.city-newspaper-download {
  color: var(--white);
}

a.city-newspaper-download.featured,
a.city-newspaper-download:hover,
a.city-newspaper-download:focus-visible {
  color: var(--blue-950);
}

.institutional-video-featured-copy > a {
  color: var(--white);
}

.institutional-videos-heading > a {
  color: var(--blue-900);
}

.institutional-videos-heading > a:hover,
.institutional-videos-heading > a:focus-visible {
  color: var(--white);
}

.transparency .stat-card.featured {
  color: var(--blue-950);
}

.transparency .stat-card:not(.featured) {
  color: var(--white);
}

.inner-hero,
.inner-hero h1,
.search-hero h1 {
  color: var(--white);
}

.inner-primary-action,
.inner-primary-action:hover {
  color: var(--blue-950);
}

.atalhos-float {
  position: fixed;
  z-index: 80;
  right: 1.25rem;
  bottom: 1.25rem;
  left: auto;
  width: auto;
  max-width: calc(100% - 2rem);
  transform: none;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.65rem;
  pointer-events: none;
}

.atalhos-float-toggle {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.15rem;
  padding: 0.55rem 1.05rem 0.55rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue-950);
  color: var(--white);
  box-shadow: 0 0.75rem 1.75rem rgba(42, 55, 106, 0.28);
  cursor: pointer;
}

.atalhos-float-toggle-open,
.atalhos-float-toggle-close {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.atalhos-float-toggle-close {
  display: none;
}

.atalhos-float-toggle-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.atalhos-float-toggle-label,
.atalhos-float-toggle-close span {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.atalhos-float-shell {
  display: none;
  pointer-events: auto;
  width: min(34rem, calc(100vw - 2.5rem));
}

.atalhos-float.is-open .atalhos-float-shell {
  display: block;
  animation: atalhos-float-in 0.22s ease;
}

.atalhos-float.is-open .atalhos-float-toggle {
  padding: 0.55rem 0.95rem;
  background: var(--white);
  color: var(--blue-950);
  border: 0.0625rem solid rgba(222, 222, 231, 0.95);
}

.atalhos-float.is-open .atalhos-float-toggle-open {
  display: none;
}

.atalhos-float.is-open .atalhos-float-toggle-close {
  display: inline-flex;
}

.atalhos-float-dismiss {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue-950);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0.45rem 1rem rgba(42, 55, 106, 0.2);
}

.atalhos-float-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem 0.2rem;
  width: 100%;
  padding: 0.75rem 0.7rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(0.75rem);
  box-shadow:
    0 0.75rem 2rem rgba(42, 55, 106, 0.16),
    0 0.15rem 0.45rem rgba(42, 55, 106, 0.08);
  border: 0.0625rem solid rgba(222, 222, 231, 0.9);
}

.atalhos-float-item {
  flex: 1 1 calc(25% - 0.25rem);
  min-width: 5rem;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.25rem 0.45rem;
  border-radius: 1rem;
  text-align: center;
  color: var(--blue-950);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.atalhos-float-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  color: var(--white);
  background: var(--atalho-color, var(--blue-700));
  box-shadow: 0 0.4rem 0.9rem color-mix(in srgb, var(--atalho-color, var(--blue-700)) 42%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.atalhos-float-icon svg {
  display: block;
}

.atalhos-float-label {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 100%;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

body.has-atalhos-float.home-layout {
  padding-bottom: 5.5rem;
}

body.has-atalhos-float.home-layout.atalhos-float-open {
  padding-bottom: 16rem;
}

@media (hover: hover) {
  .atalhos-float-toggle:hover {
    transform: translateY(-0.05rem);
  }

  .atalhos-float-item:hover {
    background: rgba(247, 246, 248, 0.95);
    transform: translateY(-0.1rem);
  }

  .atalhos-float-item:hover .atalhos-float-icon {
    transform: translateY(-0.1rem) scale(1.04);
    box-shadow: 0 0.55rem 1.1rem color-mix(in srgb, var(--atalho-color, var(--blue-700)) 48%, transparent);
  }
}

@media (max-width: 48rem) {
  .atalhos-float {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.55rem;
  }

  .atalhos-float-toggle {
    min-height: 3rem;
    padding: 0.5rem 0.95rem 0.5rem 0.65rem;
  }

  .atalhos-float-toggle-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .atalhos-float-toggle-label,
  .atalhos-float-toggle-close span {
    font-size: 0.88rem;
  }

  .atalhos-float-shell {
    width: min(22.5rem, calc(100vw - 1.5rem));
  }

  .atalhos-float-dismiss {
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
  }

  .atalhos-float-panel {
    padding: 0.55rem 0.45rem;
    border-radius: 1.25rem;
  }

  .atalhos-float-item {
    flex: 1 1 calc(33.333% - 0.2rem);
    min-width: 4.1rem;
    padding: 0.3rem 0.15rem 0.35rem;
  }

  .atalhos-float-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.55rem;
  }

  .atalhos-float-icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .atalhos-float-label {
    font-size: 0.6rem;
  }

  body.has-atalhos-float.home-layout {
    padding-bottom: 5rem;
  }

  body.has-atalhos-float.home-layout.atalhos-float-open {
    padding-bottom: 14rem;
  }
}

@media (max-width: 31rem) {
  .atalhos-float {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .atalhos-float-shell {
    width: min(20.5rem, calc(100vw - 1.3rem));
  }

  .atalhos-float-item {
    flex-basis: calc(33.333% - 0.2rem);
    min-width: 3.6rem;
  }

  .atalhos-float-label {
    font-size: 0.56rem;
  }
}

@keyframes atalhos-float-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .atalhos-float.is-open .atalhos-float-shell,
  .atalhos-float-item,
  .atalhos-float-icon,
  .atalhos-float-toggle {
    animation: none;
    transition: none;
  }
}

