:root {
  --paper: #f7f0df;
  --paper-strong: #efe3c3;
  --ink: #1f1a17;
  --muted: #6a5f55;
  --accent: #9d4122;
  --accent-soft: #d7b679;
  --brand-blue: #1f78c7;
  --brand-blue-light: #58a9e3;
  --brand-yellow: #f2d10f;
  --outline: rgba(31, 26, 23, 0.12);
  --card-shadow: 0 22px 40px rgba(54, 38, 18, 0.14);
  --content-width: 1150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body::before {
  content: none;
}

.page-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding-bottom: 0;
}

.page-shell > main {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.page-shell > main {
  flex: 1 0 auto;
}

.page-shell > .site-footer {
  width: 100%;
  margin: 0;
}

.masthead {
  position: relative;
  width: 100%;
  color: #ffffff;
  border-bottom: 0;
  background:
    linear-gradient(
      90deg,
      #174b80 0%,
      #1f5f9c 24%,
      #f4f8fc 47%,
      #ffffff 50%,
      #f4f8fc 53%,
      #1f5f9c 76%,
      #174b80 100%
    );
  box-shadow: none;
}

.masthead::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -34px;
  height: 48px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(5, 29, 55, 0.32) 0%,
    rgba(5, 29, 55, 0.18) 32%,
    rgba(5, 29, 55, 0.07) 60%,
    rgba(5, 29, 55, 0) 86%
  );
  filter: blur(14px);
}

.masthead__utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 28px;
  padding: 0 26px;
  background: #0d406f;
}

.utility-nav-group,
.utility-nav,
.masthead__actions,
.masthead__print {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-nav {
  flex-wrap: wrap;
  gap: 18px;
}

.utility-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.utility-nav a:hover,
.utility-nav a:focus-visible {
  color: #ffffff;
}

.utility-nav-group {
  justify-content: flex-end;
}

.masthead__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 109px;
  padding: 18px 26px 20px;
  background:
    linear-gradient(
      90deg,
      rgba(24, 78, 130, 0.98) 0%,
      rgba(31, 95, 156, 0.95) 20%,
      rgba(245, 249, 253, 0.98) 40%,
      rgba(255, 255, 255, 1) 50%,
      rgba(245, 249, 253, 0.98) 60%,
      rgba(31, 95, 156, 0.95) 80%,
      rgba(24, 78, 130, 0.98) 100%
    );
}

.masthead__actions {
  justify-content: flex-end;
}

.masthead__subscriber-stack {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.grid-card__link,
.banner-card__link,
.admin-toggle,
.primary-button,
.ghost-button {
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.grid-card__link:hover,
.grid-card__link:focus-visible,
.banner-card__link:hover,
.banner-card__link:focus-visible,
.admin-toggle:hover,
.admin-toggle:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible {
  transform: translateY(-1px);
}

.grid-card,
.admin-section {
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.86);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-feedback,
.admin-section__heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.brand,
.section-title h2,
.banner-card__content h2,
.admin-dialog__header h2,
.admin-section h3,
.grid-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.weather-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  background: transparent;
}

.weather-chip__icon {
  font-size: 1.08rem;
  line-height: 1;
}

.weather-chip__text {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.weather-chip__city {
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-chip__temp {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(31, 26, 23, 0.15);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

button {
  border: 0;
  cursor: pointer;
}

.primary-button,
.banner-card__link,
.admin-toggle,
.grid-card__link {
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--accent);
  color: #fff8ef;
  font-weight: 700;
  text-decoration: none;
}

.primary-button,
.ghost-button {
  white-space: nowrap;
}

.primary-button,
.ghost-button,
.admin-toggle,
.grid-card__link,
.banner-card__link {
  font-size: 0.82rem;
}

.masthead__brand {
  display: flex;
  justify-content: center;
}

.brand-logo--header {
  display: block;
  width: min(360px, 100%);
  object-fit: contain;
}

.print-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: #ffffff;
}

.print-card__cover {
  position: relative;
  overflow: hidden;
  width: 52px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(222, 234, 248, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 10px 18px rgba(12, 38, 66, 0.18);
}

.print-card__preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #ffffff;
}

.print-card__shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%);
  pointer-events: none;
}

.print-card__label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.masthead__date-block {
  display: grid;
  gap: 2px;
}

.masthead__date-block strong,
.masthead__date-block span {
  color: #ffffff;
}

.masthead__date-block strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.masthead__date-block span {
  font-size: 0.94rem;
  line-height: 1.1;
}

.radio-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: #ffffff;
}

.radio-live__logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.radio-live__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(122, 189, 221, 0.68);
  color: #7cc1df;
  font-size: 1rem;
}

.radio-live__text {
  display: grid;
  justify-items: start;
}

.radio-live__text small {
  color: rgba(122, 189, 221, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.radio-live__text strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.radio-live--active .radio-live__icon {
  background: rgba(122, 189, 221, 0.18);
  color: #ffffff;
}

.subscriber-entry {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.subscriber-entry__icon {
  color: #9fd0e5;
  font-size: 1rem;
}

.hero-banner {
  width: min(var(--content-width), calc(100% - 32px));
  min-height: 40vh;
  margin: 34px auto 0;
}

.hero-banner--image-only {
  min-height: unset;
  aspect-ratio: 1000 / 420;
  align-items: stretch;
  background-color: #ffffff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#hero-banner.hero-banner--image-only {
  width: min(var(--content-width), calc(100% - 32px));
  height: 190px;
  aspect-ratio: auto;
}

.banner-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(31, 26, 23, 0.14);
  box-shadow: var(--card-shadow);
  background:
    linear-gradient(120deg, rgba(44, 27, 10, 0.24), rgba(157, 65, 34, 0.12)),
    linear-gradient(135deg, #ccb28a, #8f4e30);
  background-size: cover;
  background-position: center;
}

.banner-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 15, 10, 0.06) 0%, rgba(20, 15, 10, 0.74) 100%);
}

.banner-card__content {
  position: relative;
  z-index: 1;
  max-width: min(680px, 100%);
  padding: 34px;
  color: #fffaf2;
}

.hero-banner--image-only .banner-card__content {
  display: none;
}

.hero-banner--image-only .banner-card__overlay {
  display: none;
}

.banner-card__content h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.92;
}

.banner-card__content p:not(.eyebrow) {
  margin: 12px 0 20px;
  line-height: 1.65;
}

.banner-card__link {
  display: inline-flex;
  width: fit-content;
  background: rgba(255, 250, 242, 0.18);
  border: 1px solid rgba(255, 250, 242, 0.28);
}

.news-grid-section {
  width: min(var(--content-width), calc(100% - 32px));
  margin-top: 46px;
  margin-left: auto;
  margin-right: auto;
}

.topics-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 18px auto 0;
  position: relative;
  overflow: visible;
}

