/*
Theme Name: 4TG - For The Girls
Theme URI: https://4tgpodcast.com
Author: Kylie Lynch
Author URI: https://4tgpodcast.com
Description: A custom WordPress theme for 4TG - a women's sport media platform and podcast on a mission to keep girls in sport for longer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 4tg-theme
Tags: podcast, women, sports, custom-logo, custom-menu, featured-images, theme-options

4TG - For The Change. For The Future. For The Girls.
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --teal: #23CCCC;
  --bubbles: #E7FDFA;
  --rich-black: #003A3A;
  --black: #000000;
  --white: #FFFFFF;
  --teal-dark: #1db3b3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bubbles);
  color: var(--rich-black);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bubbles);
  border-bottom: 1px solid rgba(0, 58, 58, 0.08);
  padding: 16px 0 12px;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
  width: 90px;
  height: 90px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Centered Navigation */
.nav-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  font-size: 12px;
  font-weight: 600;
  color: var(--rich-black);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-list li a:hover {
  color: var(--teal);
}

.nav-cart {
  position: absolute;
  right: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-cart:hover {
  background: var(--teal);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  color: var(--rich-black);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 130px;
  left: 0;
  right: 0;
  background: var(--bubbles);
  z-index: 999;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 58, 58, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(0, 58, 58, 0.1);
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-list li a {
  display: block;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--rich-black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-list li a:hover {
  color: var(--teal);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--rich-black);
  color: var(--white);
  border-color: var(--rich-black);
}

.btn-primary:hover {
  background: transparent;
  color: var(--rich-black);
}

.btn-outline {
  background: transparent;
  color: var(--rich-black);
  border-color: var(--rich-black);
}

.btn-outline:hover {
  background: var(--rich-black);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-narrow {
  padding: 12px 20px;
  min-width: auto;
}

.btn-white {
  background: var(--white);
  color: var(--rich-black);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--bubbles);
  border-color: var(--bubbles);
}

/* ==========================================================================
   Hero Section - Diagonal Split (Option 7)
   ========================================================================== */
.hero-diagonal {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 130px;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 65% 0, 45% 100%, 0 100%);
}

.hero-content-bg {
  position: absolute;
  inset: 0;
  background: var(--rich-black);
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 45% 100%);
}

.hero-teal-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--teal);
  left: calc(55% - 4px);
  transform: skewX(-15deg);
  z-index: 5;
}

.hero-diagonal-content {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  padding: 60px;
  z-index: 10;
}

.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-logo {
  margin-bottom: 24px;
  text-align: center;
}

.hero-logo img {
  width: 120px;
  height: auto;
  display: inline-block;
}

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

.hero-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero-social-icons a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.hero-social-icons a:hover {
  background: var(--teal);
  transform: scale(1.1);
}

.hero-social-icons svg {
  width: 20px;
  height: 20px;
}

.hero-buttons .btn-primary {
  background: var(--teal);
  border-color: var(--teal);
}

.hero-buttons .btn-primary:hover {
  background: var(--white);
  color: var(--rich-black);
  border-color: var(--white);
}

.hero-buttons .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.hero-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--rich-black);
}

/* Legacy hero styles kept for compatibility */
.hero-visual {
  display: none;
}

.hero-grid {
  display: block;
}

.hero-image-grid {
  display: none;
}

/* ==========================================================================
   Stats Banner - Magazine Editorial (Option 6)
   ========================================================================== */
.stats-editorial {
  background: var(--bubbles);
  padding: 100px 0;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.stats-intro h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: var(--rich-black);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.stats-intro p {
  font-size: 15px;
  color: var(--rich-black);
  opacity: 0.7;
  line-height: 1.7;
}

.stats-editorial .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stats-editorial .stat-item {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--teal);
}

.stats-editorial .stat-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: var(--rich-black);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-editorial .stat-text {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
  line-height: 1.5;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--rich-black);
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   About Section
   ========================================================================== */
/* ==========================================================================
   Mission Section - Cards Grid (Option 4)
   ========================================================================== */
.mission-cards-section {
  padding: 100px 0;
  background: var(--white);
}

.mission-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.mission-header .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--rich-black);
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mission-subtitle {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.7;
  line-height: 1.7;
}

