/* GE Podcast — Main stylesheet
   Mirrors gowithelmo-site/index.html (Vercel design) exactly,
   prefixed with .ge- to avoid Bridge conflicts. */

:root {
  --ge-bg: #080808;
  --ge-bg2: #0f0f0f;
  --ge-bg3: #161616;
  --ge-gold: #F5C842;
  --ge-gold2: #FFB800;
  --ge-blue: #4DFFDF;
  --ge-white: #FFFFFF;
  --ge-gray: #999999;
  --ge-gray2: #555555;
  --ge-border: rgba(255,255,255,0.07);
}

body.ge-active { background: var(--ge-bg); color: var(--ge-white); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }
body.ge-active a { color: var(--ge-white); }

/* Kill underlines on all .ge-* link surfaces — front page link cards must be plain */
body.ge-active .ge-episode-card,
body.ge-active .ge-episode-card *,
body.ge-active .ge-playlist-card,
body.ge-active .ge-playlist-card *,
body.ge-active .ge-pros-cta-btn,
body.ge-active .ge-platform-btn,
body.ge-active .ge-nav-logo,
body.ge-active .ge-nav-links a,
body.ge-active .ge-footer a,
body.ge-active .ge-mobile-menu a,
body.ge-active .ge-btn-watch,
body.ge-active .ge-btn-ghost { text-decoration: none !important; border-bottom: none !important; }

/* ── SECTION COMMONS ── */
.ge-section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ge-gold); margin-bottom: 20px;
}
.ge-section-label::before { content: ''; width: 24px; height: 2px; background: var(--ge-gold); }
.ge-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 16px;
}
.ge-section-desc { color: var(--ge-gray); font-size: 17px; line-height: 1.65; max-width: 480px; }

/* ── HERO ── */
.ge-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; overflow: hidden;
}
.ge-hero-collage {
  position: absolute; top: 80px; left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: calc(100vw / 5 * 9 / 16);
  z-index: 0; overflow: hidden; align-content: start;
}
.ge-hero-collage img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.75) brightness(0.65);
}
.ge-hero-collage-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.72) 40%,
    rgba(8,8,8,0.82) 100%);
}
.ge-hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); z-index: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,66,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.ge-hero > *:not(.ge-hero-glow):not(.ge-hero-collage):not(.ge-hero-collage-overlay) {
  position: relative; z-index: 2;
}
.ge-hero-logo {
  height: clamp(200px, 27vw, 340px); width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 60px rgba(245,200,66,0.35));
}

.ge-waveform { display: flex; align-items: center; gap: 4px; height: 32px; margin-bottom: 24px; justify-content: center; }
.ge-waveform .wave-bar { width: 3px; background: var(--ge-gold); border-radius: 2px; animation: ge-wave 1.2s ease-in-out infinite; }
@keyframes ge-wave { 0%, 100% { height: 8px; } 50% { height: 24px; } }
.ge-waveform .wave-bar:nth-child(2)  { animation-delay: 0.05s; }
.ge-waveform .wave-bar:nth-child(3)  { animation-delay: 0.10s; }
.ge-waveform .wave-bar:nth-child(4)  { animation-delay: 0.15s; }
.ge-waveform .wave-bar:nth-child(5)  { animation-delay: 0.20s; }
.ge-waveform .wave-bar:nth-child(6)  { animation-delay: 0.25s; }
.ge-waveform .wave-bar:nth-child(7)  { animation-delay: 0.30s; }
.ge-waveform .wave-bar:nth-child(8)  { animation-delay: 0.35s; }
.ge-waveform .wave-bar:nth-child(9)  { animation-delay: 0.40s; }
.ge-waveform .wave-bar:nth-child(10) { animation-delay: 0.45s; }
.ge-waveform .wave-bar:nth-child(11) { animation-delay: 0.50s; }
.ge-waveform .wave-bar:nth-child(12) { animation-delay: 0.55s; }
.ge-waveform .wave-bar:nth-child(13) { animation-delay: 0.60s; }
.ge-waveform .wave-bar:nth-child(14) { animation-delay: 0.65s; }
.ge-waveform .wave-bar:nth-child(15) { animation-delay: 0.70s; }

.ge-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px; font-weight: 700;
  color: var(--ge-gold); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 36px;
}
.ge-hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--ge-gold); border-radius: 50%;
  animation: ge-pulse 2s infinite; flex-shrink: 0;
}
@keyframes ge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.5); }
}

.ge-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--ge-white);
  letter-spacing: -0.5px; line-height: 1.2;
  margin-bottom: 14px;
  max-width: 640px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
}

.ge-hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8);
}
.ge-hero-sub strong { color: rgba(255,255,255,0.95); font-weight: 600; }