.newsroom-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 0;
  align-items: center;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto 24px;
  position: relative;
  overflow: visible;
  z-index: 999;
}

.newsroom-toolbar:has(.topic-popout:hover) .topics-strip,
.newsroom-toolbar:has(.topic-popout:focus-within) .topics-strip,
.newsroom-toolbar:has(.topic-popout.is-open) .topics-strip {
  overflow: visible;
}

.newsroom-toolbar .topics-strip {
  width: 100%;
  margin: 0;
  justify-content: flex-start;
  position: relative;
  z-index: 999;
}

.topic-popout {
  position: relative;
}

.topic-pill--has-popout::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.88rem;
}

.topic-popout__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 10px;
  min-width: min(760px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(26, 83, 138, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96));
  box-shadow: 0 22px 48px rgba(15, 44, 73, 0.18);
  max-height: min(68vh, 520px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.topic-popout:hover .topic-popout__panel,
.topic-popout:focus-within .topic-popout__panel,
.topic-popout.is-open .topic-popout__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.topic-popout__option {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(31, 95, 156, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: #17324f;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(31, 26, 23, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.topic-popout__option:hover,
.topic-popout__option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(26, 83, 138, 0.28);
  box-shadow: 0 12px 24px rgba(26, 83, 138, 0.12);
}

.region-dropdown {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(23, 75, 128, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(
      90deg,
      #174b80 0%,
      #1f5f9c 24%,
      #f4f8fc 47%,
      #ffffff 50%,
      #f4f8fc 53%,
      #1f5f9c 76%,
      #174b80 100%
    );
  box-shadow: 0 18px 34px rgba(23, 75, 128, 0.16);
}

.region-dropdown__copy h2 {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 0.95;
  color: #ffffff;
}

.region-dropdown__copy .eyebrow {
  color: #ffffff;
}

.region-dropdown__field {
  display: grid;
  gap: 8px;
}

.region-dropdown__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d406f;
}

.region-dropdown__select-wrap {
  position: relative;
}

.region-dropdown__select-wrap::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-52%);
  color: #0d406f;
  font-size: 1rem;
  pointer-events: none;
}

.region-dropdown__select-wrap select {
  padding: 16px 48px 16px 18px;
  border: 1px solid rgba(23, 75, 128, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(23, 75, 128, 0.96) 0%, rgba(31, 95, 156, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(14, 49, 83, 0.16);
  color: #ffffff;
  font-weight: 700;
  appearance: none;
}

.region-dropdown__select-wrap select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(14, 49, 83, 0.16);
}

.region-dropdown__hint {
  margin: 0;
  font-size: 0.78rem;
  color: #17324f;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 20px rgba(31, 26, 23, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.topic-pill:hover,
.topic-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 120, 199, 0.35);
  color: var(--brand-blue);
}

.topic-pill--dynamic {
  background: var(--topic-bg, #ffffff);
  color: var(--topic-color, var(--ink));
  border-color: var(--topic-border, rgba(31, 26, 23, 0.12));
}

.topic-pill--sports {
  background: #eef6ff;
  color: #1f5fa8;
  border-color: rgba(31, 95, 168, 0.18);
}

.topic-pill--culture {
  background: #fff1e7;
  color: #b75a1f;
  border-color: rgba(183, 90, 31, 0.18);
}

.topic-pill--business {
  background: #f4f0ff;
  color: #6a46b8;
  border-color: rgba(106, 70, 184, 0.18);
}

.topic-pill--education {
  background: #edf8ec;
  color: #2f7d32;
  border-color: rgba(47, 125, 50, 0.18);
}

.topic-pill--weather {
  background: #eef9ff;
  color: #0f6f99;
  border-color: rgba(15, 111, 153, 0.18);
}

.topic-pill--city {
  background: #fff7dc;
  color: #8b6a00;
  border-color: rgba(139, 106, 0, 0.18);
}

.topic-pill--agro {
  background: #eef8e7;
  color: #5b7a17;
  border-color: rgba(91, 122, 23, 0.18);
}

.topic-pill--politics {
  background: #ffecef;
  color: #b23a52;
  border-color: rgba(178, 58, 82, 0.18);
}

.topic-pill--health {
  background: #e9fbf8;
  color: #13776e;
  border-color: rgba(19, 119, 110, 0.18);
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2,
.admin-dialog__header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.news-grid {
  display: block;
}

.newsroom-page {
  padding: 34px 0 40px;
}

.newsroom-banner-slot {
  width: min(1150px, calc(100% - 32px));
  margin: 0 auto 18px;
}

.newsroom-banner-slot__card {
  display: block;
  width: 100%;
  aspect-ratio: 1150 / 190;
  overflow: hidden;
  border-radius: 4px;
  background: #ffffff;
  text-decoration: none;
}

.newsroom-banner-slot__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.newsroom-featured-slider {
  display: grid;
  gap: 10px;
}

.newsroom-featured-slider__viewport {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 18px;
  background: #0f1f18;
}

.newsroom-featured-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.newsroom-featured-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.newsroom-featured-slider__media,
.newsroom-featured-slider__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.newsroom-featured-slider__media img {
  object-fit: cover;
}

.newsroom-featured-slider__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(5, 17, 13, 0.08), rgba(5, 17, 13, 0.88));
}

.newsroom-featured-slider__kicker {
  margin: 0;
  color: #d8efdf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsroom-featured-slider__title {
  margin: 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.newsroom-featured-slider__title a {
  color: #ffffff;
  text-decoration: none;
}

.newsroom-featured-slider__copy {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.newsroom-featured-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.newsroom-featured-slider__nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 31, 24, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #163625;
  font-size: 1.35rem;
  cursor: pointer;
}

.newsroom-featured-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.newsroom-featured-slider__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 54, 37, 0.25);
  cursor: pointer;
}

.newsroom-featured-slider__dot.is-active {
  width: 26px;
  background: #1e6d46;
}

.news-grid-section--newsroom {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto 42px;
  position: relative;
  z-index: 1;
}

.newsroom-layout {
  display: grid;
  gap: 18px;
}

.newsroom-top-strip,
.newsroom-content-grid {
  display: grid;
  gap: 22px 24px;
  align-items: start;
}

.newsroom-top-strip {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.newsroom-content-grid {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.58fr) minmax(250px, 0.88fr) minmax(240px, 0.78fr);
}

.newsroom-top-banner,
.newsroom-live,
.newsroom-right-rail-top,
.newsroom-lead-column,
.newsroom-story-column,
.newsroom-sidebar,
.newsroom-mini-grid,
.newsroom-bottom-grid,
.newsroom-sidebar-list,
.newsroom-ranked-list {
  display: grid;
  gap: 18px;
}

.newsroom-top-banner {
  position: relative;
  display: block;
  width: 100%;
  min-height: 190px;
  height: 190px;
  max-width: none;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #ffffff;
  text-decoration: none;
}