.mission-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.mission-card {
  background: var(--bubbles);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 58, 58, 0.1);
}

.mission-card-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  border: 3px solid var(--teal);
}

.mission-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mission-card-text {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
  line-height: 1.6;
}

.mission-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .mission-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   Host Section - Full Width Dark Split (Option 2)
   ========================================================================== */
.host-dark-split {
  background: #1a5a5a;
  position: relative;
  overflow: hidden;
}

.host-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.host-image-side {
  position: relative;
}

.host-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.host-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #1a5a5a 100%);
}

.host-content-side {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.host-content-side .section-label {
  color: var(--teal);
}

.host-dark-name {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1;
}

.host-dark-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.host-dark-text {
  font-size: 16px;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 16px;
}

.host-dark-quote {
  background: rgba(255,255,255,0.15);
  padding: 28px 32px;
  border-radius: 12px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  line-height: 1.7;
  border-left: 4px solid var(--teal);
  position: relative;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--rich-black);
}

.host-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.host-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s;
}

.host-social a:hover {
  background: var(--teal);
}

@media (max-width: 900px) {
  .host-dark-grid {
    grid-template-columns: 1fr;
  }

  .host-image-side {
    height: 400px;
  }

  .host-image-side::after {
    background: linear-gradient(to bottom, transparent 60%, #1a5a5a 100%);
  }

  .host-content-side {
    padding: 40px 24px 60px;
  }
}

/* ==========================================================================
   Watch/Video Section
   ========================================================================== */
.watch-section {
  padding: 100px 0;
  background: var(--rich-black);
}

.watch-section .section-header {
  margin-bottom: 48px;
}

.watch-section .section-title {
  color: var(--white);
}

.watch-section .section-subtitle {
  color: var(--white);
  opacity: 0.7;
}

/* YouTube Embed */
.youtube-embed-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.youtube-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-grid.video-single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

.video-card-featured {
  background: rgba(255, 255, 255, 0.08);
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--black);
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-content {
  padding: 20px;
}

.video-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.video-desc {
  font-size: 14px;
  color: var(--white);
  opacity: 0.7;
  line-height: 1.5;
}

/* ==========================================================================
   Episodes Section
   ========================================================================== */
.episodes-section {
  padding: 100px 0;
  background: var(--white);
}

.episodes-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--rich-black);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--rich-black);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rich-black);
  color: var(--white);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.episode-card {
  background: var(--rich-black);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.episode-card:hover {
  transform: translateY(-8px);
}

.episode-cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--rich-black) 0%, #005050 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.episode-play {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.episode-card:hover .episode-play {
  opacity: 1;
}

.episode-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.episode-content {
  padding: 16px;
  color: var(--white);
}

.episode-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.episode-meta {
  font-size: 12px;
  opacity: 0.6;
}

.view-all {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   Guest Carousel Section
   ========================================================================== */
.guest-carousel-section {
  padding: 100px 0;
  background: var(--white);
}

.guest-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.carousel-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s, transform 0.3s;
}

.carousel-nav:hover {
  background: var(--rich-black);
  transform: scale(1.1);
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
}

.guest-carousel-track {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.guest-carousel-track::-webkit-scrollbar {
  display: none;
}

.guest-carousel-grid {
  display: flex;
  gap: 24px;
  padding: 8px 0;
}

.guest-carousel-item {
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
}

.guest-carousel-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bubbles);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 48px;
  border: 3px solid var(--teal);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.guest-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-carousel-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.guest-carousel-item:hover .guest-carousel-image {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(35, 204, 204, 0.3);
}

.guest-carousel-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 4px;
}

.guest-carousel-item p {
  font-size: 12px;
  color: var(--rich-black);
  opacity: 0.7;
}

/* Form Messages */
.form-message {
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  text-align: center;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-notice {
  padding: 24px;
  background: var(--bubbles);
  border-radius: 8px;
  text-align: center;
  color: var(--rich-black);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background: var(--bubbles);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 58, 58, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--bubbles);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-desc {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link:hover {
  color: var(--rich-black);
}

/* ==========================================================================
   Shop Section
   ========================================================================== */
.shop-section {
  padding: 100px 0;
  background: var(--white);
}

.shop-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shop-card,
.woocommerce ul.products li.product {
  background: var(--bubbles);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.shop-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-8px);
}

.shop-image {
  height: 200px;
  background: var(--rich-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.shop-content {
  padding: 20px;
}

.shop-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--rich-black);
  margin: 8px 0;
}

.shop-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--rich-black);
}

