:root {
  color-scheme: light;
  --ink: #071832;
  --ink-2: #12335d;
  --muted: #5b687a;
  --line: #dce4ef;
  --paper: #f7f9fc;
  --white: #ffffff;
  --gold: #d8a829;
  --gold-2: #f0c95c;
  --blue: #0f5f9e;
  --green: #28735c;
  --red: #b64235;
  --shadow: 0 20px 60px rgba(7, 24, 50, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 239, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand img {
  width: 104px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.26));
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #eef4fb;
  outline: none;
}

.site-nav .nav-action {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 24, 50, 0.96), rgba(7, 24, 50, 0.86) 48%, rgba(7, 24, 50, 0.42)),
    radial-gradient(circle at 76% 50%, rgba(240, 201, 92, 0.22), transparent 26%),
    radial-gradient(circle at 86% 42%, rgba(15, 95, 158, 0.34), transparent 28%),
    var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(240, 201, 92, 0.18) 46%, transparent 58%),
    radial-gradient(circle at 22% 25%, rgba(15, 95, 158, 0.34), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.76;
  transform: translateX(-18%);
  animation: hero-glow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--green), var(--red));
}

.hero-art {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0, #000 42%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(34px, 5vh, 56px) 0 clamp(68px, 9vh, 94px);
}

.hero-logo {
  width: min(560px, 42vw);
  justify-self: end;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.35));
  animation: logo-lift 5.5s ease-in-out infinite alternate;
}

.hero-message {
  min-width: 0;
}

.hero-message h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
}

.hero-message h1 span {
  color: var(--gold-2);
}

.hero-tagline {
  margin: 14px 0 0;
  color: var(--gold-2);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

h3 {
  margin: 14px 0 8px;
  font-size: 1.18rem;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 14px 0 0;
  color: #dfe9f5;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button svg,
.site-nav svg,
.feature svg,
.social-grid svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2.4;
}

.button.primary {
  background: var(--gold);
  color: #091526;
  box-shadow: 0 14px 30px rgba(216, 168, 41, 0.2);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.button.danger {
  background: #a7332c;
  color: #ffffff;
}

.button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.45);
  opacity: 0.58;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip div {
  position: relative;
  min-height: 112px;
  padding: 22px;
  background: var(--white);
}

.quick-strip div::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  background: var(--gold);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: 1.02rem;
}

.quick-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.push-alert-status {
  margin: 14px 0 0;
  color: #dbe8f6;
  font-size: 0.92rem;
  font-weight: 750;
}

.push-alert-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
  border-bottom: 1px solid rgba(240, 201, 92, 0.24);
}

.push-alert-section h2 {
  margin: 5px 0 10px;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.push-alert-section p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: #cbd8e7;
  font-size: 1rem;
  line-height: 1.65;
}

.push-alert-actions {
  display: grid;
  gap: 10px;
  min-width: min(260px, 100%);
}

.push-alert-actions small {
  color: #cbd8e7;
  font-size: 0.82rem;
  line-height: 1.45;
}

.android-app-page {
  min-height: calc(100svh - 92px);
  background:
    linear-gradient(135deg, rgba(7, 24, 50, 0.98), rgba(13, 35, 62, 0.94)),
    var(--ink);
}

.android-app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 120px) 0 clamp(46px, 7vw, 84px);
}

.android-app-hero h1 {
  max-width: 760px;
  margin: 8px 0 16px;
  color: #ffffff;
  font-size: clamp(2.6rem, 7vw, 5.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.android-app-hero p:not(.eyebrow) {
  max-width: 700px;
  color: #d6e3f2;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.android-app-hero > img {
  width: 100%;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.32));
}

.android-app-version {
  margin-top: 16px;
  color: #9fb1c6;
  font-size: 0.9rem;
  font-weight: 800;
}

.android-install-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(62px, 9vw, 110px);
}

.android-install-card > div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.android-install-card svg {
  width: 26px;
  height: 26px;
  color: var(--gold-2);
}

.android-install-card h2 {
  margin: 12px 0 8px;
  color: #ffffff;
  font-size: 1.15rem;
}

.android-install-card p {
  margin: 0;
  color: #cbd8e7;
  font-size: 0.96rem;
  line-height: 1.6;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 100px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.alert-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 24, 50, 0.06);
}

.feature:nth-child(1) svg {
  color: var(--blue);
}

.feature:nth-child(2) svg {
  color: var(--green);
}

.feature:nth-child(3) svg {
  color: var(--red);
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 500px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: 28px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.social-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-2);
  font-weight: 800;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.facebook-panel {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.facebook-panel iframe {
  display: block;
  width: 100%;
}

.alert-band {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.alert-band .eyebrow {
  color: var(--gold-2);
}

.alert-band p {
  margin: 0;
  color: #dce8f5;
}

.form-section {
  padding-bottom: clamp(64px, 8vw, 108px);
}

.tip-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.turnstile-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 65px;
  overflow: hidden;
}

.turnstile-wrap > div {
  width: 100%;
  max-width: 360px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 800;
}

label.full,
.form-actions.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd6e5;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
}

input {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
  min-height: 150px;
  padding: 12px;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 95, 158, 0.12);
  outline: none;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 650;
}

.check input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.check a,
.tip-legal a {
  color: var(--gold-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tip-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 2px;
}

.tip-route {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #dbe7f4;
  border-radius: var(--radius);
  background: #f4f8fc;
  color: var(--muted);
}

.form-actions .button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #eef4fb;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 64px);
  background: #061222;
  color: #dce8f5;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 700px;
}