.newsroom-top-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.newsroom-ad-label {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 2;
  color: #c6c6c6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsroom-top-banner__cta {
  justify-self: end;
  align-self: end;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(63, 177, 67, 0.92);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
}

.newsroom-live__header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1b4f93;
  font-size: 1rem;
  font-weight: 800;
}

.newsroom-live__icon {
  color: #f06d2f;
  font-size: 1.2rem;
}

.newsroom-live__frame {
  position: relative;
  display: grid;
  min-height: 238px;
  align-content: end;
  overflow: hidden;
  padding: 18px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(4, 16, 31, 0.1), rgba(4, 16, 31, 0.84)),
    var(--newsroom-live-image, none);
  background-position: center;
  background-size: cover;
  text-decoration: none;
}

.newsroom-live__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: rgba(12, 24, 38, 0.52);
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.newsroom-live__caption {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.newsroom-live__actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.newsroom-live__button {
  display: inline-flex;
  padding: 9px 20px;
  border-radius: 999px;
  background: #f58447;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.newsroom-live__more {
  color: #1b4f93;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.newsroom-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 40px;
  padding: 0 10px 0 16px;
  border-radius: 7px;
  background: #f2f2f2;
}

.newsroom-search__input,
.newsroom-search__button {
  border: 0;
  background: transparent;
  font: inherit;
}

.newsroom-search__input {
  min-width: 0;
  color: #555;
  outline: none;
}

.newsroom-search__button {
  color: #1b4f93;
  font-size: 1.2rem;
  cursor: pointer;
}

.newsroom-search--toolbar {
  width: 100%;
}

.newsroom-sidebar-ad {
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: 14px 14px 16px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(4, 31, 89, 0.16), rgba(4, 31, 89, 0.72)),
    var(--newsroom-sidebar-ad-image, none);
  background-position: center;
  background-size: cover;
  text-decoration: none;
}

.newsroom-sidebar-ad h3,
.newsroom-featured__title,
.newsroom-center-lead h3,
.newsroom-text-story h3,
.newsroom-bottom-story h3,
.newsroom-mini-story h3,
.newsroom-sidebar h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.newsroom-sidebar-ad h3 {
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 0.96;
}

.newsroom-sidebar-ad p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
}

.newsroom-kicker {
  margin: 0 0 10px;
  color: #1652a0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.newsroom-kicker--small {
  font-size: 0.7rem;
  margin-bottom: 7px;
}

.newsroom-featured__title {
  font-size: clamp(2.9rem, 4vw, 4.55rem);
  line-height: 0.92;
}

.newsroom-featured__title a,
.newsroom-center-lead h3 a,
.newsroom-text-story h3 a,
.newsroom-bottom-story h3 a,
.newsroom-mini-story h3 a,
.newsroom-sidebar-item,
.newsroom-ranked-item {
  color: inherit;
  text-decoration: none;
}

.newsroom-featured__media,
.newsroom-mini-story__media,
.newsroom-bottom-story__media {
  display: block;
  overflow: hidden;
}

.newsroom-featured__media img,
.newsroom-mini-story__media img,
.newsroom-bottom-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsroom-featured__media {
  margin-top: 14px;
}

.newsroom-featured__media img {
  aspect-ratio: 16 / 8;
}

.newsroom-featured__caption {
  margin: 10px 0 0;
  color: #6f6f6f;
  font-size: 0.84rem;
}

.newsroom-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}

.newsroom-mini-story {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid #dfdfdf;
}

.newsroom-mini-story__media img {
  aspect-ratio: 4 / 2.9;
}

.newsroom-mini-story h3 {
  font-size: 1.15rem;
  line-height: 1.03;
}

.newsroom-bottom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.newsroom-bottom-story__media img {
  aspect-ratio: 16 / 11;
}

.newsroom-bottom-story h3 {
  margin-top: 10px;
  font-size: 1.25rem;
  line-height: 1.02;
}

.newsroom-bottom-story p:last-child {
  margin: 8px 0 0;
  color: #6d6d6d;
  line-height: 1.45;
}

.newsroom-center-lead,
.newsroom-text-story {
  padding: 18px 16px;
  background: #f1f1f1;
}

.newsroom-center-lead h3 {
  font-size: 1.55rem;
  line-height: 0.98;
}

.newsroom-center-lead p,
.newsroom-text-story p {
  margin: 12px 0 0;
  color: #5b5b5b;
  line-height: 1.45;
}

.newsroom-text-story {
  padding: 0;
  background: transparent;
}

.newsroom-text-story h3 {
  font-size: 1.3rem;
  line-height: 0.98;
}

.newsroom-contact-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px 18px;
  background: #efefef;
  text-decoration: none;
}

.newsroom-contact-card__title {
  color: #4a4a4a;
  font-size: 0.92rem;
  font-weight: 800;
}

.newsroom-contact-card__button {
  display: inline-flex;
  padding: 11px 24px;
  border-radius: 6px;
  background: #4eca53;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
}

.newsroom-community-card {
  display: grid;
  gap: 12px;
  padding: 24px 20px;
  background: linear-gradient(180deg, #118244 0%, #0d6b39 100%);
  color: #ffffff;
  text-decoration: none;
}

.newsroom-kicker--community {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.newsroom-community-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 0.96;
}

.newsroom-community-card p:last-of-type {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.newsroom-community-card__button {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsroom-sidebar {
  gap: 18px;
}

.newsroom-sidebar-block {
  padding: 0 0 8px;
  background: #f2f2f2;
}

.newsroom-sidebar-block h3 {
  padding: 16px 22px 0;
  color: #666;
  font-size: 2rem;
  line-height: 0.96;
}

.newsroom-sidebar-list,
.newsroom-ranked-list {
  gap: 0;
  padding: 12px 22px 10px;
}

.newsroom-sidebar-item,
.newsroom-ranked-item {
  display: grid;
  gap: 7px;
  padding: 14px 0;
}

.newsroom-sidebar-item + .newsroom-sidebar-item,
.newsroom-ranked-item + .newsroom-ranked-item {
  border-top: 1px solid #d4d4d4;
}

.newsroom-sidebar-item__category {
  color: #1652a0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsroom-sidebar-item strong {
  color: #252525;
  font-size: 1.08rem;
  line-height: 1.08;
}

.newsroom-sidebar-item__meta {
  color: #7d7d7d;
  font-size: 0.82rem;
}

.newsroom-ranked-item {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.newsroom-ranked-item__index {
  color: #dbdbdb;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.8;
}

.newsroom-ranked-item__text {
  color: #5b5b5b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.38;
}

.site-footer {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-top: auto;
  padding: 10px 20px;
  background: #1A538A;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.admin-toggle {
  position: absolute;
  left: 16px;
  bottom: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(31, 26, 23, 0.12);
  box-shadow: 0 12px 24px rgba(31, 26, 23, 0.12);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  text-align: center;
}

.site-footer__credit,
.site-footer__cnpj {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
  color: #ffffff;
}

.wa-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-bubble {
  position: relative;
  max-width: 260px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #ffffff;
  color: #1f1a17;
  font-size: 0.88rem;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.wa-bubble::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -8px;
  border: 8px solid transparent;
  border-top-color: #ffffff;
  border-bottom: 0;
}

.wa-float:hover .wa-bubble,
.wa-float.active .wa-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #004b27;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(10, 46, 26, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-btn:hover,
.wa-btn:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(10, 46, 26, 0.38);
  animation: none;
}

.wa-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.38);
  outline-offset: 3px;
}

.wa-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow:
      0 6px 24px rgba(10, 46, 26, 0.28),
      0 0 0 0 rgba(20, 92, 51, 0.26);
  }

  50% {
    box-shadow:
      0 6px 24px rgba(10, 46, 26, 0.28),
      0 0 0 14px rgba(20, 92, 51, 0);
  }
}