.shop-coming-soon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.shop-preview-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

.shop-preview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-coming-soon-content {
  text-align: left;
}

.shop-coming-soon-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--rich-black);
  margin-bottom: 16px;
}

.shop-coming-soon-content p {
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.8;
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .shop-coming-soon {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .shop-coming-soon-content {
    text-align: center;
  }

  .shop-coming-soon-content h3 {
    font-size: 26px;
  }
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-icon {
  font-size: 48px;
  color: var(--teal);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--rich-black);
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: var(--rich-black);
}

.testimonial-role {
  font-size: 14px;
  color: var(--teal);
}

/* Featured Testimonial Section (with Kylie image) */
.testimonial-section-featured {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bubbles) 0%, #d4f7f4 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-section-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(35, 204, 204, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.testimonial-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-featured-image {
  position: relative;
}

.testimonial-featured-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 58, 58, 0.2);
}

.testimonial-featured-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 4px solid var(--teal);
  border-radius: 24px;
  z-index: -1;
}

.testimonial-featured-content {
  position: relative;
}

.testimonial-quote-mark {
  font-size: 120px;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.3;
  line-height: 0.8;
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: Georgia, serif;
}

.testimonial-quote-text {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--rich-black);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}

.testimonial-featured-author .author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 4px;
}

.testimonial-featured-author .author-role {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .testimonial-featured-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .testimonial-featured-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .testimonial-featured-image::before {
    display: none;
  }

  .testimonial-quote-mark {
    position: static;
    margin-bottom: -40px;
  }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  background: var(--rich-black);
  text-align: center;
}

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 60px 0 30px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-circle {
  width: 48px;
  height: 48px;
}

.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--teal);
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a,
.footer-column ul {
  list-style: none;
}

.footer-column a,
.footer-column li a {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.footer-column a:hover,
.footer-column li a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
}