.site-footer img {
  width: min(190px, 38vw);
  height: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 750;
}

.site-footer a {
  color: var(--white);
}

.legal-page {
  max-width: 880px;
}

.legal-page h1 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
}

.legal-page h2 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page a {
  color: var(--blue);
  font-weight: 800;
}

.submission-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(7, 24, 50, 0.94), rgba(7, 24, 50, 0.8)),
    radial-gradient(circle at center, rgba(240, 201, 92, 0.18), transparent 36%),
    var(--ink);
}

.submission-card {
  width: min(680px, 100%);
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.submission-card img {
  width: min(260px, 70%);
  height: auto;
  margin-bottom: 22px;
}

.submission-card h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.submission-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.submission-card .button.ghost,
.submission-card .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

@keyframes hero-glow {
  from {
    transform: translateX(-18%);
    opacity: 0.54;
  }

  to {
    transform: translateX(8%);
    opacity: 0.92;
  }
}

@keyframes logo-lift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    padding: 12px 14px 18px;
    background: rgba(6, 18, 34, 0.98);
    border-bottom: 1px solid rgba(240, 201, 92, 0.42);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #ffffff;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.09);
  }

  .site-nav .nav-action {
    justify-content: center;
    margin-top: 6px;
    border-bottom: 0;
    background: var(--gold);
    color: var(--ink);
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(7, 24, 50, 0.96), rgba(7, 24, 50, 0.9)),
      radial-gradient(circle at 50% 82%, rgba(240, 201, 92, 0.2), transparent 34%),
      var(--ink);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-bottom: 132px;
  }

  .hero-logo {
    order: -1;
    align-self: center;
    width: min(430px, 84vw);
  }

  .hero-message h1 {
    font-size: clamp(2.2rem, 8vw, 4.4rem);
  }

  .quick-strip,
  .intro-grid,
  .split,
  .alert-band,
  .push-alert-section,
  .android-app-hero,
  .android-install-card,
  .tip-form {
    grid-template-columns: 1fr;
  }

  .push-alert-section {
    align-items: stretch;
    flex-direction: column;
  }

  .android-app-hero > img {
    order: -1;
    width: min(320px, 76vw);
    justify-self: center;
  }

  .split {
    padding-top: 56px;
  }

  .alert-band {
    width: 100%;
  }

  .alert-band .button {
    width: fit-content;
  }

  .site-footer,
  .site-footer div {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand span {
    font-size: 0.88rem;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 84px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100svh - 68px);
  }

  .hero-inner,
  .section,
  .quick-strip {
    width: min(100% - 28px, 1120px);
  }

  .hero-inner {
    padding-top: 38px;
    padding-bottom: 96px;
  }

  .hero-logo {
    width: min(330px, 84vw);
  }

  .hero-message h1 {
    white-space: nowrap;
    font-size: clamp(1.85rem, 8.4vw, 2.3rem);
  }

  .hero-tagline {
    margin-top: 10px;
    font-size: 0.82rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .quick-strip {
    margin-top: -20px;
  }

  .quick-strip div {
    min-height: auto;
    padding: 18px;
  }

  .tip-form {
    padding: 18px;
  }

  .facebook-panel {
    min-height: 520px;
  }

  .facebook-panel iframe {
    height: 520px;
  }
}

[hidden] {
  display: none !important;
}

