/* ==========================================================================
   THE PRIVATE OFFICE — WEBSITE
   news.css — page styles for the /news route only.
   Reuses the design system (tokens · base · components · site chrome);
   nothing in this file affects any other page.
   ========================================================================== */

.nw-sr {
  position: absolute;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   1 · BREADCRUMB — quiet institutional wayfinding
   ========================================================================== */
.nw-crumbs {
  background: var(--c-white);
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
  padding: calc(var(--header-h) + var(--space-3)) clamp(20px, 4vw, 64px) var(--space-3);
}
.nw-crumbs__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
}
.nw-crumbs__link, .nw-crumbs__here, .nw-crumbs__sep {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}
.nw-crumbs__link { color: var(--navy-800); text-decoration: none; transition: color var(--dur-2) var(--ease-standard); }
.nw-crumbs__link:hover { color: var(--gold-600); }
.nw-crumbs__link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: var(--r-xs); }
.nw-crumbs__sep { color: var(--gold-500); }
.nw-crumbs__here { color: var(--ink-mute); }

/* ==========================================================================
   2 · PAGE HERO — centered navy band
   ========================================================================== */
.nw-hero {
  background: var(--grad-navy);
  color: var(--ivory-100);
  text-align: center;
  padding: var(--space-7) clamp(24px, 5vw, 64px);
}
.nw-hero__inner { max-width: 820px; margin-inline: auto; }
.nw-hero .eyebrow { color: var(--gold-400); }
.nw-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: var(--fw-medium);
  line-height: 1.14;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 18px 0 20px;
  text-wrap: balance;
}
.nw-hero__lead {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-light);
  line-height: 1.72;
  color: rgba(247, 242, 232, 0.74);
  max-width: 62ch;
  margin-inline: auto;
}

/* ==========================================================================
   Shared rhythm — shells, container, heads, meta row
   ========================================================================== */
.nw-listing { background: var(--c-white); padding: var(--space-7) clamp(20px, 4vw, 64px); }
.nw-inner { max-width: 1440px; margin-inline: auto; }

.nw-head { max-width: 760px; margin-bottom: var(--space-4); }
.nw-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.9vw, 2.625rem);
  font-weight: var(--fw-semi);
  line-height: 1.15;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin: 16px 0 14px;
  text-wrap: balance;
}
.nw-lede {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.8;
  letter-spacing: var(--track-wide);
  color: var(--ink-mute);
  max-width: 74ch;
}

.nw-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nw-meta__cat {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-600);
}
.nw-meta__date { font-family: var(--font-body); font-size: var(--fs-xs); color: var(--ink-mute); }

/* ==========================================================================
   3 · CATEGORY FILTERS
   ========================================================================== */
.nw-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3) var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.nw-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.nw-filter {
  padding: 10px 20px;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.45);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--navy-800);
  cursor: pointer;
  transition:
    background-color var(--dur-2) var(--ease-standard),
    border-color var(--dur-2) var(--ease-standard),
    color var(--dur-2) var(--ease-standard);
}
.nw-filter:hover { border-color: var(--gold-500); background: var(--gold-50); }
.nw-filter:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.nw-filter.is-active {
  background: var(--grad-gold);
  border-color: rgba(110, 84, 38, 0.45);
  color: var(--navy-900);
}

/* ==========================================================================
   4 · VERIFIED REPORTS GRID — editorial cards for approved official reports
   ========================================================================== */