.footer-tagline {
  color: var(--teal);
  font-weight: 600;
  opacity: 1;
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */
.woocommerce ul.products li.product a img {
  border-radius: 8px 8px 0 0;
}

.woocommerce ul.products li.product .price {
  color: var(--rich-black);
  font-weight: 800;
  font-size: 18px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover {
  background: var(--teal-dark) !important;
}

/* ==========================================================================
   Podcast Player Styles
   ========================================================================== */
.podcast-player {
  background: var(--rich-black);
  border-radius: 16px;
  padding: 24px;
  color: var(--white);
}

.ssp-player,
.powerpress_player {
  background: var(--rich-black);
  border-radius: 8px;
  padding: 16px;
}

/* ==========================================================================
   Contact Form Styles
   ========================================================================== */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(0, 58, 58, 0.1);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.wpcf7-form input[type="submit"] {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--teal-dark);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .host-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-intro {
    text-align: center;
  }

  .stats-editorial .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .episodes-grid,
  .services-grid,
  .shop-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .guest-carousel-grid {
    gap: 20px;
  }

  .guest-carousel-item {
    width: 120px;
  }

  .guest-carousel-image {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .host-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  /* Diagonal Hero Mobile */
  .hero-diagonal {
    min-height: auto;
    margin-top: 0;
  }

  .hero-image-bg {
    clip-path: none;
    position: relative;
    height: 50vh;
    min-height: 300px;
  }

  .hero-content-bg {
    clip-path: none;
    position: relative;
    height: auto;
  }

  .hero-teal-stripe {
    display: none;
  }

  .hero-diagonal-content {
    position: relative;
    width: 100%;
    top: 0;
    transform: none;
    padding: 40px 24px;
    background: var(--rich-black);
  }

  .hero-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .header {
    position: relative;
    padding: 12px 0;
  }

  .header .container {
    position: relative;
  }

  .nav-centered {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 24px;
    top: 12px;
  }

  .hero-diagonal-content {
    padding: 32px 20px;
  }

  .hero-tagline {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .episodes-grid,
  .services-grid,
  .shop-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .guest-carousel-grid {
    gap: 16px;
  }

  .guest-carousel-item {
    width: 100px;
  }

  .guest-carousel-image {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .guest-carousel-item h4 {
    font-size: 12px;
  }

  .guest-carousel-item p {
    font-size: 11px;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }

  .guest-carousel-wrapper {
    gap: 8px;
  }

  .episodes-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-editorial .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-editorial .stat-item {
    padding: 24px;
  }
}

/* ==========================================================================
   Page Templates - Shared Styles
   ========================================================================== */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, var(--bubbles) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(35, 204, 204, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.page-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--rich-black);
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 16px;
  letter-spacing: -1px;
}

.page-hero p {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.75;
  line-height: 1.7;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-intro {
  padding: 80px 0;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-content {
  text-align: left;
}

.about-intro-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro-content {
    text-align: center;
  }

  .about-intro-image {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }
}

.about-intro .lead-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--rich-black);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-intro p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-mission {
  padding: 80px 0;
  background: var(--bubbles);
}

.mission-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-block .section-title {
  margin-bottom: 24px;
}

.mission-block p {
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.85;
  line-height: 1.8;
}

/* Mission Video */
.mission-video-wrapper {
  max-width: 700px;
  margin: 48px auto 0;
}

.mission-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

.mission-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* About Image Section */
.about-image-section {
  padding: 100px 0;
  background: var(--white);
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-content p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-content .btn {
  margin-top: 16px;
}

.about-image-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

@media (max-width: 768px) {
  .about-image-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-visual {
    order: -1;
  }
}

.about-vision {
  padding: 100px 0;
  background: var(--white);
}

.vision-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.vision-header .section-title {
  margin-bottom: 16px;
}

.vision-intro {
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.8;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.vision-card {
  background: var(--bubbles);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.vision-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.vision-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vision-card p {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
  line-height: 1.6;
}

.vision-closing {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  font-style: italic;
}

@media (max-width: 768px) {
  .vision-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */
.services-intro {
  padding: 80px 0;
  background: var(--white);
}

.services-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-intro .highlight-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--rich-black);
  line-height: 1.5;
  margin-bottom: 24px;
}

.services-intro p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Services Intro Grid Layout */
.services-intro-grid {
  padding: 80px 0;
  background: var(--white);
}

.services-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-intro-split .services-intro-content {
  text-align: left;
  max-width: none;
  margin: 0;
}

.services-intro-split .highlight-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--rich-black);
  line-height: 1.4;
  margin-bottom: 24px;
}

.services-intro-split p {
  font-size: 17px;
  color: var(--rich-black);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 16px;
}

.services-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

.services-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services-intro-part2 {
  padding: 60px 0 80px;
  background: var(--bubbles);
}

.services-intro-content.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.services-intro-content.centered p {
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 20px;
}

.services-intro-content.centered .btn {
  margin-top: 16px;
}

/* 3-Column Service Details */
.service-details-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-details-3col .service-item {
  background: var(--bubbles);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.service-block[style*="bubbles"] .service-details-3col .service-item {
  background: var(--white);
}

.service-item-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-details-3col .service-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 12px;
}

.service-details-3col .service-item p {
  font-size: 15px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-details-3col .service-item ul {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 16px;
}

.service-details-3col .service-item li {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.85;
  margin-bottom: 8px;
}

.resources-signup {
  text-align: center;
  margin-top: 40px;
}

.resources-custom {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 58, 58, 0.1);
}

.resources-custom p {
  font-size: 18px;
  color: var(--rich-black);
  margin-bottom: 20px;
}

/* 3-column layout with image */
.service-details-3col-image {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.service-item-image {
  border-radius: 12px;
  overflow: hidden;
}

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details-3col-image .service-item {
  background: var(--bubbles);
  padding: 32px;
  border-radius: 12px;
}

.service-block[style*="white"] .service-details-3col-image .service-item {
  background: var(--bubbles);
}

.service-details-3col-image .service-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 12px;
}

.service-details-3col-image .service-item p {
  font-size: 15px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-details-3col-image .service-item ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-details-3col-image .service-item li {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.85;
  margin-bottom: 8px;
}

@media (max-width: 968px) {
  .service-details-3col-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-item-image {
    max-height: 300px;
  }
}

/* Standout Card Style */
.services-standout-card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 58, 58, 0.12);
  max-width: 800px;
  margin: 0 auto;
}

.services-standout-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--rich-black);
  margin-bottom: 20px;
}

