/* IUGB School of Science & Engineering - Main Stylesheet */

/* CSS Custom Properties (Variables) */
:root {
    --iugb-blue: #1a365d;
    --iugb-gold: #d4a544;
    --iugb-gold-dark: #b8922e;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-cream: #fffdf7;
    --border-light: #e2e8f0;
    --fixed-header-height: 158px;
}

/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* Fixed Top Section (Header + Navigation) */
.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Spacer to prevent content from hiding behind fixed header */
.header-spacer {
    height: var(--fixed-header-height);
}

/* =========================================================
   FIX: Desktop nav should be horizontal (row), not a column
   ========================================================= */

/* Desktop / large screens */
@media (min-width: 901px) {
  .main-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 28px;              /* adjust to taste */
    padding: 10px 0;
    margin: 0;
    list-style: none;
  }

  .main-nav li { margin: 0; }

  /* Hide hamburger on desktop */
  .nav-toggle { display: none; }

  /* Make sure the mobile "open" class doesn't change layout on desktop */
  .main-nav.open {
    flex-direction: row;
  }
}

/* Mobile only */
@media (max-width: 900px) {
  .main-nav {
    display: none;          /* closed by default */
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: flex; }
}

/********************************/
/* ==================================
   Navbar Search (Stanford style)
   ================================== */

.main-nav a[href$="search.html"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/*******************************/


/* Header */
header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
}

.logo-section img { height: 70px; }

.logo-text h1 {
    font-size: 2.50rem;
    font-weight: 700;
    color: var(--iugb-blue);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-gray);
    transition: all 0.2s;
}

.lang-btn:hover { border-color: var(--iugb-blue); color: var(--iugb-blue); }
.lang-btn.active { background: var(--iugb-blue); color: white; border-color: var(--iugb-blue); }


/* Navigation (Institutional / Stanford-style) */
nav#common-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--iugb-blue);
    border-radius: 2px;
}

/* Main nav */
.main-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  margin: 0;
}

.main-nav a {
    color: var(--iugb-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 8px 2px;
    display: inline-block;
}

.main-nav a:hover {
    color: #2c5282;
}

.main-nav a.active {
    border-bottom: 3px solid var(--iugb-gold);
}

/* Search icon sizing (fix 0x0 SVG) */
.nav-search-icon{
  width: 16px;
  height: 16px;
  display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
    :root { --fixed-header-height: 190px; }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 0 22px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 10px 24px;
        width: 100%;
    }
}

/* (Home hero moved to consolidated block below) */

/* (Brochure overrides moved to program_base.css) */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ==================================
   Standard Page Layout (no inline styles)
   Use for: Admissions, Contact, Search, etc.
   ================================== */

.standard-hero {
  padding: 60px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.standard-hero .standard-hero-inner {
  max-width: 820px;
}

.standard-hero h2 {
  color: var(--iugb-blue);
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 14px;
}

.standard-hero p {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.standard-main {
  padding: 70px 0;
  background: var(--bg-white);
}

.standard-main .standard-content {
  max-width: 920px;
  margin: 0 auto;
}

/* Optional: standard search row (used by search.html) */
.standard-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.standard-search-bar input[type="search"] {
  flex: 1;
  padding: 16px;
  font-size: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  outline: none;
}

.standard-search-bar input[type="search"]:focus {
  border-color: rgba(30, 64, 175, 0.45); /* uses your blue family */
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}

@media (max-width: 600px) {
  .standard-search-bar {
    flex-direction: column;
  }
  .standard-search-bar .btn {
    width: 100%;
  }
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-gold {
    background: var(--iugb-gold);
    color: var(--text-dark);
}

.btn-gold:hover { background: var(--iugb-gold-dark); }

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover { background: white; color: var(--iugb-blue); }

/* Programs Section */
.programs {
    padding: 70px 0;
    background: var(--bg-white);
}

/* ==============================
   Unified Section Header System
   Used across ALL pages
   ============================== */

.section-header {
    text-align: center;
    /*margin: 0 auto 48px;*/
	/*margin-top: 80px;
    margin-left: auto;*/
    max-width: 900px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--iugb-blue);
    margin: 0 0 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-gray);
    margin: 0 auto;
    max-width: 750px;
    line-height: 1.7;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--iugb-gold);
    border-radius: 14px;
    padding: 26px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 22px rgba(26,54,93,0.06);
}

