*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-900: #0a1f44;
      --blue-800: #0d2856;
      --blue-700: #1a3a6e;
      --blue-600: #1e4d8c;
      --blue-500: #2563b0;
      --blue-400: #3b82d4;
      --blue-300: #6aadeb;
      --blue-100: #dbeafe;
      --blue-50:  #eff6ff;
      --gold:     #e8a020;
      --gold-light: #fef3c7;
      --text-dark: #0f172a;
      --text-mid:  #334155;
      --text-muted: #64748b;
      --border:   #cbd5e1;
      --white:    #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #f8fafd;
      color: var(--text-dark);
      line-height: 1.6;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
      padding: 72px 24px 56px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--blue-900);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 16px;
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.15;
    }
    .hero p {
      color: var(--blue-300);
      font-size: 1.05rem;
      max-width: 560px;
      margin: 0 auto 32px;
      font-weight: 300;
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 36px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .stat-label { font-size: 12px; color: var(--blue-300); letter-spacing: 0.5px; margin-top: 4px; }

    /* ── LAYOUT ── */
    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ── TABS ── */
    .tabs-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 2px solid var(--blue-100);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .tabs {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      gap: 4px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .tabs::-webkit-scrollbar { display: none; }
    .tab-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 16px 22px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: all 0.2s;
    }
    .tab-btn:hover { color: var(--blue-600); }
    .tab-btn.active {
      color: var(--blue-600);
      border-bottom-color: var(--blue-600);
      font-weight: 600;
    }

    /* ── FILTERS / SEARCH ── */
    .controls {
      padding: 28px 0 20px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    .search-box {
      flex: 1;
      min-width: 220px;
      position: relative;
    }
    .search-box input {
      width: 100%;
      padding: 10px 16px 10px 40px;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border 0.2s;
    }
    .search-box input:focus { border-color: var(--blue-400); }
    .search-box svg {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
    }
    .filter-select {
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text-mid);
      outline: none;
      cursor: pointer;
      background: var(--white);
    }
    .filter-select:focus { border-color: var(--blue-400); }
    .results-count {
      font-size: 13px;
      color: var(--text-muted);
      margin-left: auto;
    }

    /* ── SECTION PANELS ── */
    .tab-panel { display: none; padding-bottom: 60px; }
    .tab-panel.active { display: block; }

    /* ── PRESS RELEASE CARDS ── */
    .pr-grid {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      align-items: start;
    }
    @media (max-width: 860px) {
      .pr-grid { grid-template-columns: 1fr; }
    }

    .pr-list { display: flex; flex-direction: column; gap: 20px; }

    .pr-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
    }
    .pr-card:hover {
      box-shadow: 0 8px 32px rgba(30,77,140,0.12);
      transform: translateY(-2px);
    }
    .pr-card.expanded .pr-body { display: block; }
    .pr-head {
      padding: 20px 24px;
      border-left: 4px solid var(--blue-500);
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .pr-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: var(--blue-50);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue-600);
    }
    .pr-meta { flex: 1; }
    .pr-date-loc {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 6px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .pr-date-loc span { display: flex; align-items: center; gap: 4px; }
    .pr-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--blue-800);
      line-height: 1.35;
      margin-bottom: 8px;
    }
    .pr-excerpt { font-size: 13.5px; color: var(--text-mid); line-height: 1.55; }
    .pr-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
    .tag {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }
    .tag-health { background: #dcfce7; color: #15803d; }
    .tag-women  { background: #fce7f3; color: #9d174d; }
    .tag-csr    { background: #fef9c3; color: #854d0e; }
    .tag-youth  { background: #dbeafe; color: #1d4ed8; }
    .tag-env    { background: #d1fae5; color: #065f46; }

    .pr-toggle {
      font-size: 12px;
      color: var(--blue-500);
      font-weight: 600;
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      user-select: none;
    }
    .pr-body {
      display: none;
      padding: 0 24px 24px 24px;
      border-top: 1px solid var(--blue-50);
      margin-top: 0;
    }
    .pr-body-inner {
      padding-top: 16px;
      font-size: 13.5px;
      color: var(--text-mid);
      line-height: 1.7;
    }
    .pr-body-inner p { margin-bottom: 12px; }
    .pr-body-inner blockquote {
      border-left: 3px solid var(--blue-400);
      padding: 10px 16px;
      background: var(--blue-50);
      border-radius: 0 6px 6px 0;
      font-style: italic;
      margin: 16px 0;
      color: var(--blue-700);
    }
    .pr-footer {
      padding: 14px 24px;
      background: var(--blue-50);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .pr-footer a {
      font-size: 13px;
      color: var(--blue-600);
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .pr-footer a:hover { text-decoration: underline; }
    .pr-download {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--blue-600);
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .pr-download:hover { background: var(--blue-700); }

    /* ── SIDEBAR ── */
    .sidebar { display: flex; flex-direction: column; gap: 20px; }

    .sidebar-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }
    .sidebar-header {
      background: var(--blue-800);
      color: var(--white);
      padding: 12px 18px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .sidebar-body { padding: 16px 18px; }

    .related-item {
      padding: 10px 0;
      border-bottom: 1px solid var(--blue-50);
      cursor: pointer;
    }
    .related-item:last-child { border-bottom: none; }
    .related-date { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; }
    .related-title {
      font-size: 13px;
      color: var(--blue-700);
      font-weight: 500;
      line-height: 1.4;
    }
    .related-title:hover { text-decoration: underline; }

    .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
    .contact-item:last-child { margin-bottom: 0; }
    .contact-ico {
      width: 32px; height: 32px;
      background: var(--blue-50);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue-600);
      flex-shrink: 0;
    }
    .contact-info { font-size: 13px; }
    .contact-label { font-size: 11px; color: var(--text-muted); margin-bottom: 1px; }

    .note-box {
      background: var(--gold-light);
      border: 1px solid #fcd34d;
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 13px;
      color: #78350f;
      line-height: 1.55;
    }

    /* ── MEDIA COVERAGE ── */
    .coverage-section { margin-bottom: 40px; }
    .coverage-section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--blue-100);
    }
    .coverage-section-title h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--blue-800);
    }
    .badge {
      background: var(--blue-600);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .badge-print    { background: #475569; }
    .badge-online   { background: #0891b2; }
    .badge-elec     { background: #7c3aed; }

    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 14px;
    }
    .cov-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px 18px;
      transition: box-shadow 0.2s;
    }
    .cov-card:hover { box-shadow: 0 4px 16px rgba(30,77,140,0.1); }
    .cov-type {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }
    .cov-headline {
      font-size: 14px;
      font-weight: 600;
      color: var(--blue-800);
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .cov-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }
    .cov-source a {
      font-size: 12px;
      color: var(--blue-500);
      text-decoration: none;
      word-break: break-all;
    }
    .cov-source a:hover { text-decoration: underline; }
    .cov-excerpt {
      font-size: 12.5px;
      color: var(--text-mid);
      line-height: 1.55;
      margin-top: 8px;
      border-top: 1px solid var(--blue-50);
      padding-top: 8px;
    }

    /* ── PAGINATION ── */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 32px;
    }
    .page-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      color: var(--text-mid);
    }
    .page-btn:hover { border-color: var(--blue-400); color: var(--blue-600); }
    .page-btn.active { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }

    /* ── NEWSLETTER ── */
    .media-kit-banner {
      background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
      border-radius: 12px;
      padding: 32px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin: 28px 0 0;
    }
    .media-kit-text h3 {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 6px;
    }
    .media-kit-text p { color: var(--blue-300); font-size: 14px; }
    .media-kit-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold);
      color: var(--blue-900);
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 13px;
      border: none;
      padding: 10px 22px;
      border-radius: 6px;
      cursor: pointer;
      transition: opacity 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-primary:hover { opacity: 0.88; }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 13px;
      border: 1px solid rgba(255,255,255,0.4);
      padding: 10px 22px;
      border-radius: 6px;
      cursor: pointer;
      transition: border-color 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-outline-white:hover { border-color: var(--white); }

    .empty-state {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .empty-state svg { margin-bottom: 12px; opacity: 0.4; }
    .empty-state p { font-size: 15px; }

    @media (max-width: 600px) {
      .hero-stats { gap: 24px; }
      .media-kit-banner { padding: 24px; }
      .pr-head { flex-direction: column; }
    }