.services-standout-card .cta-title {
  color: var(--rich-black);
}

.services-standout-card .cta-subtitle {
  color: var(--rich-black);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .services-standout-card {
    padding: 40px 24px;
  }
}

/* CTA Card with Gradient */
.services-cta-card {
  background: linear-gradient(135deg, var(--rich-black) 0%, #004d4d 50%, var(--teal) 100%);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.3), 0 8px 24px rgba(35, 204, 204, 0.2);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.services-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.services-cta-card .cta-title {
  color: var(--white);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.services-cta-card .cta-subtitle {
  color: var(--white);
  opacity: 0.9;
  font-size: 18px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .services-cta-card {
    padding: 50px 30px;
  }
}

/* 3-column layout with video */
.service-details-3col-video {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Video Thumbnail Placeholder */
.video-thumbnail-link {
  display: block;
  text-decoration: none;
}

/* Video Thumbnail with Cover Image */
.video-thumbnail-cover {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--rich-black);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-thumbnail-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.video-thumbnail-cover .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail-cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 58, 58, 0.2);
}

.video-thumbnail-cover:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
  color: var(--teal);
}

.video-thumbnail-placeholder {
  background: linear-gradient(135deg, var(--rich-black) 0%, #005555 100%);
  border-radius: 12px;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-thumbnail-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 58, 58, 0.2);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s, background 0.3s;
}

.video-thumbnail-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--white);
  color: var(--teal);
}

.video-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* YouTube Shorts Embed (Vertical Video) */
.service-video-embed {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--rich-black);
  aspect-ratio: 9/16;
  max-height: 450px;
}

.service-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.service-block-cta {
  text-align: center;
  margin-top: 40px;
}

.service-details-3col-video .service-item {
  background: var(--bubbles);
  padding: 32px;
  border-radius: 12px;
}

.service-block[style*="white"] .service-details-3col-video .service-item {
  background: var(--bubbles);
}

.service-block[style*="bubbles"] .service-details-3col-video .service-item {
  background: var(--white);
}

.service-details-3col-video .service-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 12px;
}

.service-details-3col-video .service-item p {
  font-size: 15px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-details-3col-video .service-item ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-details-3col-video .service-item li {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.85;
  margin-bottom: 8px;
}

@media (max-width: 968px) {
  .service-details-3col-video {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-item-video {
    min-height: 250px;
  }
}

@media (max-width: 968px) {
  .services-intro-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-intro-split .services-intro-content {
    text-align: center;
  }

  .service-details-3col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.why-kylie {
  padding: 100px 0;
  background: var(--bubbles);
}

.why-kylie-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.why-kylie-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.kylie-brings h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.kylie-brings ul {
  list-style: none;
}

.kylie-brings li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--rich-black);
  opacity: 0.85;
}

.kylie-brings li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.kylie-video {
  border-radius: 16px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
  max-width: 400px;
  aspect-ratio: 9/16;
}

.kylie-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-video {
  padding: 60px 0;
  background: var(--white);
}

.services-video .kylie-video {
  margin: 0 auto;
}

/* Services Video Grid Section */
.services-video-grid-section {
  padding: 80px 0;
  background: var(--white);
}

.services-video-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.services-video-content p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 24px;
}

.services-video-embed .youtube-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

/* Kylie Speaking Image */
.kylie-video-embed {
  border-radius: 16px;
  overflow: hidden;
}

.kylie-speaking-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

@media (max-width: 768px) {
  .services-video-grid {
    grid-template-columns: 1fr;
  }
}

/* Resources Section */
.resources-section {
  padding: 100px 0;
  background: var(--bubbles);
}

.resources-header {
  text-align: center;
  margin-bottom: 48px;
}