.admin-dialog {
  width: min(1100px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.auth-dialog {
  width: min(760px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #fbf7ef;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.auth-dialog::backdrop {
  background: rgba(18, 12, 8, 0.6);
  backdrop-filter: blur(6px);
}

.auth-dialog__content {
  padding: 28px;
}

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

.auth-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 36px 18px 72px;
  background:
    radial-gradient(circle at top center, rgba(47, 126, 204, 0.14), transparent 24%),
    radial-gradient(circle at left top, rgba(31, 95, 168, 0.18), transparent 30%),
    linear-gradient(180deg, #07111d 0%, #0a1726 54%, #0d1b2d 100%);
}

.auth-page::before,
.auth-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.auth-page::before {
  top: 86px;
  left: max(-30px, calc(50% - 620px));
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(31, 95, 168, 0.18), rgba(31, 95, 168, 0));
  animation: authFloat 12s ease-in-out infinite;
}

.auth-page::after {
  right: max(-40px, calc(50% - 640px));
  bottom: 64px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 126, 204, 0.2), rgba(47, 126, 204, 0));
  animation: authFloat 14s ease-in-out infinite reverse;
}

.admin-page {
  min-height: 100vh;
  padding: 28px 16px 40px;
}

.admin-page__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-page__topbar {
  margin-bottom: 14px;
}

.admin-page__frame {
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.auth-shell {
  display: grid;
  gap: 28px;
  width: min(1100px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.auth-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 29, 0.8);
  backdrop-filter: blur(14px);
}

.auth-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1100px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
}

.auth-nav__brand {
  display: inline-flex;
  align-items: center;
}

.auth-nav__logo {
  width: 188px;
  object-fit: contain;
}

.auth-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.auth-nav__links a,
.auth-nav__cta {
  text-decoration: none;
}

.auth-nav__links a {
  color: rgba(228, 234, 240, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
}

.auth-nav__links a:hover,
.auth-nav__links a:focus-visible {
  color: #ffffff;
}

.auth-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2f7ecc 0%, #1f5fa8 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(31, 95, 168, 0.22);
}

.auth-hero {
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: 34px 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at top center, rgba(47, 126, 204, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(10, 19, 32, 0.96), rgba(12, 24, 39, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  animation: authRevealUp 620ms ease both;
  text-align: center;
}

.auth-hero__cta-row,
.auth-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.auth-hero__cta-row .primary-button,
.auth-hero__cta-row .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 268px;
  text-align: center;
}

.auth-hero__guarantee {
  color: rgba(205, 214, 224, 0.76);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.auth-hero__brand,
.auth-hero__content,
.auth-stage,
.auth-highlight,
.auth-card {
  display: grid;
}

.auth-hero__brand {
  gap: 22px;
  justify-items: center;
}

.auth-hero__logo {
  width: min(280px, 100%);
  filter: drop-shadow(0 16px 32px rgba(7, 26, 44, 0.32));
}

.auth-hero__content {
  gap: 14px;
  max-width: 760px;
  justify-items: center;
}

.auth-hero h1,
.auth-status-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.94;
}

.auth-hero p:not(.eyebrow),
.auth-status-card p {
  margin: 0;
  color: var(--muted);
}

.auth-hero p:not(.eyebrow) {
  color: rgba(231, 236, 242, 0.84);
  line-height: 1.82;
  font-size: 1.08rem;
  max-width: 620px;
}

.auth-hero .eyebrow {
  color: rgba(113, 176, 236, 0.96);
}

.auth-hero__highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  width: min(880px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-highlight {
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  animation: authRevealUp 720ms ease both;
}

.auth-highlight:nth-child(2) {
  animation-delay: 70ms;
}

.auth-highlight:nth-child(3) {
  animation-delay: 140ms;
}

.auth-highlight strong {
  color: #78b7ef;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.auth-highlight span {
  color: rgba(214, 221, 229, 0.78);
  font-size: 0.84rem;
  line-height: 1.55;
}

.auth-stage {
  gap: 18px;
  animation: authRevealUp 700ms ease both;
  animation-delay: 90ms;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.auth-proof-bar,
.auth-section,
.auth-final-cta,
.auth-stage__intro {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 24, 37, 0.94), rgba(10, 20, 31, 0.98));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
}

.auth-proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 28px 34px;
  border-radius: 12px;
  align-items: center;
}

.auth-proof-item {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding: 8px 22px 16px;
}

.auth-proof-item strong {
  color: #f1c550;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.auth-proof-item span {
  color: rgba(237, 240, 245, 0.82);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.45;
  text-transform: uppercase;
}

.auth-section {
  display: grid;
  gap: 28px;
  padding: 34px;
  border-radius: 12px;
}

.auth-section--alt {
  background: linear-gradient(180deg, rgba(9, 19, 31, 0.98), rgba(12, 23, 37, 0.98));
}

.auth-section__header {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.auth-section__header--center {
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.auth-section__header h2,
.auth-stage__intro h2,
.auth-final-cta h2 {
  margin: 0;
  color: #f6f3eb;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
}

.auth-section__header p,
.auth-stage__intro p,
.auth-final-cta p {
  margin: 0;
  color: rgba(200, 210, 220, 0.78);
  line-height: 1.78;
}

.auth-section__title--single-line {
  white-space: nowrap;
}

.auth-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-benefit {
  display: grid;
  gap: 12px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.02);
  transition: background-color 180ms ease, transform 180ms ease;
}

.auth-benefit:hover,
.auth-benefit:focus-within {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.auth-benefit__icon {
  font-size: 1.4rem;
}

.auth-benefit h3,
.auth-plan-card h3 {
  margin: 0;
  color: #f6f3eb;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 0.98;
}

.auth-benefit p {
  margin: 0;
  color: rgba(200, 210, 220, 0.78);
  line-height: 1.72;
}

.auth-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(310px, 390px));
  gap: 18px;
  justify-content: center;
}