body {
  background:
    linear-gradient(180deg, #071832 0, #0c1f3b 520px, #12222b 100%),
    var(--ink);
  color: #eef5ff;
}

.site-header {
  background: rgba(6, 18, 34, 0.9);
  border-bottom-color: rgba(240, 201, 92, 0.22);
}

.brand,
.site-nav a {
  color: #f8fbff;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(240, 201, 92, 0.13);
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.hero {
  min-height: clamp(620px, 78svh, 760px);
}

.quick-strip {
  border-color: rgba(240, 201, 92, 0.22);
  background: rgba(240, 201, 92, 0.22);
}

.quick-strip div,
.feature,
.tip-form,
.social-grid a {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.15);
  color: #f8fbff;
  backdrop-filter: blur(12px);
}

.quick-strip span,
.feature p,
.section-heading p:not(.eyebrow),
.split-copy p,
.tip-route,
.check {
  color: #cbd8e7;
}

.section {
  color: #f8fbff;
}

.section-heading {
  max-width: 860px;
}

.intro {
  padding-top: clamp(44px, 6vw, 72px);
}

.feature {
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.notice-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(90deg, rgba(182, 66, 53, 0.18), rgba(40, 115, 92, 0.2)),
    #071832;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.notice-band p {
  margin: 0;
  color: #e4edf7;
  font-size: 1.08rem;
}

.notice-band .button {
  grid-column: 2;
  justify-self: start;
  margin-top: -28px;
}

.tip-form {
  position: relative;
}

.tip-form label {
  color: #f8fbff;
}

input,
textarea {
  background: rgba(255, 255, 255, 0.94);
}

input[type="file"] {
  padding: 12px;
  color: var(--ink);
}

.tip-route {
  background: rgba(240, 201, 92, 0.1);
  border-color: rgba(240, 201, 92, 0.35);
}

.upload-status {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(240, 201, 92, 0.38);
  border-radius: var(--radius);
  background: rgba(7, 24, 50, 0.62);
  color: #f8fbff;
  font-weight: 800;
}

.upload-status progress {
  width: 100%;
  height: 14px;
  accent-color: var(--gold);
}

.form-actions .button.ghost {
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.social-grid a {
  color: #f8fbff;
}

.facebook-panel {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  border-top: 1px solid rgba(240, 201, 92, 0.22);
}

.admin-body {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(7, 24, 50, 0.96), rgba(18, 34, 43, 0.94)),
    radial-gradient(circle at center, rgba(240, 201, 92, 0.12), transparent 34%),
    #071832;
}

.admin-login {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.admin-login-card,
.admin-detail,
.admin-list {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 24, 50, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.admin-login-card {
  width: min(440px, 100%);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.admin-login-card img {
  width: min(280px, 80%);
  height: auto;
}

.admin-login-card h1,
.admin-detail h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.admin-login-card label {
  color: #f8fbff;
}

.admin-login-card .button.secondary {
  color: var(--ink);
}

.admin-error {
  margin: 0;
  color: #ffd3cd;
  font-weight: 800;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 18, 34, 0.92);
}

.admin-header nav {
  display: flex;
  gap: 14px;
  font-weight: 850;
}

.admin-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
}

.admin-list {
  overflow: hidden;
}

.admin-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.admin-list-head strong {
  font-size: 2rem;
  color: var(--gold-2);
}

.admin-item {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-item:hover,
.admin-item.is-active {
  background: rgba(240, 201, 92, 0.12);
}

.admin-item span,
.admin-item small,
.admin-meta,
.admin-empty,
.admin-file span {
  color: #cbd8e7;
}

.admin-detail {
  min-height: 70svh;
  padding: clamp(20px, 4vw, 34px);
}

.admin-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-actions form {
  margin: 0;
}

.admin-message {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.admin-upload-warning {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 137, 117, 0.42);
  border-left: 4px solid #ff8975;
  border-radius: var(--radius);
  background: rgba(155, 49, 39, 0.18);
  color: #ffe5df;
}

.admin-upload-warning strong {
  color: #ffffff;
}

.admin-detail h2 {
  margin-top: 26px;
  font-size: 1.55rem;
}

.admin-files {
  display: grid;
  gap: 10px;
}

.admin-file-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(240, 201, 92, 0.22);
  border-radius: var(--radius);
  background: rgba(240, 201, 92, 0.08);
}

.admin-file-toolbar span {
  color: #ffffff;
  font-weight: 900;
}

.admin-file-toolbar small {
  color: #cbd8e7;
}

.admin-file {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(240, 201, 92, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.admin-file strong,
.admin-file span,
.admin-file em {
  display: block;
}

.admin-file strong {
  color: #ffffff;
  overflow-wrap: anywhere;
}

.admin-file em {
  margin-top: 6px;
  color: #ffd3cd;
  font-style: normal;
  font-weight: 800;
}

.admin-file-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-file-actions .button {
  white-space: nowrap;
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

@media (max-width: 900px) {
  .notice-band,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .notice-band .button {
    grid-column: 1;
    margin-top: 0;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

.about-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 201, 92, 0.25);
  background:
    linear-gradient(100deg, rgba(7, 24, 50, 0.98), rgba(7, 24, 50, 0.76)),
    radial-gradient(circle at 80% 34%, rgba(216, 168, 41, 0.22), transparent 30%),
    #071832;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
}

.about-hero h1 {
  max-width: 920px;
  font-size: clamp(3.25rem, 6vw, 6rem);
}

.about-hero-inner > div > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #dce8f5;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.about-hero img {
  width: min(540px, 100%);
  justify-self: end;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.38));
}

.principles-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240, 201, 92, 0.22);
  border-bottom: 1px solid rgba(240, 201, 92, 0.22);
}

.principles-band strong {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 22px;
  background: #10243e;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  text-align: center;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 7vw, 96px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.about-section + .about-section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.about-prose {
  color: #d7e2ef;
  font-size: 1.08rem;
}

.about-prose p {
  margin: 0 0 20px;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.facts-section,
.press-section,
.towns-section {
  position: relative;
}

.facts-section::before,
.press-section::before,
.towns-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: rgba(255, 255, 255, 0.035);
}

.records-section::before,
.source-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(90deg, rgba(40, 115, 92, 0.12), rgba(15, 95, 158, 0.1));
}

.records-section,
.source-section {
  position: relative;
}

.news-section {
  position: relative;
}

.news-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(90deg, rgba(15, 95, 158, 0.18), rgba(182, 66, 53, 0.1));
}

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

.coverage-list span,
.town-list span {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #f5f8fc;
  font-weight: 750;
}

.coverage-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
}

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

.about-submit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: clamp(52px, 7vw, 82px) max(18px, calc((100vw - 1120px) / 2));
  border-block: 1px solid rgba(240, 201, 92, 0.25);
  background:
    linear-gradient(90deg, rgba(216, 168, 41, 0.16), rgba(15, 95, 158, 0.15)),
    #071832;
}

.about-submit h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.about-submit p:not(.eyebrow) {
  max-width: 760px;
  color: #dce8f5;
}

.about-submit .pio-contact a {
  color: var(--gold-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .about-hero-inner,
  .about-section,
  .about-submit {
    grid-template-columns: 1fr;
  }

  .about-hero img {
    order: -1;
    justify-self: center;
    width: min(480px, 82vw);
  }

  .about-submit .button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .about-hero-inner {
    width: min(100% - 28px, 1120px);
    padding: 42px 0 54px;
  }

  .about-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .principles-band,
  .coverage-list,
  .town-list {
    grid-template-columns: 1fr;
  }

  .principles-band strong {
    min-height: 68px;
  }

  .about-section {
    padding: 54px 0;
  }

  .about-submit .button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .site-nav .nav-action {
    color: var(--ink);
  }
}

/* News publishing system */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav a[aria-current="page"] {
  background: rgba(240, 201, 92, 0.13);
  color: var(--gold-2);
}

.home-news {
  width: 100%;
  padding: clamp(56px, 7vw, 88px) max(18px, calc((100vw - 1120px) / 2));
  border-block: 1px solid rgba(240, 201, 92, 0.22);
  background: #061629;
}

.home-news-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.home-news-heading h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
}