.program-card:hover {
    border-color: rgba(26,54,93,0.25);
    box-shadow: 0 16px 34px rgba(26,54,93,0.10);
    transform: translateY(-3px);
}

/* Unique background colors for each program */
/* Program cards: clean institutional (gold accent, no gradients) */
.program-card.ai,
.program-card.cs,
.program-card.ds,
.program-card.math,
.program-card.petro,
.program-card.mech,
.program-card.stats {
  background: #fff;
  border-color: var(--border-light);
}

.program-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 1.15rem;
    color: var(--iugb-blue);
    margin-bottom: 8px;
}

.program-card p {
    color: #101216;
    font-size: 1.1rem;
    line-height: 1.6;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d4a544;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 12px;
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--iugb-blue);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Faculty Preview Section */
/* ─────────────────────────────────────────────
   HOMEPAGE — Meet Our Faculty
   Portrait cards: photo top, info below.
   Replaces the old tiny-circle avatar layout.
   ───────────────────────────────────────────── */

.faculty-preview {
  padding: 80px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.faculty-cards-home {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

/* Portrait card */
.fac-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-white);
  transition: box-shadow 0.22s, transform 0.18s;
}

.fac-card:hover {
  box-shadow: 0 8px 28px rgba(26, 54, 93, 0.12);
  transform: translateY(-4px);
}

/* Photo area — portrait ratio, scales with card width */
.fac-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--bg-light);
}

/* Body */
.fac-card__body {
  padding: 11px 13px 14px;
  border-top: 3px solid var(--iugb-gold);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fac-card__role {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iugb-gold-dark);
  margin-bottom: 4px;
}

.fac-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--iugb-blue);
  line-height: 1.25;
  margin-bottom: 3px;
}

.fac-card__dept {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.35;
  flex-grow: 1;
}

.fac-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--iugb-blue);
  opacity: 0;
  transition: opacity 0.18s, color 0.18s;
}

.fac-card__arrow svg {
  width: 11px; height: 11px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.18s;
}

.fac-card:hover .fac-card__arrow { opacity: 1; }
.fac-card:hover .fac-card__arrow svg { transform: translateX(3px); }

/* Old avatar classes — suppressed */
.faculty-grid { display: none; }
.faculty-icon { display: none; }

@media (max-width: 1024px) {
  .faculty-cards-home { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .faculty-cards-home { grid-template-columns: repeat(3, 1fr); }
}

/* Faculty Profile Page Styles */
.faculty-profile {
    padding: 60px 0;
    background: var(--bg-white);
}

.profile-header {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.profile-photo {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.profile-info h1 {
    font-size: 2.2rem;
    color: var(--iugb-blue);
    margin-bottom: 8px;
}

.profile-info .title {
    font-size: 1.2rem;
    color: var(--iugb-gold-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-info .department {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.profile-info .bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.profile-section {
    margin-bottom: 40px;
}

.profile-section h2 {
    font-size: 1.5rem;
    color: var(--iugb-blue);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--iugb-gold);
}

.profile-section p {
    line-height: 1.8;
    color: var(--text-dark);
}

.profile-section ul {
    list-style: none;
    padding: 0;
}

.profile-section li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-dark);
}

.profile-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--iugb-gold);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--iugb-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--iugb-gold-dark);
}

/* CTA Section */
.cta {
    background: var(--iugb-gold);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta p {
    color: white;
    opacity: 100.00;
    font-size: 1.25rem;
    margin-bottom: 28px;
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-blue {
    background: var(--iugb-blue);
    color: white;
}

.cta .btn-blue:hover { background: #2c5282; }

/* Footer */
footer {
    background: var(--iugb-blue);
    color: white;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--iugb-gold);
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.8);
    font-size: 1.0rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer-section a:hover { color: var(--iugb-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --fixed-header-height: 200px;
    }
    .hero-content { grid-template-columns: 1fr; }
    .hero h2 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    nav a { padding: 8px 12px; font-size: 0.8rem; }
    .profile-header { grid-template-columns: 1fr; text-align: center; }
    .profile-photo { margin: 0 auto; }
}

/* Developer Credit */
.developer-credit {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--iugb-gold);
    font-style: italic;
}

/* Tighten fixed header stacking */
.fixed-top header { margin: 0; }
.fixed-top nav { margin: 0; }

/******************************************************************************************** */
/* ===========================
   Home page redesign (index)
   =========================== */

/* Softer overall section rhythm */
.home-section { padding: 70px 0; }

/* Home Hero (clean white, Stanford-ish) */
.home-hero {
  background: var(--bg-white);
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--border-light);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}
.home-kicker {
  color: var(--text-gray);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.home-hero h2 {
  color: var(--iugb-blue);
  font-size: 2.6rem;
  line-height: 1.12;
  margin-bottom: 14px;
}
.home-lede {
  color: var(--text-gray);
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.home-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Secondary button (dark outline) */
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--iugb-blue);
  color: var(--iugb-blue);
}
.btn-outline-dark:hover {
  background: var(--iugb-blue);
  color: white;
}