.auth-plan-card {
  display: grid;
  gap: 18px;
  padding: 30px 28px;
  border-radius: 12px;
  border: 1px solid rgba(143, 175, 210, 0.16);
  background: linear-gradient(180deg, rgba(21, 37, 56, 0.98), rgba(13, 24, 38, 0.99));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

.auth-plan-card .primary-button,
.auth-plan-card .ghost-button {
  width: 100%;
  max-width: 240px;
  min-height: 50px;
  justify-self: center;
  justify-content: center;
  text-align: center;
  font-size: 0.94rem;
}

.auth-plan-card--featured {
  border-color: rgba(47, 126, 204, 0.28);
  box-shadow: 0 22px 40px rgba(31, 95, 168, 0.14);
}

.auth-plan-card__badge,
.auth-plan-card__eyebrow,
.auth-plan-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-plan-card__badge {
  background: rgba(47, 126, 204, 0.16);
  color: #8ec4f3;
}

.auth-plan-card__eyebrow {
  background: rgba(47, 126, 204, 0.16);
  color: #c6e2fb;
}

.auth-plan-card__price {
  margin: 0;
  color: #f6f8fb;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.auth-plan-card__copy {
  margin: 0;
  color: rgba(237, 242, 247, 0.92);
  font-size: 1rem;
  line-height: 1.78;
}

.auth-plan-card__copy--single-line {
  white-space: nowrap;
}

.auth-plan-card__features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-plan-card__features li {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(143, 175, 210, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 248, 252, 0.96);
  line-height: 1.65;
}

.auth-plan-card__features li::before {
  content: "✓";
  color: #78b7ef;
  font-weight: 800;
}

.auth-section--cta {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.auth-final-cta {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 42px 32px;
  border-radius: 12px;
  text-align: center;
}

.auth-stage__intro {
  display: grid;
  gap: 12px;
  padding: 32px;
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(47, 126, 204, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(16, 30, 46, 0.98), rgba(9, 19, 31, 0.98));
}

.auth-stage__intro .eyebrow {
  color: #8ec4f3;
}

.auth-stage__intro h2 {
  color: #b9defd;
}

.auth-stage__intro p:last-child {
  color: rgba(203, 223, 244, 0.84);
}

.auth-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  justify-items: center;
}

.auth-back {
  justify-self: center;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.auth-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  width: min(820px, 100%);
  justify-self: center;
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(47, 126, 204, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(20, 35, 52, 0.97), rgba(12, 22, 34, 0.99));
}

.auth-card {
  position: relative;
  gap: 18px;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(143, 175, 210, 0.18);
  background:
    radial-gradient(circle at top right, rgba(47, 126, 204, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(12, 22, 34, 0.98), rgba(8, 16, 27, 0.99));
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120, 183, 239, 0.05), transparent 30%);
  pointer-events: none;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-card--login {
  width: min(720px, 100%);
  border-color: rgba(86, 151, 221, 0.26);
  box-shadow: 0 24px 52px rgba(10, 24, 38, 0.34);
}

.auth-card--register {
  width: min(820px, 100%);
  justify-self: center;
  margin-top: 4px;
  border-color: rgba(86, 151, 221, 0.22);
}

.auth-card__header {
  display: grid;
  gap: 10px;
}

.auth-card__header .eyebrow {
  margin-bottom: 0;
  color: #8ec4f3;
}

.auth-card__header h2,
.auth-status-card h2 {
  color: #b9defd;
}

.auth-card__header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 0.96;
}

.auth-card__header p,
.auth-status-card__copy p {
  color: #c7d8ea;
  line-height: 1.72;
  font-size: 0.98rem;
}

.auth-form {
  gap: 18px;
}

.auth-form__grid {
  display: grid;
  gap: 16px;
}

.auth-form__grid--register {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-form__grid--address {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-form__field--wide {
  grid-column: 1 / -1;
}

.auth-form__section-title {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 126, 204, 0.12);
  border: 1px solid rgba(86, 151, 221, 0.22);
  color: #8ec4f3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form__actions {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.auth-form__actions--register {
  margin-top: 8px;
}

.auth-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(47, 126, 204, 0.12);
  border: 1px solid rgba(86, 151, 221, 0.22);
  color: #b8daf7;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.auth-inline-link:hover,
.auth-inline-link:focus-visible {
  color: #ffffff;
  background: rgba(47, 126, 204, 0.2);
  border-color: rgba(86, 151, 221, 0.34);
  transform: translateY(-1px);
}

.auth-form label {
  display: grid;
  gap: 11px;
  color: #8ec4f3;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

.auth-page .auth-form input {
  min-height: 58px;
  border: 1px solid rgba(143, 175, 210, 0.26);
  border-radius: 14px;
  padding: 0 18px;
  background: linear-gradient(180deg, rgba(10, 20, 33, 0.98), rgba(8, 16, 26, 0.98));
  color: #ffffff;
  font-size: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 10px 24px rgba(4, 10, 18, 0.12);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.auth-form__helper {
  margin: -2px 0 0;
  color: rgba(174, 201, 229, 0.8);
  font-size: 0.9rem;
  line-height: 1.65;
}

.auth-page .auth-form input::placeholder {
  color: rgba(223, 231, 240, 0.66);
}

.auth-page .auth-form input:focus {
  border-color: rgba(47, 126, 204, 0.64);
  box-shadow:
    0 0 0 4px rgba(47, 126, 204, 0.14),
    0 14px 28px rgba(9, 22, 37, 0.18);
  transform: translateY(-1px);
}

.auth-status-card__copy {
  display: grid;
  gap: 8px;
  max-width: 560px;
}

.auth-status-card__copy .eyebrow {
  color: #8ec4f3;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.auth-access-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  width: min(80%, 100%);
  padding: 30px 28px;
  border-radius: 18px;
  border: 1px solid rgba(143, 175, 210, 0.16);
  background:
    radial-gradient(circle at top right, rgba(47, 126, 204, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(17, 31, 48, 0.97), rgba(11, 22, 36, 0.99));
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.2);
}

.auth-access-panel .eyebrow {
  margin: 0;
  color: #8ec4f3;
}

.auth-access-panel h2 {
  margin: 0;
  color: #f6f3eb;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.auth-access-panel p {
  margin: 0;
  color: rgba(206, 224, 243, 0.82);
  line-height: 1.76;
}

.auth-access-panel__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-access-panel__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(143, 175, 210, 0.14);
  color: rgba(241, 246, 250, 0.95);
  line-height: 1.55;
}

.auth-access-panel__list li::before {
  content: "•";
  color: #78b7ef;
  font-size: 1.15rem;
  line-height: 1;
}

.auth-access-panel__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-access-panel__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 126, 204, 0.12);
  border: 1px solid rgba(86, 151, 221, 0.2);
  color: #dceaf7;
  font-size: 0.84rem;
  font-weight: 700;
}

