  /* ─── LOGO WALL ─── */
  .logo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.75rem 2.5rem;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    border-top: none;
    border-bottom: none;
  }
  .logo-wall-item {
    transition: opacity 0.3s var(--ease);
    cursor: default;
    opacity: 0.85;
  }
  .logo-wall-item:hover { opacity: 1; }
  .logo-wall-item img {
    height: 18px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  /* ─── CAROUSEL ─── */
  .press-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem 4rem;
  }

  .carousel-wrapper {
    position: relative;
    margin-bottom: 2rem;
  }

  .carousel-inner {
    overflow: hidden;
  }

  /* Opacity fade edges */
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }

  .carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--warm-white), rgba(253,251,246,0));
  }

  .carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--warm-white), rgba(253,251,246,0));
  }

  /* Side arrows */
  .carousel-btn-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(44,36,22,0.12);
    border-radius: 50%;
    background: white;
    color: var(--ink);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease);
    box-shadow: 0 2px 8px rgba(44,36,22,0.1);
  }

  .carousel-btn-side:hover {
    border-color: var(--amber);
    box-shadow: 0 4px 12px rgba(44,36,22,0.15);
  }

  .carousel-btn-side.prev { left: 16px; }
  .carousel-btn-side.next { right: 16px; }

  .carousel-track-container {
    overflow: hidden;
    padding: 0 0;
  }

  .carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s var(--ease);
    padding: 0.5rem 0;
  }

  .carousel-card {
    flex-shrink: 0;
    width: 360px;
    background: white;
    border: 1px solid rgba(44,36,22,0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease);
  }

  .carousel-card { cursor: pointer; text-decoration: none; color: inherit; }
  .carousel-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
  }

  .carousel-outlet {
    margin-bottom: 1rem;
    height: 16px;
  }

  .carousel-outlet img {
    height: 14px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .carousel-title {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    flex: 1;
  }

  .carousel-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
  }

  .carousel-title a:hover { color: var(--sage); }

  .carousel-excerpt {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .carousel-type {
    font-family: 'Barlow', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
  }

  .carousel-type[data-type="article"] { background: rgba(92,122,82,0.08); color: var(--sage); }
  .carousel-type[data-type="podcast"] { background: rgba(120,80,140,0.08); color: #78508C; }
  .carousel-type[data-type="video"] { background: rgba(181,100,80,0.08); color: #B56450; }

  .carousel-link {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sage);
    text-decoration: none;
    transition: color 0.3s;
  }

  .carousel-link:hover { color: var(--ink); }

  /* ─── FULL ARTICLE LIST ─── */
  .article-list-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem 4rem;
  }

  .article-list-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(44,36,22,0.06);
  }

  .article-list-label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    opacity: 0.5;
  }

  .article-list-count {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    color: var(--ink-light);
    opacity: 0.4;
  }

  .filter-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(44,36,22,0.1);
    border-radius: 100px;
    background: transparent;
    color: var(--ink-light);
    cursor: pointer;
    transition: all 0.2s var(--ease);
  }

  .filter-btn:hover { border-color: var(--amber); color: var(--ink); }
  .filter-btn.active { background: var(--ink); color: var(--warm-white); border-color: var(--ink); }

  .article-row {
    display: grid;
    grid-template-columns: 32px 120px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44,36,22,0.04);
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .article-row:hover { background: rgba(196,150,26,0.02); }

  .article-row-logo {
    width: 32px;
    height: 14px;
    object-fit: contain;
    display: block;
  }

  .article-row-logo.podcast-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  .article-row-outlet {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.4;
  }

  .article-row-title {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    transition: color 0.3s;
  }

  .article-row:hover .article-row-title { color: var(--sage); }

  .article-row-type {
    font-family: 'Barlow', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    white-space: nowrap;
  }

  .article-row-type[data-type="article"] { background: rgba(92,122,82,0.08); color: var(--sage); }
  .article-row-type[data-type="podcast"] { background: rgba(120,80,140,0.08); color: #78508C; }
  .article-row-type[data-type="video"] { background: rgba(181,100,80,0.08); color: #B56450; }

  .no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--ink-light);
    font-size: 1.1rem;
  }

  /* ─── PAGINATION ─── */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0;
    margin-top: 1rem;
  }

  .pagination button {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(44,36,22,0.12);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--ink-light);
    cursor: pointer;
    transition: all 0.2s var(--ease);
  }

  .pagination button:hover { border-color: var(--amber); color: var(--ink); }
  .pagination button.active { background: var(--ink); color: var(--warm-white); border-color: var(--ink); }
  .pagination button:disabled { opacity: 0.3; cursor: default; }

  .pagination .page-arrow {
    font-size: 1rem;
    padding: 0 0.75rem;
  }

  /* ─── TABLET: convert carousel to 2-col grid ─── */
  @media (min-width: 700px) and (max-width: 900px) {
    .carousel-wrapper::before,
    .carousel-wrapper::after { display: none; }
    .carousel-btn-side { display: none !important; }
    .carousel-inner { overflow: visible; }
    .carousel-track-container { overflow: visible; }
    .carousel-track {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      transform: none !important;
      padding: 0.5rem 0;
    }
    .carousel-card {
      width: auto;
      flex-shrink: 1;
    }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .press-section { padding: 0 1.5rem 3rem; }
    .article-list-section { padding: 0 1.5rem 3rem; }
    .carousel-card { width: 300px; }
    .carousel-wrapper { overflow: hidden; }
    .carousel-track-container { overflow: hidden; }
    .carousel-link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      font-size: 0.85rem;
    }
    .carousel-type { font-size: 0.75rem; }
    .article-row { grid-template-columns: 28px 100px 1fr auto; gap: 0.75rem; }
    .article-row-title { font-size: 0.88rem; }
    .article-row-title a,
    .article-row .article-row-title {
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .article-row-type { font-size: 0.75rem; }
    .article-list-label { font-size: 0.85rem; }
    .filter-btn {
      padding: 0.75rem 1.2rem;
      font-size: 0.875rem;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .pagination button,
    .pagination .page-arrow { min-width: 44px; min-height: 44px; font-size: 0.875rem; }
  }

  @media (max-width: 600px) {
    /* ─── HERO / LOGO WALL: tighter grid so press list is closer to fold ─── */
    .page-header .page-desc {
      max-width: 32ch;
      font-size: 0.95rem;
      margin-left: auto;
      margin-right: auto;
    }
    .logo-wall {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem 1rem;
      padding: 1.5rem 0.5rem;
      margin-bottom: 1.75rem;
      justify-items: center;
      align-items: center;
    }
    .logo-wall-item {
      display: flex !important;
      justify-content: center;
      align-items: center;
      min-width: 44px;
      min-height: 44px;
      padding: 0.5rem;
    }
    /* Standardize logo weight: cap all logos visually equal */
    .logo-wall-item img {
      height: 18px !important;
      max-width: 100%;
      width: auto;
      opacity: 0.75;
      filter: grayscale(100%) contrast(1.1);
    }

    /* Press carousel arrows: hide on mobile (swipe is the input) */
    .carousel-btn-side { display: none !important; }

    /* ─── FILTER PILLS: meet 44px tap target ─── */
    .filter-row { gap: 0.55rem; }
    .filter-btn {
      min-height: 44px;
      min-width: 56px;
      padding: 0.7rem 1.1rem;
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* ─── ARTICLE ROW: type badge above title, more breathing room ─── */
    .article-row {
      grid-template-columns: 1fr;
      gap: 0.4rem;
      padding: 1.1rem 0.25rem;
    }
    .article-row-logo { display: none; }
    .article-row-outlet {
      display: block !important;
      font-family: 'Barlow', sans-serif;
      font-size: 12px !important;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-light);
      opacity: 0.7;
      margin-bottom: 0.15rem;
    }
    .article-row-date {
      font-size: 12px !important;
      color: var(--ink-light);
      opacity: 0.6;
      margin-top: 0.15rem;
    }
    .article-row-excerpt {
      font-size: 13px !important;
      color: var(--ink-light);
      line-height: 1.5;
      margin-top: 0.35rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-row-type {
      justify-self: start;
      align-self: start;
      font-size: 0.62rem;
      padding: 0.22rem 0.55rem;
      order: -1;
      margin-bottom: 0.15rem;
    }
    .article-row-title {
      font-size: 0.95rem;
      line-height: 1.4;
      min-height: 0;
      display: block;
      padding-right: 0.25rem;
    }

    /* ─── ARTICLE LIST HEADER: bump count contrast/size ─── */
    .article-list-count {
      font-size: 0.8rem;
      opacity: 0.65;
      color: var(--ink);
    }

    /* ─── PAGINATION: tighter group, visible active, separator ─── */
    .pagination {
      gap: 0.35rem;
      padding: 1.5rem 0 2rem;
      margin-top: 0.5rem;
      border-top: 1px solid rgba(44,36,22,0.06);
    }
    .pagination button,
    .pagination .page-arrow {
      min-width: 44px;
      min-height: 44px;
      padding: 0 0.6rem;
      font-size: 0.9rem;
    }
    .pagination button.active {
      background: var(--ink);
      color: var(--warm-white);
      border-color: var(--ink);
      box-shadow: 0 2px 6px rgba(44,36,22,0.15);
    }

    /* ─── FOOTER: ensure social icon anchors meet 44px tap target ─── */
    footer .footer-col a[title] {
      min-width: 44px;
      min-height: 44px;
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
    }
  }