.home-news-layout.is-single {
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
}

.home-featured-story {
  min-width: 0;
}

.home-featured-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #0c203c;
}

.home-featured-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.home-featured-media.is-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: clamp(32px, 6vw, 70px);
  background: #0a1d37;
}

.home-featured-media.is-placeholder img {
  width: min(440px, 80%);
  height: auto;
  object-fit: contain;
}

.home-featured-copy {
  padding-top: 18px;
}

.news-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: #aebed1;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-kicker span,
.news-kicker strong {
  color: var(--gold-2);
}

.home-featured-copy h3 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.08;
}

.home-featured-copy h3 a:hover,
.home-headline:hover .home-headline-title,
.news-archive-row h2 a:hover {
  color: var(--gold-2);
}

.home-featured-copy p {
  max-width: 720px;
  margin: 0;
  color: #cbd8e7;
}

.home-headlines {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-headline {
  display: grid;
  gap: 9px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-headline-title {
  color: #ffffff;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 800;
  line-height: 1.24;
}

.home-news-all {
  align-self: flex-start;
  margin-top: 22px;
}

.news-archive-hero {
  width: 100%;
  padding: clamp(70px, 9vw, 120px) max(18px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(240, 201, 92, 0.22);
  background: #071832;
}

.news-archive-hero > div {
  max-width: 820px;
}

.news-archive-hero h1 {
  margin: 8px 0 16px;
  color: #ffffff;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1;
}

.news-archive-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #cbd8e7;
  font-size: 1.12rem;
}

.news-archive-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 0 100px;
}

.news-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 36px));
  margin: -20px auto 0;
  padding: 0 0 18px;
}

.news-trust-strip > div {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.news-trust-strip svg {
  width: 24px;
  height: 24px;
  color: var(--gold-2);
}

.news-trust-strip strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.news-trust-strip span {
  color: #cbd8e7;
  font-size: 0.93rem;
  line-height: 1.55;
}

.news-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(210px, 280px) auto auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.news-filter label {
  display: block;
}

.news-filter input,
.news-filter select,
.admin-article-form input,
.admin-article-form textarea,
.admin-article-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.news-filter input,
.news-filter select,
.admin-article-form input,
.admin-article-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.news-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 36px 0 14px;
}

.news-results-heading h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.news-archive-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.news-archive-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 34px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.news-archive-row.has-image {
  grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
}

.news-row-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0b213e;
}

.news-row-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-archive-row h2 {
  margin: 8px 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.news-archive-row p {
  max-width: 740px;
  margin: 0 0 14px;
  color: #cbd8e7;
}

.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-2);
  font-weight: 850;
}

.news-read-link svg,
.article-source svg {
  width: 17px;
  height: 17px;
}

.news-empty-state,
.article-not-found {
  width: min(760px, 100%);
  padding: clamp(40px, 7vw, 76px) 0;
}

.news-empty-state h2,
.article-not-found h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.news-empty-state p,
.article-not-found p {
  color: #cbd8e7;
}

.town-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0 clamp(42px, 6vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(115deg, rgba(12, 41, 73, 0.98), rgba(5, 18, 36, 0.92)),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}

.town-hero > div {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.town-hero h1 {
  max-width: 900px;
  margin: 8px 0 20px;
  color: #ffffff;
  font-size: clamp(2.55rem, 7vw, 5.35rem);
  line-height: 1.02;
  text-wrap: balance;
}

.town-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #d6e2ef;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.town-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1120px, calc(100% - 36px));
  margin: 26px auto 0;
  padding: 0 0 28px;
}

.town-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.075);
  color: #f6fbff;
  font-weight: 900;
}

.town-news-section {
  padding-top: clamp(34px, 5vw, 62px);
}

.town-empty-state {
  padding: clamp(38px, 6vw, 68px) 0;
}

