/* ============================================================
   rossgsaunders.com — Design System
   Matches freebies.rossgsaunders.com
   ============================================================ */

:root {
  --pink:      #FF0759;
  --pink-dk:   #CC0044;
  --dark:      #0d0d14;
  --dark2:     #14141f;
  --dark3:     #1c1c2e;
  --offwhite:  #f5f5f0;
  --text:      #1a1a2a;
  --muted:     #666;
  --border:    #e0e0e0;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Nav ── */
.nav {
  background: var(--dark);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 32px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a.active {
  border-bottom: 2px solid var(--pink);
  padding-bottom: 2px;
}
.nav-cta {
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--pink-dk); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 80px 40px 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 120%, rgba(255,7,89,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-two-col {
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-text { flex: 1; min-width: 0; }
.hero-image {
  flex-shrink: 0;
  width: 380px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--pink);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── Image placeholder ── */
.img-placeholder {
  background: var(--dark3);
  border: 2px dashed rgba(255,7,89,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 420px;
  width: 100%;
  border-radius: 0;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Sections ── */
.section      { padding: 72px 40px; }
.section-alt  { background: var(--offwhite); }
.section-dark { background: var(--dark2); color: #fff; }
.section-pink { background: var(--pink); color: #fff; }

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,0.5); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}
.section-title em {
  font-style: normal;
  color: var(--pink);
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}
.section-desc.light { color: rgba(255,255,255,0.65); }
.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--pink);
  margin: 20px auto 32px;
}
.section-divider.left { margin-left: 0; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--dark);
  padding: 40px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  display: block;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 16px 40px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--pink-dk); transform: translateY(-1px); }
.btn-primary.large { font-size: 16px; padding: 18px 48px; }
.btn-primary.white { background: #fff; color: var(--pink); }
.btn-primary.white:hover { background: rgba(255,255,255,0.9); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--pink);
  color: var(--pink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 38px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-outline.light {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
}
.btn-outline.light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-dark {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.card-dark:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

/* ── Keynote cards ── */
.keynotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.keynote-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--pink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.keynote-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255,7,89,0.12);
  padding: 4px 10px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.keynote-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 8px;
}
.keynote-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  font-style: italic;
}
.keynote-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}
.keynote-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.keynote-best-for {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.keynote-best-for strong { color: rgba(255,255,255,0.6); }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.service-item {
  padding: 28px 32px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  transition: background 0.2s;
}
.service-item:hover { background: #fafafa; }
.service-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Full service cards (services page) */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--pink);
  padding: 32px 28px;
}
.service-card-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.service-card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.blog-card:hover .blog-title { color: var(--pink); }
.blog-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.blog-date {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Blog post list (alternative layout) */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.blog-list-item:first-child { border-top: 1px solid var(--border); }
.blog-list-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--dark);
  padding: 10px 8px;
}
.blog-list-date-month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}
.blog-list-date-day {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.blog-list-meta { flex: 1; min-width: 0; }
.blog-list-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.blog-list-item:hover .blog-list-title { color: var(--pink); }
.blog-list-excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; }
.blog-list-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.blog-list-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--pink);
  opacity: 0.4;
  align-self: center;
  transition: opacity 0.15s;
}
.blog-list-item:hover .blog-list-arrow { opacity: 1; }

/* ── Blog post body ── */
.post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px;
}
.post-header { margin-bottom: 40px; }
.post-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.post-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.post-date { font-size: 13px; color: var(--muted); }
.post-divider {
  width: 48px;
  height: 3px;
  background: var(--pink);
  margin: 24px 0 40px;
}
.post-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.post-body h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 44px 0 16px;
  color: var(--text);
}
.post-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 32px 0 12px;
  color: var(--text);
}
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-body li { line-height: 1.65; }
.post-body a { color: var(--pink); text-decoration: underline; }
.post-body strong { font-weight: 600; }
.post-body blockquote {
  border-left: 3px solid var(--pink);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  color: var(--muted);
  font-style: italic;
}

/* ── Testimonial ── */
.testimonial-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 16px;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}
.testimonial-quote::before { content: '\201C'; color: var(--pink); }
.testimonial-quote::after  { content: '\201D'; color: var(--pink); }
.testimonial-source {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonial-source strong { color: rgba(255,255,255,0.7); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--pink);
  padding: 28px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.testimonial-name strong { color: rgba(255,255,255,0.65); }

/* ── Events ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--pink);
  padding: 24px;
}
.event-dark {
  background: var(--dark3);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.event-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.event-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}
.event-dark .event-title { color: #fff; }
.event-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.event-dark .event-meta { color: rgba(255,255,255,0.45); }
.event-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.event-dark .event-desc { color: rgba(255,255,255,0.6); }

/* ── Resources / Freebies ── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--pink);
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, background 0.2s;
}
.resource-card:hover {
  background: rgba(255,255,255,0.03);
  border-left-color: var(--pink-dk);
}
.resource-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.resource-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.resource-card:hover .resource-title { color: var(--pink); }
.resource-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.center { align-items: center; }
.two-col-reversed { direction: rtl; }
.two-col-reversed > * { direction: ltr; }

/* ── Bullet list ── */
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullets li {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 7px;
}
.bullets.dark li { color: var(--muted); }
.bullets.dark li::before { background: var(--pink); }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.checklist li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA strip ── */
.cta-strip {
  background: var(--pink);
  padding: 60px 40px;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-strip-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Newsletter embed placeholder ── */
.newsletter-embed {
  background: var(--dark3);
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 40px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 560px;
  margin: 32px auto 0;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 32px 40px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer a { color: var(--pink); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ── Podcast strip ── */
.podcast-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--pink);
  padding: 24px 28px;
  text-decoration: none;
  max-width: 640px;
  transition: background 0.2s;
}
.podcast-strip:hover { background: rgba(255,255,255,0.03); }
.podcast-cover { width: 72px; height: 72px; flex-shrink: 0; object-fit: cover; }
.podcast-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.podcast-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.podcast-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ============================================================
   Responsive — 720px breakpoint
   ============================================================ */
@media (max-width: 720px) {
  .nav { padding: 14px 20px; gap: 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); flex-direction: column; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; width: 100%; border-bottom: none !important; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }

  .hero { padding: 52px 24px 60px; }
  .hero-two-col { flex-direction: column-reverse; gap: 32px; }
  .hero-image { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero h1 { font-size: clamp(40px, 10vw, 56px); }
  .hero-sub { font-size: 16px; }

  .section { padding: 52px 24px; }
  .stats-bar { padding: 36px 24px; }
  .stats-bar-inner { flex-direction: column; gap: 28px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 0; }

  .keynotes-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }

  .post-wrap { padding: 48px 24px; }
  .cta-strip { padding: 48px 24px; }
  .cta-strip-actions { flex-direction: column; align-items: center; }

  .podcast-strip { flex-direction: column; text-align: center; }

  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; }
}
