  /* =========================================================
     ARTICLES-PAGE SPECIFIC COMPONENTS
     ========================================================= */

  /* Hero override — typographic, no map */
  .hero-articles{ text-align: left; }
  .hero-articles .hero-grid{ grid-template-columns: 1fr; gap: 0; }
  .hero-articles h1{
    font-size: clamp(56px, 7.5vw, 124px);
    max-width: 1100px;
  }

  /* Topic chips (filter row) */
  .chips{
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 40px;
  }
  .chip{
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 10px 16px;
    border: 1px solid rgba(170,143,87,.4);
    color: rgba(237,235,228,.8);
    background: transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    text-decoration: none;
    display: inline-flex;
  }
  .chip:hover{
    border-color: var(--color-gold-antique);
    color: var(--color-sand-warm);
  }
  .chip.is-active{
    background: var(--color-gold-antique);
    border-color: var(--color-gold-antique);
    color: var(--color-moss-dark);
  }

  /* Topic-filtered-out archive cards */
  .post.is-hidden{ display: none; }

  /* Inline newsletter strip (on dark hero) */
  .news-strip{
    margin-top: 48px;
    padding: 22px 26px;
    border: 1px solid rgba(170,143,87,.45);
    border-left: 3px solid var(--color-gold-antique);
    background: rgba(170,143,87,.04);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    max-width: 880px;
  }
  .news-strip .news-copy{
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.3;
    color: var(--color-sand-warm);
  }
  .news-strip .news-copy .eb{
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--color-gold-antique);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .news-strip .news-form{
    display: flex;
    min-width: 320px;
  }
  .news-strip .news-form input{
    flex: 1;
    padding: 14px 18px;
    background: #fff;
    color: var(--color-ink);
    border: 1px solid rgba(170,143,87,.5);
    border-right: 0;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    min-width: 200px;
  }
  .news-strip .news-form input::placeholder{ color: var(--fg-muted); font-style: italic; }
  .news-strip .news-form input:focus{ border-color: var(--color-gold-antique); }
  .news-strip .news-form button{
    appearance: none;
    background: var(--color-gold-antique);
    color: var(--color-moss-dark);
    border: 1px solid var(--color-gold-antique);
    padding: 14px 22px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background .2s, color .2s;
    white-space: nowrap;
  }
  .news-strip .news-form button:hover{
    background: var(--color-moss-dark);
    color: var(--color-gold-antique);
  }

  /* Featured spread (1 big + 2 small) */
  .featured-spread{
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .feat-lead{
    background: #fff;
    border: 1px solid rgba(170,143,87,.3);
    display: grid;
    grid-template-rows: 1fr auto;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  .feat-lead:hover{
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(27,35,29,.12);
    border-color: var(--color-gold-antique);
  }
  .feat-cover{
    position: relative;
    aspect-ratio: 16/9;
    background: var(--color-moss-dark);
    overflow: hidden;
  }
  .feat-cover image-slot{
    position: absolute; inset: 0; width: 100%; height: 100%;
  }
  .feat-cover::after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(170,143,87,.18), transparent 50%);
    z-index: 1;
    pointer-events: none;
  }
  .feat-body{
    padding: 32px 36px 36px;
  }
  .feat-meta{
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gold-antique);
    margin-bottom: 16px;
  }
  .feat-lead h2{
    font-family: var(--font-display);
    font-weight: 300;
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.02;
    color: var(--color-ink);
    margin: 0 0 18px;
  }
  .feat-lead h2 em{ font-style: italic; color: var(--color-gold-antique); }
  .feat-lead p{
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg-2);
    margin: 0 0 22px;
  }
  .feat-read{
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-moss-light);
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .feat-read::after{
    content: "→"; transition: transform .2s;
  }
  .feat-lead:hover .feat-read::after{ transform: translateX(6px); }

  .feat-side{
    display: grid;
    gap: 24px;
    align-content: stretch;
  }
  .feat-mini{
    background: #fff;
    border: 1px solid rgba(170,143,87,.3);
    padding: 28px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  .feat-mini:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(27,35,29,.10);
    border-color: var(--color-gold-antique);
  }
  .feat-mini .meta{
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gold-antique);
    margin-bottom: 14px;
  }
  .feat-mini h3{
    font-family: var(--font-display);
    font-weight: 300;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.1;
    color: var(--color-ink);
    margin: 0 0 12px;
  }
  .feat-mini h3 em{ font-style: italic; color: var(--color-gold-antique); }
  .feat-mini p{
    font-size: 14px;
    line-height: 1.55;
    color: var(--fg-2);
    margin: 0 0 16px;
  }
  .feat-mini .read{
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-moss-light);
    align-self: end;
  }
  .feat-mini .read::after{ content: " →"; }

  /* Archive grid (12+ cards) */
  .archive{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .archive .post{
    background: #fff;
    border: 1px solid rgba(170,143,87,.3);
    padding: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  .archive .post:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(27,35,29,.10);
    border-color: var(--color-gold-antique);
  }
  .archive .post-cover{
    aspect-ratio: 3/2;
    background: var(--color-moss-dark);
    position: relative;
    overflow: hidden;
  }
  .archive .post-cover image-slot{
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 0;
  }
  .archive .post-cover::after{
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(170,143,87,.10), transparent 50%),
      linear-gradient(180deg, transparent 50%, rgba(27,35,29,.18));
    z-index: 1;
    pointer-events: none;
  }
  .archive .post-meta{
    padding: 24px 24px 12px 24px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gold-antique);
  }
  .archive .post h3{
    padding: 0 24px;
    font-family: var(--font-display);
    font-weight: 300;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 22px;
    line-height: 1.15;
    color: var(--color-ink);
    margin: 0 0 12px;
  }
  .archive .post h3 em{ font-style: italic; color: var(--color-gold-antique); }
  .archive .post p{
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--fg-2);
    margin: 0;
  }
  .archive .post .read{
    margin: 0 24px 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(170,143,87,.3);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-moss-light);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .archive .post .read::after{
    content:"→"; transition: transform .2s;
  }
  .archive .post:hover .read::after{ transform: translateX(4px); }

  .archive-foot{
    text-align: center;
    margin-top: 64px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--fg-muted);
    font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 16px;
  }
  .archive-foot::before, .archive-foot::after{
    content: "";
    width: 60px;
    height: 1px;
    background: rgba(170,143,87,.5);
  }

  /* Videos grid (3-up) */
  .video-grid-3{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
  }
  .video-card-3{
    background: #fff;
    border: 1px solid rgba(170,143,87,.3);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-rows: auto 1fr;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  .video-card-3:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(27,35,29,.10);
    border-color: var(--color-gold-antique);
  }
  .video-thumb{
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(170,143,87,.3);
  }
  .video-thumb iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .video-thumb image-slot{ position: absolute; inset: 0; width: 100%; height: 100%; }
  .video-thumb .play-pill{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    border: 1px solid rgba(237,235,228,.5);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-sand-warm);
    font-family: var(--font-body);
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
  }
  .video-card-3 .vbody{ padding: 24px 26px 28px; }
  .video-card-3 .vmeta{
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gold-antique);
    margin-bottom: 10px;
  }
  .video-card-3 h3{
    font-family: var(--font-display);
    font-weight: 300;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 22px;
    line-height: 1.15;
    color: var(--color-ink);
    margin: 0 0 8px;
  }
  .video-card-3.lead h3{ font-size: 28px; }
  .video-card-3 p{
    font-size: 13px;
    line-height: 1.55;
    color: var(--fg-2);
    margin: 0;
  }

  /* Newsletter — final */
  .news-final{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .news-final h2{
    font-family: var(--font-display);
    font-weight: 300;
    text-transform: none;
    letter-spacing: -0.015em;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.02;
    color: var(--color-sand-warm);
    margin: 14px 0 16px;
  }
  .news-final h2 em{ font-style: italic; color: var(--color-gold-antique); }
  .news-final p{
    font-size: 16px;
    line-height: 1.55;
    color: rgba(237,235,228,.78);
    margin: 0;
  }
  .news-final form{
    background: rgba(237,235,228,.05);
    border: 1px solid rgba(170,143,87,.4);
    padding: 32px;
  }
  .news-final form .field{
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(170,143,87,.35);
    padding-bottom: 10px;
  }
  .news-final form .field label{
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gold-antique);
    margin-bottom: 8px;
  }
  .news-final form .field input,
  .news-final form .field select{
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--color-sand-warm);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 6px 0;
    outline: none;
  }
  .news-final form .field input::placeholder{ color: var(--fg-on-dark-muted); font-style: italic; }
  .news-final form button{
    width: 100%;
    background: var(--color-gold-antique);
    color: var(--color-moss-dark);
    border: 0;
    padding: 16px 22px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 12px;
    transition: background .2s, color .2s;
  }
  .news-final form button:hover{
    background: var(--color-moss-dark);
    color: var(--color-gold-antique);
    box-shadow: inset 0 0 0 1px var(--color-gold-antique);
  }
  .news-final form .micro{
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold-antique);
    text-align: center;
    margin: 14px 0 0;
    font-weight: 600;
  }

  @media (max-width: 960px){
    .featured-spread, .news-final{ grid-template-columns: 1fr; }
    .archive{ grid-template-columns: 1fr; }
    .video-grid-3{ grid-template-columns: 1fr; }
    .news-strip{ grid-template-columns: 1fr; }
    .news-strip .news-form{ min-width: 0; }
  }