.town-connect-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 86px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(240, 201, 92, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.town-connect-section h2 {
  margin: 4px 0 10px;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

.town-connect-section p:not(.eyebrow) {
  margin: 0;
  color: #cbd8e7;
}

.town-connect-actions {
  display: grid;
  gap: 10px;
}

.town-connect-actions .button {
  justify-content: center;
  width: 100%;
}

.article-not-found {
  min-height: 64svh;
  margin: 0 auto;
}

.article-page {
  width: 100%;
}

.article-header {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0 clamp(36px, 6vw, 60px);
}

.article-category {
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #9fb0c4;
  font-size: 0.83rem;
  font-weight: 800;
}

.article-breadcrumb a {
  color: #d8e6f4;
}

.article-breadcrumb span:last-child {
  color: var(--gold-2);
}

.article-header h1 {
  max-width: 22ch;
  margin: 12px 0 20px;
  color: #ffffff;
  font-size: 4.5rem;
  line-height: 1.04;
  text-wrap: balance;
}

.article-summary {
  max-width: 860px;
  margin: 0;
  color: #d9e5f2;
  font-size: 1.4rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #aebed1;
  font-size: 0.92rem;
  font-weight: 700;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta svg {
  width: 16px;
  height: 16px;
}

.article-public-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.article-view-count,
.article-reaction-buttons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-view-count {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #d7e4f1;
  font-weight: 900;
}

.article-view-count svg,
.article-reaction-buttons svg {
  width: 17px;
  height: 17px;
}

.article-reaction-buttons {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.article-reaction-buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 70px;
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #d7e4f1;
  font-weight: 950;
  cursor: pointer;
}

.article-reaction-buttons button:hover,
.article-reaction-buttons button:focus-visible,
.article-reaction-buttons button.is-selected {
  background: rgba(226, 177, 40, 0.22);
  color: #ffe08a;
  outline: none;
}

.article-reaction-buttons button.is-error {
  background: rgba(167, 51, 44, 0.34);
}

.article-updated {
  margin: 10px 0 0;
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-share-button {
  min-width: 156px;
}

.article-share-button.is-copied {
  border-color: rgba(100, 205, 158, 0.65);
  background: rgba(40, 115, 92, 0.45);
  color: #effff8;
}

.article-social-links {
  display: grid;
  gap: 10px;
}

.article-social-links .button {
  justify-content: center;
  width: 100%;
}

.article-figure {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #0b213e;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 320px);
  gap: clamp(44px, 7vw, 90px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 82px) 0;
  align-items: start;
}

.article-body {
  min-width: 0;
  max-width: 68ch;
  color: #edf4fc;
  font-size: 1.18rem;
  line-height: 1.76;
  overflow-wrap: break-word;
}

.article-body > p {
  margin: 0 0 1.05em;
  text-wrap: pretty;
}

.article-source,
.article-media-gallery,
.article-weather-note,
.article-standards-note {
  margin-top: 34px;
  padding: 22px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.article-source h2,
.article-media-gallery h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.25rem;
}

.article-media-gallery {
  border-bottom: 0;
}

.article-media-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.article-media-heading p {
  margin: 4px 0 0;
  color: #c9d7e6;
  font-size: 0.95rem;
  line-height: 1.45;
}

.article-media-heading span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f4cf58;
  font-size: 0.82rem;
  font-weight: 800;
}

.article-media-carousel {
  position: relative;
  display: grid;
  align-items: center;
}

.article-media-track {
  min-width: 0;
}

.article-media-grid,
.article-media-track {
  display: grid;
}

.article-media-grid figure,
.article-media-track figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 24, 50, 0.82);
}

.article-media-track figure {
  display: none;
}

.article-media-track figure.is-active {
  display: block;
}

.article-media-grid a,
.article-media-track a {
  display: block;
  background: #071426;
}

.article-media-grid img,
.article-media-track img {
  display: block;
  width: 100%;
  max-height: min(68vh, 760px);
  object-fit: contain;
}

.article-media-grid figcaption,
.article-media-track figcaption {
  padding: 10px 12px;
  color: #d7e3f1;
  font-size: 0.92rem;
  line-height: 1.4;
}

.article-media-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(5, 16, 31, 0.82);
  color: #ffffff;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.article-media-nav:hover {
  border-color: rgba(244, 207, 88, 0.75);
  background: rgba(226, 177, 40, 0.92);
  color: #071426;
}

.article-media-nav--prev {
  left: 12px;
}

.article-media-nav--next {
  right: 12px;
}

.article-source a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-2);
  font-weight: 800;
}

.article-weather-note,
.article-standards-note {
  border-color: rgba(240, 201, 92, 0.35);
}

.article-weather-note strong,
.article-standards-note strong {
  color: var(--gold-2);
}

.article-weather-note p,
.article-standards-note p {
  margin: 6px 0 0;
  color: #d7e2ef;
}

.article-standards-note a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 106px;
}

.article-sidebar > div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.article-sidebar h2 {
  margin: 5px 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
}

.article-sidebar p:not(.eyebrow) {
  color: #cbd8e7;
}

.article-sidebar a:not(.button) {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-news {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.related-news-heading h2 {
  margin: 3px 0 22px;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.related-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-news-list a {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.related-news-list span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-news-list strong {
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.3;
}

/* Newsroom admin */
.admin-header nav {
  flex-wrap: wrap;
}

.admin-header nav a {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #dbe6f2;
}

.admin-header nav a:hover,
.admin-header nav a.is-active {
  background: rgba(240, 201, 92, 0.13);
  color: var(--gold-2);
}

.admin-flash {
  width: min(1280px, calc(100% - 28px));
  margin: 18px auto 0;
  padding: 13px 16px;
  border: 1px solid rgba(100, 205, 158, 0.4);
  border-radius: var(--radius);
  background: rgba(40, 115, 92, 0.25);
  color: #e8fff5;
  font-weight: 800;
}

.admin-flash.error {
  border-color: rgba(255, 143, 126, 0.45);
  background: rgba(182, 66, 53, 0.24);
  color: #ffe8e3;
}

.admin-news-page,
.admin-editor-page,
.admin-analytics-page {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.admin-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-page-heading h1 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.admin-heading-actions,
.admin-row-actions,
.admin-publish-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.admin-flash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.admin-body .button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.admin-news-empty {
  min-height: 360px;
}

.admin-news-empty h2 {
  color: #ffffff;
}

.admin-article-list {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 24, 50, 0.72);
}

.admin-article-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.admin-article-row:last-child {
  border-bottom: 0;
}

.admin-article-row h2 {
  margin: 4px 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.admin-article-row span,
.admin-article-row small {
  color: #b9c8d9;
}

.admin-article-status {
  padding-left: 10px;
  border-left: 3px solid #8da2b9;
  color: #cbd8e7;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-article-status.published {
  border-color: #58bd8d;
  color: #9fe4c1;
}

.admin-article-status.scheduled {
  border-color: var(--gold);
  color: var(--gold-2);
}

.admin-article-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 18px;
  align-items: start;
}

.admin-editor-main,
.admin-editor-sidebar > section {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 24, 50, 0.82);
  box-shadow: var(--shadow);
}

.admin-editor-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 20px;
}

.admin-editor-sidebar h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
}

.admin-article-form label {
  color: #eef5ff;
}

.admin-article-form textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

.admin-article-form textarea[name="body"] {
  min-height: 440px;
}

.admin-article-form input[type="file"] {
  padding: 10px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-url-preview {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(240, 201, 92, 0.08);
}

.admin-url-preview span,
.admin-url-preview small {
  color: #b9c8d9;
}

.admin-url-preview strong {
  overflow-wrap: anywhere;
  color: var(--gold-2);
}

.admin-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
}

.admin-check input {
  width: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
}

.admin-publish-actions .button {
  flex: 1 1 130px;
}

.admin-image-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #0b213e;
}