/* Hero image */
.home-hero-media {
  justify-self: stretch;
}

.home-hero-media img {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 34px rgba(26,54,93,0.15);
}

/* Quick links row */
/* Prevent grid children from pushing layout */
.home-hero-copy,
.home-hero-media,
.quicklinks,
.quicklink {
  min-width: 0;
}

.quicklinks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.quicklink {
  text-decoration: none;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--bg-light);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.quicklink:hover {
  border-color: rgba(26,54,93,0.35);
  box-shadow: 0 10px 22px rgba(26,54,93,0.10);
  transform: translateY(-2px);
}
.ql-title {
  display: block;
  color: var(--iugb-blue);
  font-weight: 800;
  line-height: 1.2;
}
.ql-sub {
  display: block;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Home stats: subtle cards on white — sits flush below editorial hero */
.home-stats {
  background: var(--bg-white);
  padding: 40px 0 0;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.stat-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 18px;
  background: var(--bg-white);
  transition: box-shadow 0.18s;
  text-align: center;
}
.stat-card:hover {
  box-shadow: 0 4px 14px rgba(26,54,93,0.08);
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--iugb-blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* Programs section spacing (your current is 5px; this fixes the “cramped/clipped” feel) */
.programs { padding: 70px 0; }

/* Updates cards */
.home-updates { background: var(--bg-light); border-top: 1px solid var(--border-light); }
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.update-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px;
}
.update-card h3 {
  color: var(--iugb-blue);
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.update-card p { color: var(--text-gray); margin-bottom: 10px; }

/* Small “text link” style */
.text-link {
  color: var(--iugb-blue);
  text-decoration: none;
  font-weight: 700;
}
.text-link:hover { color: var(--iugb-gold-dark); }
.home-more { margin-top: 14px; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .quicklinks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .updates-grid { grid-template-columns: 1fr; }
  .home-hero h2 { font-size: 2.05rem; }
}

/* ==================================
   Search Page Styling
   ================================== */

.search-page {
  padding: 80px 0;
  background: var(--bg-white);
}

.search-page h2 {
  margin-bottom: 30px;
  color: var(--iugb-blue);
  font-size: 2rem;
}

.search-box {
  display: flex;
  gap: 10px;
  max-width: 700px;
}

.search-box input {
  flex: 1;
  padding: 16px;
  font-size: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.search-box button {
  padding: 0 24px;
  background: var(--iugb-blue);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.search-box button:hover {
  background: var(--iugb-gold-dark);
}



/* ============================================================
   STANFORD-STYLE AUDIENCE BAR
   "Information for: Students | Faculty & Staff | Families | Alumni"
   ============================================================ */

.audience-bar {
    background: var(--iugb-blue);
    border-bottom: 2px solid var(--iugb-gold);
}

.audience-bar__inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    justify-content: flex-end;
}

.audience-bar__label {
    font-size: 0.90rem;
    font-weight: 600;
    color: rgba(255,255,255,0.99);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-right: 14px;
    white-space: nowrap;
}

.audience-link {
    font-size: 0.99rem;
    font-weight: 600;
    color: rgba(255,255,255,0.99);
    text-decoration: none;
    padding: 3px 12px;
    border-radius: 2px;
    letter-spacing: 0.02em;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
}

.audience-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.audience-link.active {
    color: var(--iugb-gold);
    border-bottom: 2px solid var(--iugb-gold);
}

/* Separator dots between links */
.audience-link + .audience-link::before {
    content: '·';
    color: rgba(255,255,255,0.35);
    margin-right: 12px;
    font-weight: 400;
}

@media (max-width: 600px) {
    .audience-bar__label { display: none; }
    .audience-link { padding: 3px 8px; font-size: 0.78rem; }
}