.ge-hero-platforms {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center;
}
.ge-platform-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 10px 18px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.ge-platform-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.ge-platform-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.ge-platform-subscribe { background: var(--ge-gold) !important; color: #000 !important; border-color: var(--ge-gold) !important; font-weight: 700; }

/* ── LATEST EPISODE ── */
.ge-latest-ep-section {
  background: var(--ge-bg2);
  border-top: 1px solid var(--ge-border); border-bottom: 1px solid var(--ge-border);
  padding: 72px 48px;
}
.ge-latest-ep-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center;
}
.ge-latest-ep-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 18px; overflow: hidden; cursor: pointer;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--ge-border);
}
.ge-latest-ep-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ge-latest-ep-thumb:hover img { transform: scale(1.04); }
.ge-latest-ep-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.ge-latest-ep-thumb:hover .ge-latest-ep-overlay { background: rgba(0,0,0,0.45); }
.ge-latest-play-btn {
  width: 68px; height: 68px; border-radius: 50%; background: var(--ge-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(245,200,66,0.15), 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.ge-latest-play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.ge-latest-ep-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 2vw, 30px); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px;
}
.ge-latest-ep-desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.ge-latest-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ge-btn-watch {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ge-gold); color: #000; border: none;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  padding: 13px 24px; border-radius: 100px; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.ge-btn-watch:hover { opacity: 0.85; transform: scale(0.98); }
.ge-btn-watch svg { width: 16px; height: 16px; }
.ge-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ge-white); cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  padding: 12px 24px; border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s;
}
.ge-btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* ── STATS BAR ── */
.ge-stats-bar {
  background: var(--ge-bg2); border-top: 1px solid var(--ge-border); border-bottom: 1px solid var(--ge-border);
  padding: 32px 48px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.ge-stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 56px; border-right: 1px solid var(--ge-border);
}
.ge-stat-item:last-child { border-right: none; }
.ge-stat-num {
  font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800;
  line-height: 1; color: var(--ge-white); letter-spacing: -1px;
}
.ge-stat-num span { color: var(--ge-gold); }
.ge-stat-label {
  font-size: 12px; color: var(--ge-gray); font-weight: 500;
  letter-spacing: 0.5px; margin-top: 6px; text-transform: uppercase;
}

/* ── HOST ── */
.ge-host-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.ge-host-image-wrap { position: relative; }
.ge-host-image-wrap::before {
  content: ''; position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--ge-gold), transparent 50%, var(--ge-blue) 100%);
  border-radius: 24px; z-index: 0;
}
.ge-host-image {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5;
  background: var(--ge-bg3); border-radius: 22px; overflow: hidden;
}
.ge-host-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ge-host-name {
  font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800;
  letter-spacing: -2px; line-height: 1; margin-bottom: 8px;
}
.ge-host-title {
  color: var(--ge-gold); font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.ge-host-bio { color: var(--ge-gray); font-size: 16px; line-height: 1.75; }

/* ── EPISODES ── */
.ge-episodes-section { padding: 80px 48px 48px; max-width: 1200px; margin: 0 auto; }
.ge-episodes-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.ge-episodes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.ge-episode-card {
  background: var(--ge-bg2); border: 1px solid var(--ge-border); border-radius: 16px;
  overflow: hidden; transition: all 0.25s; cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.ge-episode-card:hover { border-color: rgba(245,200,66,0.3); transform: translateY(-4px); }
.ge-ep-thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--ge-bg3); }
.ge-ep-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.ge-episode-card:hover .ge-ep-thumb img { transform: scale(1.04); }
.ge-ep-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.ge-episode-card:hover .ge-ep-thumb-overlay { opacity: 1; }
.ge-ep-play-btn {
  width: 52px; height: 52px; border-radius: 50%; background: var(--ge-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4); transition: transform 0.2s;
}
.ge-episode-card:hover .ge-ep-play-btn { transform: scale(1.08); }
.ge-ep-play-btn svg { width: 18px; height: 18px; margin-left: 3px; }
.ge-ep-body { padding: 18px 20px 20px; }
.ge-ep-num {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ge-gold); margin-bottom: 8px;
}
.ge-ep-title {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  line-height: 1.4; color: var(--ge-white);
}
.ge-more-eps-wrap { display: flex; justify-content: center; margin-top: 40px; }
#ge-more-eps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--ge-gold); color: var(--ge-gold);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  padding: 12px 28px; border-radius: 100px; cursor: pointer;
  transition: background 0.2s, color 0.2s; letter-spacing: 0.3px;
}
#ge-more-eps-btn:hover { background: var(--ge-gold); color: #000; }

/* ── PLAYLISTS ── */
.ge-playlists-section { padding: 0 48px 80px; max-width: 1200px; margin: 0 auto; }
.ge-playlists-wrap {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-top: 48px;
}
.ge-playlist-card {
  background: rgba(245, 200, 66, 0.08); border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.2s;
  text-decoration: none !important; color: inherit;
}
.ge-playlist-card:hover { border-color: var(--ge-gold); transform: translateY(-3px); }
.ge-playlist-card:hover * { text-decoration: none !important; }
.ge-playlist-icon { display: none !important; }
.ge-playlist-name {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700;
  letter-spacing: -0.3px; color: var(--ge-white);
}
.ge-playlist-count { font-size: 13px; color: var(--ge-gray); font-weight: 500; }
.ge-playlist-guests { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 8px; line-height: 1.5; }