.admin-help-text {
  margin: 0;
  color: #c9d7e6;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-media-manager {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 20, 39, 0.58);
}

.admin-media-manager h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.2rem;
}

.admin-media-manager p,
.admin-media-manager small {
  margin: 0;
  color: #c9d7e6;
  line-height: 1.45;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-media-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 24, 50, 0.86);
}

.admin-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: #071426;
}

.admin-editor-sidebar .admin-danger-zone {
  border-color: rgba(255, 128, 108, 0.34);
  background: rgba(182, 66, 53, 0.12);
}

.admin-danger-zone p {
  margin: 0;
  color: #e6c9c4;
}

/* Admin analytics */
.analytics-updated {
  margin: 0;
  color: #aebed1;
  font-size: 0.88rem;
  font-weight: 700;
}

.analytics-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.analytics-summary-grid article {
  display: grid;
  gap: 5px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(7, 24, 50, 0.82);
}

.analytics-summary-grid span {
  color: #b9c8d9;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-summary-grid strong {
  align-self: end;
  color: #ffffff;
  font-size: 2.65rem;
  line-height: 1;
}

.analytics-summary-grid small {
  color: #aebed1;
}

.analytics-panel {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 24, 50, 0.82);
}

.analytics-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.analytics-panel-heading h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 1.55rem;
}

.analytics-panel-heading > span {
  color: #aebed1;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.analytics-chart {
  display: grid;
  grid-template-columns: repeat(14, minmax(48px, 1fr));
  gap: 8px;
  min-width: 780px;
  height: 250px;
  padding-top: 8px;
}

.analytics-trend-panel {
  overflow-x: auto;
}

.analytics-chart-day {
  display: grid;
  grid-template-rows: 24px 1fr 24px;
  gap: 6px;
  align-items: end;
  height: 100%;
  text-align: center;
}

.analytics-chart-day > strong {
  color: #dce8f5;
  font-size: 0.75rem;
}

.analytics-chart-day > span {
  display: block;
  width: min(30px, 72%);
  min-height: 4px;
  margin: 0 auto;
  border-radius: 3px 3px 0 0;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(240, 201, 92, 0.12);
}

.analytics-chart-day > small {
  color: #9dafc2;
  font-size: 0.68rem;
  white-space: nowrap;
}

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

.analytics-table-wrap {
  overflow-x: auto;
}

.analytics-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #dce8f5;
}

.analytics-table th,
.analytics-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: right;
  vertical-align: middle;
}

.analytics-table th {
  color: #9dafc2;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-table th:first-child,
.analytics-table td:first-child {
  width: 58%;
  padding-left: 0;
  text-align: left;
}

.analytics-table th:last-child,
.analytics-table td:last-child {
  padding-right: 0;
}

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

.analytics-table a {
  color: #ffffff;
  font-weight: 800;
}

.analytics-table a:hover {
  color: var(--gold-2);
}

.analytics-table td > small {
  display: block;
  margin-top: 4px;
  color: #8fa3b9;
  font-size: 0.74rem;
  font-weight: 500;
}

.analytics-breakdown {
  display: grid;
  gap: 16px;
}

.analytics-breakdown > p {
  margin: 0;
  color: #aebed1;
}

.analytics-breakdown > div {
  display: grid;
  gap: 7px;
}

.analytics-breakdown span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dce8f5;
}

.analytics-breakdown small {
  color: #aebed1;
}