.subscription-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
}

.subscription-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 24, 0.72);
  backdrop-filter: blur(6px);
}

.subscription-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(820px, calc(100% - 28px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  margin: 16px auto 0;
  padding: 30px 30px 28px;
  border-radius: 28px;
  border: 1px solid rgba(86, 151, 221, 0.24);
  background:
    radial-gradient(circle at top right, rgba(47, 126, 204, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(11, 21, 34, 0.99), rgba(8, 17, 29, 0.99));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.subscription-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(143, 175, 210, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #dceaf7;
  font-size: 1.45rem;
  line-height: 1;
}

.subscription-modal__header {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.subscription-modal__header .eyebrow {
  margin: 0;
  color: #8ec4f3;
}

.subscription-modal__header h2 {
  margin: 0;
  color: #b9defd;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.96;
}

.subscription-modal__header p:last-child {
  margin: 0;
  color: rgba(203, 223, 244, 0.82);
  line-height: 1.72;
}

.subscription-modal__form {
  gap: 16px;
}

.subscription-payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.subscription-payment-option {
  position: relative;
}

.subscription-payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.subscription-payment-option__card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(143, 175, 210, 0.18);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.subscription-payment-option__title {
  color: #8ec4f3;
  font-size: 1rem;
  font-weight: 800;
}

.subscription-payment-option__text {
  color: rgba(216, 228, 240, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}

.subscription-payment-option input:checked + .subscription-payment-option__card {
  border-color: rgba(86, 151, 221, 0.5);
  background: rgba(47, 126, 204, 0.14);
  box-shadow: 0 18px 34px rgba(9, 22, 37, 0.18);
  transform: translateY(-1px);
}

.subscription-payment-option input:focus-visible + .subscription-payment-option__card {
  box-shadow: 0 0 0 4px rgba(47, 126, 204, 0.16);
}

.subscription-modal__feedback {
  color: #b9defd;
}

.subscription-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.subscription-modal__cancel {
  border-color: rgba(86, 151, 221, 0.24);
  color: #dceaf7;
}

.auth-page .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f7ecc 0%, #1f5fa8 100%);
  color: #ffffff;
  border: 1px solid rgba(31, 95, 168, 0.34);
  min-height: 52px;
  padding: 0 26px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 14px 28px rgba(31, 95, 168, 0.24);
}

.auth-page .primary-button:hover,
.auth-page .primary-button:focus-visible {
  background: linear-gradient(135deg, #3a8bdc 0%, #2a6db9 100%);
  box-shadow: 0 18px 32px rgba(31, 95, 168, 0.3);
}

.auth-page .ghost-button {
  border: 1px solid rgba(31, 95, 168, 0.34);
  color: #ffffff;
  background: linear-gradient(135deg, #2f7ecc 0%, #1f5fa8 100%);
  min-height: 52px;
  padding: 0 26px;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(31, 95, 168, 0.24);
}

.auth-page .ghost-button:hover,
.auth-page .ghost-button:focus-visible {
  background: linear-gradient(135deg, #3a8bdc 0%, #2a6db9 100%);
  box-shadow: 0 18px 32px rgba(31, 95, 168, 0.3);
}

@keyframes authRevealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes authFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

.admin-dialog::backdrop {
  background: rgba(18, 12, 8, 0.6);
  backdrop-filter: blur(6px);
}

.admin-dialog__backdrop-form {
  position: absolute;
  top: 18px;
  right: 18px;
}

.dialog-close,
.ghost-button {
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(31, 26, 23, 0.15);
  color: var(--ink);
}

.dialog-close {
  font-size: 1.5rem;
  line-height: 1;
}

.admin-dialog__content {
  padding: 30px;
}

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

.admin-dialog__intro {
  max-width: 720px;
}

.admin-dialog__lead {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.admin-overview__card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.94), rgba(255, 255, 255, 1));
  box-shadow: 0 14px 24px rgba(31, 26, 23, 0.05);
}

.admin-overview__card strong {
  display: block;
  font-size: 0.96rem;
}

.admin-overview__card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.admin-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background: #f8fafc;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-nav a:hover,
.admin-nav a:focus-visible {
  border-color: rgba(31, 120, 199, 0.28);
  color: var(--brand-blue);
  transform: translateY(-1px);
}

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

.admin-section {
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(31, 26, 23, 0.06);
}

.admin-section--full {
  grid-column: 1 / -1;
}

.admin-section h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.auth-columns .admin-section h2,
.auth-card h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.admin-form {
  display: grid;
  gap: 14px;
}

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

.admin-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-form fieldset {
  margin: 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background: #fafbfd;
}

.admin-form legend {
  padding: 0 8px;
  font-weight: 700;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-section__copy {
  margin: -2px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.primary-button {
  width: fit-content;
}

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

.admin-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 26, 23, 0.08);
  box-shadow: 0 10px 18px rgba(31, 26, 23, 0.04);
}

.admin-item__meta {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-item__title {
  margin: 0 0 8px;
  font-weight: 800;
}

.admin-item__copy {
  margin: 0;
  color: var(--muted);
}

.admin-item__actions {
  display: flex;
  gap: 8px;
}

.admin-item__actions button {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(31, 26, 23, 0.1);
}

.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;
}

.article-page {
  min-height: 100vh;
  padding: 36px 16px 52px;
  background: #ffffff;
}

.article-shell {
  display: grid;
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.article-hero,
.article-body-card,
.article-share-card,
.article-gallery-card {
  border: 1px solid var(--outline);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.article-hero {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.article-actions__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.92;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-cover {
  min-height: 320px;
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(26, 83, 138, 0.18), rgba(157, 65, 34, 0.2)),
    var(--paper-strong);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(31, 26, 23, 0.08);
}

.article-cover.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-share-card,
.article-body-card {
  padding: 24px 28px;
}

.article-share-card {
  display: grid;
  gap: 14px;
}

.article-share-card h2,
.article-body-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.article-share-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.article-share-input {
  flex: 1 1 420px;
  min-width: 240px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  color: var(--ink);
}

.article-share-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-body-card {
  display: grid;
  gap: 16px;
}

.article-body-card p {
  margin: 0;
  color: #2f2a26;
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-gallery-card {
  display: grid;
  gap: 18px;
  padding: 24px 28px 28px;
}

.article-gallery-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-gallery-card__header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.article-gallery-card__counter {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.article-gallery-item {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(31, 26, 23, 0.08);
  aspect-ratio: 1 / 1;
}

.article-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.article-gallery-item:hover img,
.article-gallery-item:focus-visible img {
  transform: scale(1.03);
}

.print-edition-viewer {
  overflow: hidden;
  min-height: 78vh;
  border: 1px solid var(--outline);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.print-edition-access-card {
  display: grid;
  gap: 10px;
  padding: 24px 28px;
  border: 1px solid var(--outline);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.print-edition-access-card h2,
.print-edition-access-card p {
  margin: 0;
}

.print-edition-access-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.print-edition-access-card p:last-child {
  color: #4b5563;
  line-height: 1.7;
}

.print-edition-access-card.is-allowed {
  border-color: rgba(34, 197, 94, 0.28);
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.96), rgba(255, 255, 255, 0.98));
}

.print-edition-access-card.is-blocked {
  border-color: rgba(220, 38, 38, 0.18);
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.96), rgba(255, 255, 255, 0.98));
}

.print-edition-viewer__frame {
  display: block;
  width: 100%;
  height: 78vh;
  min-height: 760px;
  border: 0;
  background: #ffffff;
}

.print-login-modal-open {
  overflow: hidden;
}

.print-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.print-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}

.print-login-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(520px, calc(100% - 32px));
  margin: min(14vh, 120px) auto 0;
  padding: 28px 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(26, 83, 138, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}

.print-login-modal__dialog h2,
.print-login-modal__dialog p {
  margin: 0;
}

.print-login-modal__dialog h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.98;
}

.print-login-modal__text {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.7;
}

.print-login-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.print-login-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: #f8fafc;
  color: #1f2937;
  font-size: 1.75rem;
  line-height: 1;
}

.article-empty {
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.legal-publicity-page {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
}

.legal-publicity-hero {
  display: grid;
  gap: 14px;
  padding: 34px 36px;
  border: 1px solid rgba(18, 44, 73, 0.1);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(26, 83, 138, 0.96), rgba(12, 52, 89, 0.96));
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(17, 39, 61, 0.16);
}

.legal-publicity-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.legal-publicity-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.legal-publicity-hero p:last-child {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.legal-publicity-public-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.legal-publicity-public-card,
.legal-publicity-public-empty {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(18, 44, 73, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(17, 39, 61, 0.06);
  align-content: start;
}

.legal-publicity-public-card h2,
.legal-publicity-public-empty h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  line-height: 1;
}

.legal-publicity-public-card p,
.legal-publicity-public-empty p {
  margin: 0;
  color: #546274;
  line-height: 1.65;
}

.legal-publicity-public-preview {
  overflow: hidden;
  border: 1px solid rgba(18, 44, 73, 0.1);
  border-radius: 18px;
  background: #eef4fb;
}

.legal-publicity-public-preview__frame {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
  background: #ffffff;
}

.legal-publicity-public-meta {
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-publicity-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.legal-publicity-public-actions .primary-button {
  background: #1A538A;
  border-color: #1A538A;
  color: #ffffff;
}

.legal-publicity-public-actions .primary-button,
.legal-publicity-public-actions .ghost-button {
  width: 100%;
  justify-content: center;
}

.legal-publicity-public-actions .primary-button:hover,
.legal-publicity-public-actions .primary-button:focus-visible {
  background: #2367a7;
  border-color: #2367a7;
}

@media (max-width: 1320px) {
  .legal-publicity-public-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .legal-publicity-public-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .legal-publicity-public-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .masthead__utility,
  .masthead__main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .masthead__utility,
  .utility-nav-group,
  .masthead__print,
  .masthead__actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .legal-publicity-public-preview__frame {
    height: 300px;
  }

  .masthead__main {
    display: grid;
  }

  .hero-banner {
    width: 100%;
  }

  .region-dropdown {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .topic-popout__panel {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    min-width: min(620px, calc(100vw - 32px));
  }

  .newsroom-toolbar {
    grid-template-columns: 1fr;
  }

  .newsroom-banner-slot {
    width: min(100%, calc(100% - 32px));
  }

  .newsroom-featured-slider__viewport {
    min-height: 320px;
  }

  .newsroom-featured-slider__overlay {
    padding: 22px;
  }

  .newsroom-top-strip,
  .newsroom-content-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.92fr);
  }

.newsroom-right-rail-top,
.newsroom-sidebar {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  }

  .newsroom-sidebar-ad {
    min-height: 240px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-overview {
    grid-template-columns: 1fr;
  }

  .auth-dialog__layout {
    grid-template-columns: 1fr;
  }

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

  .auth-nav__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .auth-nav__links {
    order: 3;
    width: 100%;
  }

  .auth-proof-bar,
  .auth-benefits-grid,
  .auth-plans-grid,
  .auth-hero__highlights {
    grid-template-columns: 1fr;
  }

  .auth-proof-bar {
    padding: 20px 18px;
  }

  .auth-proof-item {
    gap: 12px;
    padding: 10px 8px;
  }

  .auth-proof-item span {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

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

  .auth-form__grid--register {
    grid-template-columns: 1fr;
  }

  .auth-form__grid--address {
    grid-template-columns: 1fr;
  }

  .auth-access-panel {
    width: 100%;
    padding: 24px 22px;
  }

  .auth-status-card {
    padding: 24px 22px;
  }

  .article-cover {
    min-height: 260px;
  }

  .legal-publicity-hero {
    padding: 28px 24px;
  }
}

@media (max-width: 720px) {
  .masthead__utility {
    padding: 8px 12px;
  }

  .masthead__main,
  .admin-dialog__content {
    padding: 18px 12px;
  }

  .masthead__main {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 160px) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .utility-nav {
    justify-content: center;
    gap: 10px 14px;
  }

  .utility-nav a {
    font-size: 0.68rem;
  }

  .masthead__print {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .masthead__actions {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
  }

  .newsroom-featured-slider__viewport {
    min-height: 260px;
    border-radius: 14px;
  }

  .newsroom-featured-slider__overlay {
    padding: 18px;
  }

  .newsroom-featured-slider__copy {
    font-size: 0.92rem;
  }

  .newsroom-featured-slider__controls {
    gap: 10px;
  }

  .newsroom-featured-slider__nav {
    width: 38px;
    height: 38px;
  }

  .masthead__subscriber-stack {
    width: 100%;
    justify-items: end;
    gap: 8px;
  }

  .masthead__brand {
    align-self: center;
    display: flex;
    align-items: center;
  }

  .brand-logo--header {
    width: min(150px, 100%);
  }

  .masthead__date-block {
    justify-items: start;
    text-align: left;
  }

  .masthead__date-block strong {
    font-size: 0.8rem;
  }

  .masthead__date-block span {
    font-size: 0.74rem;
  }

  .weather-chip {
    justify-content: flex-start;
  }

  .weather-chip__city {
    max-width: 90px;
    font-size: 0.88rem;
  }

  .weather-chip__temp {
    font-size: 0.88rem;
  }

  .radio-live {
    gap: 8px;
  }

  .radio-live__icon {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: 0.88rem;
  }

  .radio-live__text {
    justify-items: end;
    text-align: right;
  }

  .radio-live__text small {
    font-size: 0.62rem;
  }

  .radio-live__text strong {
    font-size: 0.82rem;
  }

  .subscriber-entry {
    gap: 6px;
    max-width: 122px;
    font-size: 0.62rem;
    line-height: 1.2;
    white-space: nowrap;
    justify-content: flex-end;
    text-align: right;
  }

  .subscriber-entry__icon {
    font-size: 0.82rem;
  }

  .print-card {
    width: auto;
    gap: 8px;
    padding: 7px 9px 7px 7px;
    justify-content: flex-end;
  }

  .print-card__cover {
    width: 38px;
    height: 50px;
  }

  .print-card__label {
    font-size: 0.62rem;
    line-height: 1.15;
    text-align: right;
  }

  .weather-chip--utility {
    width: 100%;
    justify-content: center;
  }

  .weather-chip__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }

  .newsroom-toolbar .topics-strip,
  .topics-strip {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 0 10px;
    margin-inline: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .newsroom-toolbar .topics-strip::-webkit-scrollbar,
  .topics-strip::-webkit-scrollbar {
    display: none;
  }

  .topic-popout {
    width: auto;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .topic-pill {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }

  .newsroom-banner-slot {
    width: 90%;
  }

  .newsroom-banner-slot__card {
    aspect-ratio: 1150 / 190;
  }

  .topic-popout__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: min(320px, calc(100vw - 24px));
    width: max-content;
    max-width: calc(100vw - 24px);
    margin-top: 0;
    grid-template-columns: 1fr;
    max-height: min(60vh, 460px);
  }

  .newsroom-top-strip,
  .newsroom-content-grid,
  .newsroom-right-rail-top,
  .newsroom-sidebar,
  .newsroom-mini-grid,
  .newsroom-bottom-grid,
  .newsroom-mini-story {
    grid-template-columns: 1fr;
  }

  .newsroom-top-strip {
    justify-content: stretch;
  }

  .newsroom-top-banner {
    max-width: none;
  }

  .newsroom-featured__title {
    font-size: 2.4rem;
  }

  .newsroom-live__frame {
    min-height: 190px;
  }

  .newsroom-sidebar-ad {
    min-height: 220px;
  }

  .banner-card__content {
    padding: 24px;
  }

  .banner-card__content h2 {
    font-size: 2.4rem;
  }

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

  .admin-form__grid {
    grid-template-columns: 1fr;
  }

  .auth-dialog__content {
    padding: 18px;
  }

  .auth-hero,
  .auth-status-card {
    padding: 18px;
  }

  .auth-page {
    padding: 22px 12px 28px;
  }

  .auth-shell {
    gap: 14px;
  }

  .auth-hero,
  .auth-card,
  .admin-section {
    border-radius: 22px;
  }

  .auth-hero {
    gap: 18px;
    justify-items: stretch;
    padding: 24px 18px;
    text-align: left;
  }

  .auth-hero__brand {
    gap: 14px;
    justify-items: start;
  }

  .auth-hero .brand-logo {
    justify-self: flex-start;
    width: min(220px, 100%);
  }

  .auth-hero__highlights {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .auth-back {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .auth-columns .admin-section h2,
  .auth-status-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .auth-card {
    padding: 20px 18px;
  }

  .auth-card--login,
  .auth-card--register,
  .auth-status-card {
    width: 100%;
  }

  .auth-access-panel {
    padding: 20px 18px;
    gap: 16px;
  }

  .auth-access-panel h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .auth-form__section-title {
    width: 100%;
    justify-content: center;
  }

  .auth-form__actions {
    gap: 10px;
  }

  .auth-inline-link {
    width: 100%;
    justify-self: stretch;
  }

  .subscription-modal__dialog {
    width: min(100%, calc(100% - 20px));
    margin-top: 10px;
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .subscription-modal__actions {
    display: grid;
  }

  .auth-section,
  .auth-final-cta,
  .auth-stage__intro {
    padding: 24px 18px;
  }

  .auth-benefits-grid,
  .auth-proof-bar {
    border-radius: 10px;
    overflow: hidden;
  }

  .auth-plan-card {
    padding: 22px 18px;
  }

  .auth-status-card {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-page .primary-button,
  .auth-page .ghost-button,
  .auth-page .admin-form button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .auth-actions {
    width: 100%;
    flex-direction: column;
  }

  .print-login-modal__dialog {
    width: min(100% - 24px, 520px);
    margin-top: 10vh;
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .print-login-modal__actions {
    flex-direction: column;
  }

  .print-login-modal__actions .primary-button,
  .print-login-modal__actions .ghost-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .admin-item {
    grid-template-columns: 1fr;
  }

  .admin-toggle {
    left: 12px;
    bottom: 10px;
  }

  .site-footer {
    justify-content: flex-end;
    padding: 12px 12px 12px 118px;
  }

  .site-footer__content {
    justify-content: flex-end;
    text-align: right;
  }

  .wa-float {
    right: 20px;
    bottom: 20px;
  }

  .wa-btn {
    width: 54px;
    height: 54px;
  }

  .article-page {
    padding: 24px 12px 40px;
  }

  .article-hero,
  .article-share-card,
  .article-body-card,
  .article-gallery-card {
    padding: 20px 18px;
    border-radius: 24px;
  }

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

  .article-actions__group,
  .article-share-row {
    width: 100%;
  }

  .article-share-input {
    flex-basis: 100%;
  }

  .article-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-publicity-page {
    width: min(100%, calc(100% - 24px));
    padding: 24px 0 36px;
  }

  .legal-publicity-public-card,
  .legal-publicity-public-empty,
  .legal-publicity-hero {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .legal-publicity-public-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .auth-nav__links {
    gap: 12px;
  }

  .auth-nav__links a,
  .auth-nav__cta {
    font-size: 0.82rem;
  }

  .masthead__main {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 132px) minmax(0, 1fr);
    gap: 8px;
    padding: 14px 10px 16px;
  }

  .brand-logo--header {
    width: min(126px, 100%);
  }

  .subscriber-entry {
    max-width: none;
    font-size: 0.58rem;
  }

  .print-card__label {
    display: block;
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .auth-hero {
    padding: 20px 16px;
  }

  .auth-hero h1,
  .auth-section__header h2,
  .auth-stage__intro h2,
  .auth-final-cta h2,
  .auth-status-card h2 {
    line-height: 1;
  }

  .auth-card,
  .admin-section {
    padding: 16px;
  }

  .auth-section,
  .auth-final-cta,
  .auth-stage__intro,
  .auth-plan-card {
    padding: 20px 16px;
  }

  .print-login-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}