/* ── TESTIMONIALS ── */
.ge-testimonials-section { padding: 0 48px 80px; max-width: 1200px; margin: 0 auto; }
.ge-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.ge-testimonial-card { background: var(--ge-bg2); border: 1px solid var(--ge-border); border-radius: 20px; padding: 32px; }
.ge-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.ge-star { color: var(--ge-gold); font-size: 16px; }
.ge-testimonial-text { color: var(--ge-gray); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.ge-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ge-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ge-gold), #FF8C42);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #000; flex-shrink: 0;
}
.ge-author-name { font-weight: 600; font-size: 14px; }
.ge-author-handle { font-size: 12px; color: var(--ge-gray); }

/* ── PROS WATCHING ── */
.ge-pros-section { position: relative; overflow: hidden; padding: 0; }
.ge-pros-bg { position: absolute; inset: 0; }
.ge-pros-bg img { display: none; }
.ge-pros-bg-overlay { position: absolute; inset: 0; background: var(--ge-bg); }
.ge-pros-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 48px 48px 80px; }
.ge-pros-left { max-width: 540px; margin-bottom: 56px; }
.ge-pros-right { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ge-pros-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.05; color: #fff; margin-bottom: 14px;
}
.ge-pros-subheading { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.ge-pros-cta-btn {
  display: inline-block; background: var(--ge-gold); color: #000;
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 40px; border-radius: 8px; text-decoration: none; transition: opacity 0.2s;
}
.ge-pros-cta-btn:hover { opacity: 0.85; }
.ge-notif-card {
  background: rgba(22,22,22,1); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 14px;
  display: flex; align-items: center; gap: 11px; height: 72px; box-sizing: border-box;
}
.ge-notif-avatar-wrap { position: relative; width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; overflow: hidden; }
.ge-notif-avatar-wrap span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #fff;
}
.ge-notif-avatar-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ge-notif-info { flex: 1; min-width: 0; }
.ge-notif-user { font-weight: 700; font-size: 0.82rem; color: #fff; }
.ge-notif-badge { color: #3897f0; font-size: 0.7rem; margin: 0 2px; }
.ge-notif-action { font-size: 0.82rem; color: rgba(255,255,255,0.55); display: block; }
.ge-notif-time { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-left: 4px; }

/* ── NEWSLETTER ── */
.ge-newsletter-section { padding: 48px 48px 80px; }
.ge-newsletter-inner {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(245,200,66,0.1) 0%, rgba(77,255,223,0.05) 100%);
  border: 1px solid rgba(245,200,66,0.2); border-radius: 32px;
  padding: 72px; text-align: center; position: relative; overflow: hidden;
}
.ge-newsletter-inner::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ge-newsletter-sub { color: rgba(255,255,255,0.7); font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.ge-newsletter-form {
  display: flex; gap: 8px; max-width: 460px; margin: 0 auto; flex-wrap: wrap;
}
.ge-newsletter-input {
  flex: 1; min-width: 200px;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 14px 22px;
  color: var(--ge-white); font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none;
}
.ge-newsletter-input:focus { border-color: var(--ge-gold); }
.ge-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.ge-newsletter-btn {
  background: var(--ge-gold); color: #000; border: none;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  padding: 14px 28px; border-radius: 100px; cursor: pointer;
  transition: opacity 0.2s;
}
.ge-newsletter-btn:hover { opacity: 0.85; }
.ge-newsletter-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ge-newsletter-msg { margin-top: 16px; font-size: 14px; min-height: 20px; }

/* ── VIDEO MODAL ── */
.ge-video-modal { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 24px; }
.ge-video-modal.open { display: flex; }
.ge-video-modal-inner { position: relative; width: 100%; max-width: 960px; }
.ge-video-modal-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: #fff;
  font-size: 28px; cursor: pointer; opacity: 0.7;
}
.ge-video-modal-close:hover { opacity: 1; }
.ge-video-modal-frame {
  aspect-ratio: 16/9; width: 100%; border-radius: 16px;
  overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.ge-video-modal-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ge-latest-ep-inner { grid-template-columns: 1fr; }
  .ge-host-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .ge-pros-right { grid-template-columns: repeat(2, 1fr); }
  .ge-testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ge-hero { padding: 100px 20px 60px; }
  .ge-hero-collage { grid-template-columns: repeat(3, 1fr); grid-auto-rows: calc(100vw / 3 * 9 / 16); top: 76px; }
  .ge-hero-collage-overlay { background: linear-gradient(to bottom, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.78) 40%, rgba(8,8,8,0.95) 100%); }
  .ge-stats-bar { padding: 24px 16px; }
  .ge-stat-item { padding: 0 24px; }
  .ge-stat-num { font-size: 32px; }
  .ge-episodes-section, .ge-playlists-section, .ge-testimonials-section, .ge-latest-ep-section { padding-left: 20px; padding-right: 20px; }
  .ge-newsletter-section { padding: 32px 20px 48px; }
  .ge-newsletter-inner { padding: 40px 24px; border-radius: 20px; }
  .ge-pros-inner { padding: 32px 20px 60px; }
  .ge-pros-right { grid-template-columns: 1fr; }
  .ge-host-name { font-size: 36px; }
}