.analytics-breakdown progress {
  width: 100%;
  height: 8px;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.analytics-breakdown progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

.analytics-breakdown progress::-webkit-progress-value {
  background: var(--gold);
}

.analytics-breakdown progress::-moz-progress-bar {
  background: var(--gold);
}

/* Brevo email signup confirmation */
.signup-confirmation-page {
  min-height: 100svh;
  background: #071832;
  color: #edf4fc;
}

.signup-confirmation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 94px;
  padding: 14px max(18px, calc((100% - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #041327;
}

.signup-confirmation-header .brand img {
  width: 92px;
}

.signup-confirmation-hero {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0 72px;
}

.signup-confirmation-logo {
  display: block;
  width: min(300px, 72vw);
  height: auto;
  margin: 0 0 30px;
}

.signup-confirmation-hero h1 {
  max-width: 12ch;
  margin: 10px 0 22px;
  color: #ffffff;
  font-size: 4.5rem;
  line-height: 1.02;
  text-wrap: balance;
}

.signup-confirmation-lead {
  max-width: 660px;
  margin: 0;
  color: #d5e1ee;
  font-size: 1.25rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.signup-confirmation-note {
  display: grid;
  gap: 4px;
  max-width: 660px;
  margin: 30px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.055);
}

.signup-confirmation-note strong {
  color: #ffffff;
}

.signup-confirmation-note span {
  color: #b9c9da;
}

.signup-facebook-button {
  min-width: 232px;
}

.signup-follow-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: #9fb2c7;
  font-size: 0.92rem;
  line-height: 1.6;
}

.signup-confirmation-about {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 64px;
  border-top: 1px solid rgba(240, 201, 92, 0.28);
}

.signup-confirmation-about h2 {
  max-width: 700px;
  margin: 5px 0 20px;
  color: #ffffff;
  font-size: 2.35rem;
}

.signup-confirmation-about > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 0 16px;
  color: #c9d6e5;
  font-size: 1.05rem;
  line-height: 1.72;
}

.signup-confirmation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(18px, calc((100% - 1120px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #041327;
  color: #91a5bb;
  font-size: 0.86rem;
}

.signup-confirmation-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.signup-confirmation-footer a {
  color: #d9e5f2;
}

/* Brevo email signup */
.email-signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
  border-top: 1px solid rgba(240, 201, 92, 0.26);
}

.email-signup-intro h2,
.email-signup-trust h2 {
  margin: 6px 0 18px;
  color: #ffffff;
  font-size: 2.65rem;
  line-height: 1.08;
  text-wrap: balance;
}

.email-signup-intro > p:not(.eyebrow),
.email-signup-trust > p:not(.eyebrow) {
  margin: 0;
  color: #c8d6e5;
  font-size: 1.06rem;
  line-height: 1.72;
}

.email-signup-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.email-signup-points span {
  padding: 8px 10px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.055);
  color: #e6eef7;
  font-size: 0.82rem;
  font-weight: 800;
}

.apr-brevo-form.sib-form {
  width: 100%;
  padding: 0;
  background: transparent;
  color: #edf4fc;
  font-family: inherit;
  text-align: left;
}

.apr-brevo-form .sib-form-container {
  width: 100%;
  max-width: none;
}

.apr-brevo-form .apr-email-form-shell {
  width: 100%;
  max-width: none;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #f8fbff !important;
  color: #071832;
  box-shadow: var(--shadow);
  text-align: left;
}

.apr-brevo-form #sib-form {
  display: grid;
  gap: 15px;
}

.apr-brevo-form .sib-form-block,
.apr-brevo-form .sib-input {
  padding: 0;
}

.apr-brevo-form .entry__label {
  display: block;
  margin-bottom: 8px;
  color: #142943 !important;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 850;
}

.apr-brevo-form .entry__field {
  border: 0;
  background: transparent;
}

.apr-brevo-form .entry__field .input {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 24, 50, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  color: #071832;
  font: inherit;
}

.apr-brevo-form .entry__field .input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(240, 201, 92, 0.18);
}

.apr-brevo-form .entry__field .input::placeholder {
  color: #728297;
  font-family: inherit;
}

.apr-brevo-form .apr-recaptcha-frame {
  width: 100%;
  min-height: 78px;
  overflow: hidden;
}

.apr-brevo-form .g-recaptcha {
  width: 304px;
  transform-origin: left top;
}

.apr-brevo-form .entry__specification {
  display: block;
  margin-top: 7px;
  color: #667990 !important;
  font-family: inherit;
  font-size: 0.75rem;
}

.apr-brevo-form .entry__error {
  margin: 7px 0 0;
  color: #ffb7aa;
  font-family: inherit;
  font-size: 0.8rem;
}

.apr-brevo-form .apr-email-submit-block button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: #071426;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(216, 168, 41, 0.2);
}

.apr-brevo-form .apr-email-submit-block button:hover,
.apr-brevo-form .apr-email-submit-block button:focus-visible {
  background: var(--gold-2);
  outline: none;
}

.apr-brevo-form .apr-email-submit-block svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: currentColor;
}

.apr-email-privacy {
  margin: 0;
  color: #65778c;
  font-size: 0.72rem;
  line-height: 1.55;
}

.apr-email-privacy a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.apr-brevo-form .apr-email-message {
  display: none;
  max-width: none;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
}

.apr-brevo-form .apr-email-message.sib-form-message-panel--active {
  display: block;
}

.apr-brevo-form .apr-email-message.error {
  border-color: rgba(255, 137, 117, 0.5);
  background: rgba(155, 49, 39, 0.28);
  color: #ffe5df;
}

.apr-brevo-form .apr-email-message.success {
  border-color: rgba(100, 205, 158, 0.5);
  background: rgba(40, 115, 92, 0.28);
  color: #e8fff5;
}

.apr-brevo-form .sib-form-message-panel__text {
  display: flex;
  align-items: center;
  gap: 9px;
}

.apr-brevo-form .sib-notification__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.email-signup-page {
  min-height: 100svh;
  background: #071832;
  color: #edf4fc;
  overflow-x: hidden;
}

.email-signup-landing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 68px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 76px;
}

.email-signup-landing > *,
.apr-brevo-form,
.apr-brevo-form .sib-form-container,
.apr-brevo-form .apr-email-form-shell,
.apr-brevo-form #sib-form {
  min-width: 0 !important;
}

.email-signup-landing-copy > img {
  display: block;
  width: min(300px, 72vw);
  height: auto;
  margin-bottom: 34px;
}