.resources-header p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.resource-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.1);
}

.resource-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.coming-soon-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* Services Testimonials */
.services-testimonials {
  padding: 100px 0;
  background: var(--rich-black);
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

.service-block {
  padding: 100px 0;
}

.service-block:nth-child(even) {
  background: var(--bubbles);
}

.service-block:nth-child(odd) {
  background: var(--white);
}

.service-block-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.service-block-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-block-header p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.service-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 16px;
}

.service-details p {
  font-size: 15px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-details ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-details li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.8;
}

.service-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

@media (max-width: 768px) {
  .why-kylie-content,
  .service-details {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Partners Page Styles
   ========================================================================== */
.partners-intro {
  padding: 80px 0;
  background: var(--white);
}

.partners-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partners-intro p {
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.85;
  line-height: 1.8;
}

/* Partners Intro Grid */
.partners-intro-grid {
  padding: 80px 0;
  background: var(--white);
}

.partners-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partners-intro-split .partners-intro-content {
  text-align: left;
  max-width: none;
  margin: 0;
}

.partners-intro-split h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--rich-black);
  margin-bottom: 20px;
}

.partners-intro-split p {
  font-size: 17px;
  margin-bottom: 24px;
}

.partners-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

.partners-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Partners Logos Grid */
.partners-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logo-item {
  display: block;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 58, 58, 0.1);
}

.partner-logo-item img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.partner-logo-labelled {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.partner-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .partners-intro-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partners-intro-split .partners-intro-content {
    text-align: center;
  }

  .partners-logos-grid {
    gap: 32px;
  }

  .partner-logo-item img {
    height: 60px;
  }
}

.partners-image {
  padding: 60px 0;
  background: var(--bubbles);
}

.partners-image img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

.featured-partners {
  padding: 100px 0;
  background: var(--white);
}

.featured-partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.partner-logo {
  max-width: 200px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo-placeholder {
  width: 200px;
  height: 100px;
  background: var(--bubbles);
  border: 2px dashed var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--rich-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* Partner logo styles defined above in Featured Partners section */

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.partner-card {
  background: var(--bubbles);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
}

.partner-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.partner-card-logo {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--rich-black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-text {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}

.partner-card-content {
  padding: 24px;
  text-align: center;
}

.partner-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.partner-card-content p {
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
  margin-bottom: 16px;
}

/* Support Section */
.support-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.support-content {
  max-width: 600px;
  margin: 0 auto;
}

.support-content p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 32px;
}

.support-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-with-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-cta {
  padding: 100px 0;
  background: var(--rich-black);
  text-align: center;
}

.partner-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.partner-cta p {
  font-size: 16px;
  color: var(--white);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.partner-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.partner-benefit {
  background: rgba(255,255,255,0.1);
  padding: 16px 24px;
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
}

/* ==========================================================================
   Coming Soon Pages (Shop, Blog)
   ========================================================================== */
.coming-soon-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bubbles) 0%, var(--white) 100%);
  text-align: center;
  min-height: 60vh;
}

.coming-soon-content {
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.coming-soon-content h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
}

.coming-soon-lead {
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-content p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.coming-soon-preview {
  max-width: 320px;
  margin: 48px auto;
  position: relative;
}

.coming-soon-preview img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 58, 58, 0.2);
  transition: transform 0.4s ease;
}

.coming-soon-preview:hover img {
  transform: scale(1.02);
}

.coming-soon-items {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.coming-soon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 58, 58, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.coming-soon-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 58, 58, 0.12);
}

.coming-soon-item .item-icon {
  font-size: 32px;
}

.coming-soon-item span:last-child {
  font-weight: 700;
  color: var(--rich-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.coming-soon-note {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.7;
  margin-bottom: 32px;
}

.coming-soon-cta {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 58, 58, 0.1);
}

.coming-soon-cta p {
  margin-bottom: 24px;
}

.coming-soon-list {
  list-style: none;
  margin: 32px 0;
  display: inline-block;
  text-align: left;
}

.coming-soon-list li {
  padding: 16px 0;
  font-size: 17px;
  color: var(--rich-black);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
}

.coming-soon-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.coming-soon-image {
  max-width: 320px;
  margin: 48px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 58, 58, 0.2);
}