.nw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.nw-vcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);        /* thin muted-gold border */
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--dur-3) var(--ease-lux),
    box-shadow var(--dur-3) var(--ease-lux),
    border-color var(--dur-2) var(--ease-standard);
}
.nw-vcard[hidden] { display: none; }
.nw-vcard:hover,
.nw-vcard:focus-within {                               /* restrained hover only */
  transform: translateY(-3px);
  border-color: rgba(198, 161, 91, 0.75);
  box-shadow: 0 18px 36px -18px rgba(8, 20, 38, 0.18);
}
.nw-vcard__media { display: block; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.nw-vcard__media img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-4) var(--ease-lux);
}
.nw-vcard:hover .nw-vcard__media img,
.nw-vcard:focus-within .nw-vcard__media img { transform: scale(1.02); }   /* ≤1.02, per rule */
.nw-vcard__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; gap: 0; }
.nw-vcard__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semi);
  line-height: 1.24;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin: 12px 0 10px;
}
.nw-vcard__excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.68;
  color: var(--ink-soft);
  margin: 0 0 var(--space-3);
}
.nw-vcard__source {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin: auto 0 var(--space-3);
  padding-top: 14px;
  border-top: 1px solid rgba(198, 161, 91, 0.22);
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--navy-800);
}
.nw-vcard__source .icon { width: 15px; height: 15px; color: var(--gold-600); flex: none; }
.nw-vcard__badge {
  padding: 3px 12px;
  border: 1px solid rgba(198, 161, 91, 0.45);
  border-radius: 999px;
  background: var(--gold-50);
  color: var(--gold-600);
}
.nw-vcard__cta { align-self: flex-start; }
.nw-vcard__media-link { display: block; }
.nw-vcard__media-link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: -2px; }

/* Loading, empty + error-quiet states (never a technical error to visitors) */
.nw-loading,
.nw-empty {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1.5px dashed rgba(198, 161, 91, 0.5);
  border-radius: var(--r-md);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--ink-mute);
}
.nw-empty[hidden], .nw-loading[hidden] { display: none; }

/* ==========================================================================
   5 · RECEIVE UPDATES — navy subscription block
   ========================================================================== */
.nw-subscribe {
  background: var(--grad-navy);
  color: var(--ivory-100);
  text-align: center;
  padding: var(--space-7) clamp(20px, 4vw, 64px);
}
.nw-subscribe .eyebrow { color: var(--gold-400); }
.nw-subscribe__inner { max-width: 720px; display: flex; flex-direction: column; align-items: center; }
.nw-subscribe__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.9vw, 2.625rem);
  font-weight: var(--fw-semi);
  line-height: 1.15;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 16px 0 14px;
  text-wrap: balance;
}
.nw-subscribe__text { font-size: var(--fs-body); line-height: 1.75; color: rgba(247, 242, 232, 0.74); max-width: 54ch; }
.nw-subscribe__form {
  display: flex;
  gap: 14px;
  width: min(100%, 560px);
  margin-top: var(--space-4);
}
.nw-subscribe__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(247, 242, 232, 0.28);
  color: var(--ivory-100);
}
.nw-subscribe__input::placeholder { color: rgba(247, 242, 232, 0.5); }
.nw-subscribe__input:hover:not(:disabled) { border-color: rgba(247, 242, 232, 0.45); }
.nw-subscribe__input:focus { border-color: var(--gold-500); box-shadow: var(--focus-ring); }
.nw-subscribe__btn { flex: none; gap: 10px; }
.nw-subscribe__note {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-wide);
  color: rgba(247, 242, 232, 0.54);
}
.nw-subscribe__spinner {
  display: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(13, 27, 46, 0.28);
  border-top-color: var(--navy-900);
  animation: nw-spin 0.7s linear infinite;
}
.nw-subscribe__btn.is-loading .nw-subscribe__spinner { display: inline-block; }
@keyframes nw-spin { to { transform: rotate(1turn); } }
.nw-subscribe__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gold-300);
}
.nw-subscribe__success .icon { width: 18px; height: 18px; color: var(--gold-400); }

/* ==========================================================================
   Responsive — tablet & mobile
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .nw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .nw-crumbs { padding-top: calc(var(--header-h) + var(--space-2)); }
  .nw-hero { padding: var(--space-6) clamp(20px, 5vw, 40px); }
  .nw-hero__title { font-size: clamp(2rem, 7.2vw, 2.375rem); }
  .nw-listing { padding-block: var(--space-6); }
  .nw-grid { grid-template-columns: 1fr; }
  .nw-subscribe { padding-block: var(--space-6); }
  .nw-subscribe__form { flex-direction: column; }
  .nw-subscribe__btn { justify-content: center; }
}