.email-signup-landing-copy h1 {
  margin: 7px 0 20px;
  color: #ffffff;
  font-size: 4.25rem;
  line-height: 1.02;
  text-wrap: balance;
}

.email-signup-landing-copy > p:not(.eyebrow) {
  margin: 0;
  color: #cbd8e7;
  font-size: 1.15rem;
  line-height: 1.68;
}

.email-signup-trust {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 68px;
  border-top: 1px solid rgba(240, 201, 92, 0.26);
}

.email-signup-trust > p:not(.eyebrow) {
  max-width: 850px;
}

@media (max-width: 900px) {
  .home-news-layout,
  .home-news-layout.is-single,
  .article-layout,
  .admin-article-form {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .admin-editor-sidebar {
    position: static;
  }

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

  .article-summary {
    font-size: 1.25rem;
  }

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

  .news-trust-strip {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .news-trust-strip > div {
    min-height: 0;
  }

  .town-connect-section {
    grid-template-columns: 1fr;
  }

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

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

  .analytics-detail-grid {
    grid-template-columns: 1fr;
  }

  .email-signup-section,
  .email-signup-landing {
    grid-template-columns: 1fr;
  }

  .email-signup-intro,
  .email-signup-landing-copy {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .signup-confirmation-header,
  .email-signup-landing,
  .email-signup-trust,
  .signup-confirmation-footer {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .email-signup-landing-copy,
  .apr-brevo-form,
  .apr-brevo-form.sib-form,
  .apr-brevo-form .sib-form-container,
  .apr-brevo-form .apr-email-form-shell,
  .apr-brevo-form .sib-container--large,
  .apr-brevo-form #sib-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .news-filter,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-file,
  .admin-file-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-file-toolbar {
    display: grid;
  }

  .admin-file-actions,
  .admin-file-actions .button {
    width: 100%;
  }

  .news-filter .button {
    width: 100%;
  }

  .news-archive-row.has-image {
    grid-template-columns: 1fr;
  }

  .news-row-image {
    aspect-ratio: 16 / 9;
  }

  .admin-page-heading,
  .admin-article-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

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

  .admin-row-actions .button,
  .admin-heading-actions .button {
    flex: 1 1 auto;
  }

  .analytics-summary-grid {
    grid-template-columns: 1fr;
  }

  .analytics-summary-grid article {
    min-height: 125px;
  }

  .analytics-panel {
    padding: 18px;
  }

  .article-header h1,
  .news-archive-hero h1 {
    overflow-wrap: anywhere;
  }

  .article-header h1 {
    max-width: none;
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .article-summary {
    font-size: 1.1rem;
  }

  .article-body {
    font-size: 1.05rem;
    line-height: 1.72;
  }

  .article-media-grid,
  .admin-media-grid {
    grid-template-columns: 1fr;
  }

  .article-media-heading {
    align-items: start;
    flex-direction: column;
  }

  .article-media-nav {
    width: 40px;
    height: 40px;
  }

  .article-media-nav--prev {
    left: 8px;
  }

  .article-media-nav--next {
    right: 8px;
  }

  .signup-confirmation-header {
    min-height: 80px;
  }

  .signup-confirmation-header .brand img {
    width: 72px;
  }

  .signup-confirmation-header .brand span {
    display: none;
  }

  .signup-confirmation-header .button {
    width: auto;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 9px 12px;
  }

  .signup-confirmation-hero {
    padding: 46px 0 52px;
  }

  .signup-confirmation-logo {
    width: min(230px, 70vw);
    margin-bottom: 26px;
  }

  .signup-confirmation-hero h1 {
    font-size: 2.65rem;
  }

  .signup-confirmation-lead {
    font-size: 1.08rem;
  }

  .signup-confirmation-hero .hero-actions .button {
    width: 100%;
  }

  .signup-confirmation-about h2 {
    font-size: 1.9rem;
  }

  .signup-confirmation-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .email-signup-section {
    gap: 34px;
    padding: 58px 0;
  }

  .email-signup-intro h2,
  .email-signup-trust h2 {
    font-size: 2.05rem;
  }

  .apr-brevo-form .apr-email-form-shell {
    padding: 18px;
  }

  .apr-brevo-form .g-recaptcha {
    transform: scale(0.92);
  }

  .apr-brevo-form .apr-recaptcha-frame {
    min-height: 72px;
  }

  .email-signup-landing {
    gap: 38px;
    padding: 46px 0 54px;
  }

  .email-signup-landing-copy > img {
    width: min(230px, 70vw);
    margin-bottom: 26px;
  }

  .email-signup-landing-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 13vw, 2.75rem);
    overflow-wrap: normal;
  }

  .email-signup-landing-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
  }
}

@media (max-width: 340px) {
  .apr-brevo-form .g-recaptcha {
    transform: scale(0.82);
  }

  .apr-brevo-form .apr-recaptcha-frame {
    min-height: 64px;
  }
}

.admin-weather-state {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #eef3f8;
  border: 1px solid #d4dee9;
  border-left: 5px solid #7c8b9d;
}

.admin-weather-state.is-live {
  background: #fde7e8;
  border-left-color: #b4232c;
}

.admin-weather-state > span {
  padding: 5px 8px;
  background: #68798c;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-weather-state.is-live > span {
  background: #b4232c;
}

.admin-weather-state strong,
.admin-weather-state small {
  display: block;
}

.admin-weather-state small {
  margin-top: 3px;
  color: #66778b;
}

.admin-weather-form .admin-editor-sidebar .button {
  width: 100%;
}