.coming-soon-image img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 24px 0;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--bubbles);
  padding: 48px;
  border-radius: 12px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--rich-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--white);
  color: var(--rich-black);
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact CTA */
.contact-cta {
  padding: 80px 0;
}

.cta-tagline {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--rich-black);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 40px;
}

.contact-social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bubbles);
  border-radius: 50%;
  color: var(--rich-black);
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   Episodes Page Styles
   ========================================================================== */
.episodes-hero {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, var(--bubbles) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.episodes-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(35, 204, 204, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.episodes-hero .container {
  position: relative;
  z-index: 1;
}

.episodes-hero p {
  max-width: 650px;
  margin: 24px auto 0;
  font-size: 18px;
  color: var(--rich-black);
  opacity: 0.75;
  line-height: 1.7;
}

/* Hero Platform Buttons */
.hero-platform-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-platform-buttons .platform-btn {
  background: var(--rich-black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.hero-platform-buttons .platform-btn:hover {
  background: var(--teal);
}

/* YouTube Channel Embed */
.youtube-channel-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
  background: var(--rich-black);
}

.youtube-channel-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.embed-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
}

/* YouTube Playlist Embed for Home Page */
.youtube-playlist-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50.625%; /* 16:9 aspect ratio for max-width */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 58, 0.15);
  background: var(--rich-black);
}

.youtube-playlist-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .youtube-playlist-embed {
    padding-bottom: 56.25%;
  }
}

/* Guest Gallery Grid */
.guest-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.guest-gallery-grid .guest-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.guest-gallery-item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
}

.guest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guest-gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .guest-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guest-gallery-grid .guest-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.podcast-embed {
  padding: 80px 0;
  background: var(--bubbles);
}

.podcast-embed-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.podcast-embed h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.buzzsprout-embed {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  min-height: 400px;
  box-shadow: 0 16px 48px rgba(0, 58, 58, 0.08);
}

.what-youll-hear {
  padding: 100px 0;
  background: var(--white);
}

.what-youll-hear-header {
  text-align: center;
  margin-bottom: 48px;
}

.hear-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.hear-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hear-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.hear-item p {
  font-size: 15px;
  color: var(--rich-black);
  opacity: 0.85;
  line-height: 1.6;
}

.guest-carousel {
  padding: 100px 0;
  background: var(--bubbles);
}

.guest-carousel-header {
  text-align: center;
  margin-bottom: 48px;
}

.guest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guest-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

.guest-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal) 0%, var(--rich-black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
}

.guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-card h4 {
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--rich-black);
}

.testimonials-section {
  padding: 100px 0;
  background: var(--rich-black);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header .section-title {
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--white);
  opacity: 0.9;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.subscribe-section {
  padding: 100px 0;
  background: var(--white);
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.subscribe-content {
  text-align: left;
}

.subscribe-image {
  border-radius: 16px;
  overflow: hidden;
}

.subscribe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .subscribe-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subscribe-content {
    text-align: center;
  }

  .subscribe-image {
    order: -1;
  }
}

.subscribe-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--rich-black);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.subscribe-content p {
  font-size: 16px;
  color: var(--rich-black);
  opacity: 0.8;
  margin-bottom: 32px;
}

.subscribe-platforms {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--bubbles);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--rich-black);
  transition: all 0.3s;
}

.platform-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.platform-btn svg {
  width: 20px;
  height: 20px;
}

.subscribe-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 32px;
}

.subscribe-text a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s;
}

.subscribe-text a:hover {
  color: var(--teal-dark);
}

.subscribe-action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.subscribe-action-buttons .btn {
  display: inline-flex;
  align-items: center;
}

/* Episode Thumbnail Grid */
.episode-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.episode-thumb {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: var(--rich-black);
  transition: transform 0.3s, box-shadow 0.3s;
}

.episode-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
}

.episode-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 58, 58, 0.2);
}

.episode-thumb:hover img {
  opacity: 0.8;
}

.episode-thumb.active {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.episode-thumb:hover .thumb-play-icon {
  opacity: 1;
}

.thumb-hint {
  text-align: center;
  font-size: 14px;
  color: var(--rich-black);
  opacity: 0.7;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .episode-thumbnails-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .episode-thumbnails-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .thumb-play-icon {
    width: 32px;
    height: 32px;
  }

  .thumb-play-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Buzzsprout Embed */
.buzzsprout-embed {
  padding: 60px 0;
  background: var(--bubbles);
}

.buzzsprout-player {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.buzzsprout-player iframe {
  display: block;
}

@media (max-width: 768px) {
  .hear-list,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .guest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subscribe-action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   Blog Posts Section
   ========================================================================== */
.blog-posts-section {
  padding: 80px 0;
  background: var(--white);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 24px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.blog-post-date {
  color: var(--rich-black);
  opacity: 0.6;
}

.blog-post-category {
  background: var(--bubbles);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.blog-post-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-post-title a {
  color: var(--rich-black);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-post-title a:hover {
  color: var(--teal);
}

.blog-post-excerpt {
  font-size: 15px;
  color: var(--rich-black);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-read-more:hover {
  color: var(--rich-black);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--bubbles);
  color: var(--rich-black);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.blog-pagination a:hover {
  background: var(--teal);
  color: var(--white);
}

.blog-pagination .current {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 992px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-title {
    font-size: 18px;
  }
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */
.single-post-hero {
  padding: 80px 0 40px;
  background: var(--rich-black);
  color: var(--white);
  text-align: center;
}

.post-meta-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.post-meta-top .post-date {
  font-size: 14px;
  opacity: 0.7;
}

.post-meta-top .post-category {
  background: var(--teal);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.single-post-hero .post-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

.single-post-content {
  padding: 60px 0;
  background: var(--white);
}

.post-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.post-featured-image {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--rich-black);
}

.post-body p {
  margin-bottom: 24px;
}

.post-body h2 {
  font-size: 28px;
  margin: 48px 0 20px;
}

.post-body h3 {
  font-size: 22px;
  margin: 36px 0 16px;
}

.post-body ul,
.post-body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.post-body li {
  margin-bottom: 12px;
}

.post-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--bubbles);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 20px;
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.post-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--bubbles);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: var(--rich-black);
}

.post-tags a {
  background: var(--bubbles);
  color: var(--rich-black);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.post-tags a:hover {
  background: var(--teal);
  color: var(--white);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-label {
  font-weight: 600;
  color: var(--rich-black);
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bubbles);
  border-radius: 50%;
  color: var(--rich-black);
  transition: background 0.3s, color 0.3s;
}

.post-share a:hover {
  background: var(--teal);
  color: var(--white);
}

.post-navigation {
  padding: 40px 0;
  background: var(--bubbles);
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.post-nav-links a {
  text-decoration: none;
  max-width: 45%;
}

.nav-prev,
.nav-next {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-next {
  text-align: right;
  margin-left: auto;
}

.nav-label {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--rich-black);
  transition: color 0.3s;
}

.post-nav-links a:hover .nav-title {
  color: var(--teal);
}

.back-to-blog {
  padding: 40px 0 80px;
  text-align: center;
  background: var(--white);
}

@media (max-width: 768px) {
  .single-post-hero .post-title {
    font-size: 28px;
  }

  .post-body {
    font-size: 16px;
  }

  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-nav-links {
    flex-direction: column;
  }

  .post-nav-links a {
    max-width: 100%;
  }

  .nav-next {
    text-align: left;
  }
}

/* ==========================================================================
   4TG Studio Partner Section
   ========================================================================== */
.studio-partner-section {
  padding: 50px 0;
  background: var(--rich-black);
  position: relative;
  overflow: hidden;
}

.studio-partner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.studio-partner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.studio-partner-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal);
  margin-bottom: 16px;
}

.studio-partner-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.studio-partner-divider {
  width: 60px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 24px;
}

.studio-partner-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 48px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.studio-partner-logo-wrap img {
  max-height: 100px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .studio-partner-section {
    padding: 70px 0;
  }

  .studio-partner-heading {
    font-size: 26px;
  }

  .studio-partner-logo-wrap {
    padding: 24px 32px;
  }

  .studio-partner-logo-wrap img {
    max-height: 70px;
    max-width: 220px;
  }
}
