/*
Theme Name: TCREI Podcast
Theme URI: https://twincitiesrealestateinvesting.com
Author: Custom Development
Description: A custom WordPress theme for Twin Cities Real Estate Investing podcast with YouTube playlist integration
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: tcrei-podcast
*/

/* === Google Fonts === */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* === CSS Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Global Styles === */
html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* Smooth scroll offset for anchor links */
section[id] {
  scroll-margin-top: 100px;
}

a {
  text-decoration: none;
  color: #4a90e2;
  transition: color 0.3s ease;
}

a:hover {
  color: #357abd;
}

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

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

/* === Alternating Section Backgrounds === */
.site-main > section:nth-of-type(odd) {
  background-color: #f8f9fa;
}

.site-main > section:nth-of-type(even) {
  background-color: white;
}

/* === Promotional Banner === */
.promo-banner {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.promo-banner a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

/* === Secondary Banner === */
.secondary-banner {
  background: linear-gradient(135deg, #60a5fa 0%, #4a90e2 100%);
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
}

.secondary-banner a {
  color: white;
  text-decoration: underline;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header .container {
  max-width: 100%;
  padding: 0 40px;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.site-logo a {
  line-height: 0;
}

.site-logo img,
.site-logo .logo-img {
  height: 70px;
  width: auto;
  max-width: 380px;
  transition: opacity 0.3s ease;
}

.site-logo img:hover,
.site-logo .logo-img:hover {
  opacity: 0.85;
}

.site-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  margin: 0;
  margin-right: 15px;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.main-navigation a {
  color: #333;
  font-weight: 700;
  font-size: 15px;
}

.main-navigation a:hover {
  color: #4a90e2;
}

.main-navigation .menu-item-cta a {
  color: #e53935;
}

.main-navigation .menu-item-cta a:hover {
  color: #b71c1c;
}

.nav-search-icon {
  cursor: pointer;
  font-size: 18px;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Navigation Styles */
@media (max-width: 1026px) {
  .hamburger-menu {
    display: flex;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-navigation.active {
    right: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .main-navigation a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* === Hero Section === */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #3b7bbf 0%, #5a94d5 50%, #7aabea 100%);
  background-image: url("images/minneapolis-skyline.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(59, 123, 191, 0.85);
  z-index: 1;
}

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

.hero-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  font-family: "Inter", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 22px;
  color: white;
  margin-bottom: 35px;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.subscribe-button {
  display: inline-block;
  background: linear-gradient(135deg, #c94647 0%, #b23435 100%);
  color: white;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 70, 71, 0.4);
}

.subscribe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 70, 71, 0.6);
  color: white;
}

.podcast-platforms {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.platform-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  backdrop-filter: blur(10px);
}

.platform-icon svg {
  width: 28px;
  height: 28px;
}

.platform-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  color: white;
}

/* Apple Podcasts - Purple */
.platform-icon[aria-label="Apple Podcasts"] {
  background: linear-gradient(135deg, #d77ff0 0%, #a855f7 100%);
}

.platform-icon[aria-label="Apple Podcasts"]:hover {
  background: linear-gradient(135deg, #e0a0f5 0%, #b976f8 100%);
}

/* Spotify - Green */
.platform-icon[aria-label="Spotify"] {
  background: #1db954;
}

.platform-icon[aria-label="Spotify"]:hover {
  background: #1ed760;
}

/* === Latest Episode Section === */
.latest-episode-section {
  padding: 60px 0;
}

.section-header-bar {
  margin-bottom: 40px;
}

.section-title-bar {
  font-size: 24px;
  font-weight: 700;
  color: #3b7bbf;
  font-family: "Inter", sans-serif;
  padding-bottom: 10px;
  border-bottom: 4px solid #3b7bbf;
  display: inline-block;
}

.featured-episode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-episode-video {
  position: relative;
}

.featured-episode-video img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button-overlay svg {
  width: 35px;
  height: 35px;
  margin-left: 5px;
}

.featured-episode-video:hover .play-button-overlay {
  background: rgba(0, 0, 0, 0.85);
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-episode-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.featured-episode-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.watch-youtube-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #c94647 0%, #b23435 100%);
  color: white;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 70, 71, 0.3);
}

.watch-youtube-button svg {
  flex-shrink: 0;
}

.watch-youtube-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 70, 71, 0.5);
  color: white;
}

.listen-podcast-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b7bbf 0%, #2c5f9a 100%);
  color: white;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 123, 191, 0.3);
}

.listen-podcast-button svg {
  flex-shrink: 0;
}

.listen-podcast-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 123, 191, 0.5);
  color: white;
}

/* Podcast Platform Links */
.podcast-platform-links {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.podcast-platform-links.hero-platforms {
  margin-top: 10px;
}

.podcast-platform-links__links {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.listen-on-label {
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  margin-right: 4px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.platform-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.platform-link span {
  font-size: 15px;
  font-weight: 600;
  color: #1db954;
}

.platform-link[aria-label="Apple Podcasts"] span {
  color: #8b5cf6;
}

.platform-link[aria-label="Amazon Music"] span {
  color: #25d1da;
}

.platform-link[aria-label="iHeartRadio"] span {
  color: #c6002b;
}

.platform-link[aria-label="YouTube"] span {
  color: #ff0000;
}

.platform-link[aria-label="Audible"] span {
  color: #f8991d;
}

.platform-link:hover {
  opacity: 0.75;
}

.platform-link:active {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .podcast-platform-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 16px; */
    /* padding: 16px 24px; */
    border-radius: 16px;
  }

  .listen-on-label {
    width: 100%;
    text-align: center;
  }

  .platform-link span {
    display: none;
  }

  .platform-link svg {
    width: 32px;
    height: 32px;
  }
}

/* === Submit Ideas Section === */
.submit-ideas-section {
  padding: 60px 0;
  background: #f8f9fa;
}

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

.ideas-intro {
  text-align: center;
  font-size: 17px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ideas-form {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b7bbf;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-idea-button {
  display: block;
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, #3b7bbf 0%, #2c5f9a 100%);
  color: white;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 123, 191, 0.3);
}

.submit-idea-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 123, 191, 0.5);
}

#ideas-message {
  margin-top: 15px;
  text-align: center;
}

#ideas-message.success {
  color: #059669;
}

#ideas-message.error {
  color: #dc2626;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ideas-form {
    padding: 25px;
  }
}

/* === About Section === */
.about-section {
  padding: 60px 0;
}

/* === Sponsors Section === */
.sponsors-section {
  padding: 60px 0;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.sponsor-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.sponsor-card:hover {
  border-color: #3b7bbf;
  box-shadow: 0 4px 12px rgba(59, 123, 191, 0.15);
  transform: translateY(-2px);
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sponsor-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.sponsor-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.sponsor-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sponsor-website,
.sponsor-contact {
  font-size: 14px;
  color: #333;
}

.sponsor-website strong,
.sponsor-contact strong {
  display: block;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.sponsor-website a,
.sponsor-contact a {
  color: #3b7bbf;
  text-decoration: none;
  font-weight: 500;
}

.sponsor-website a:hover,
.sponsor-contact a:hover {
  text-decoration: underline;
}

.sponsor-promo {
  background: white;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #c94647;
}

.sponsor-promo strong {
  display: block;
  font-size: 14px;
  color: #c94647;
  margin-bottom: 8px;
}

.promo-code {
  display: inline-block;
  background: #c94647;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin: 5px 0;
}

.promo-detail {
  font-size: 14px;
  color: #555;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.about-header {
  margin-bottom: 30px;
}

.story-content {
  max-width: 900px;
  margin: 0 auto 50px;
}

.story-paragraph,
.story-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left;
}

.story-paragraph:last-child,
.story-content p:last-child {
  margin-bottom: 0;
}

.story-cta {
  margin-top: 35px;
  text-align: center;
}

.schedule-button {
  display: inline-block;
  background: linear-gradient(135deg, #c94647 0%, #b23435 100%);
  color: white;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 70, 71, 0.3);
}

.schedule-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 70, 71, 0.5);
  color: white;
}

/* Legacy styles kept for backward compatibility */
.about-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.about-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #3b7bbf;
}

/* === Recent Episodes Section === */
.recent-episodes-section {
  padding: 60px 0;
}

.recent-episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.recent-episodes-section .episode-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.recent-episodes-section .episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.recent-episode-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.recent-episode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.recent-episode-link {
  position: relative;
  display: block;
  text-decoration: none;
}

.recent-episode-card img {
  width: 100%;
  display: block;
}

.recent-episode-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 20px 15px 15px;
  color: white;
}

.recent-episode-title-overlay h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: white;
}

/* === Episodes Carousel === */
.episodes-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.episodes-carousel {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding: 5px 0;
}

.episodes-carousel::-webkit-scrollbar {
  display: none;
}

.episodes-carousel .episode-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.episodes-carousel .episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #3b7bbf;
  background: white;
  color: #3b7bbf;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #3b7bbf;
  color: white;
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  background: white;
  color: #3b7bbf;
}

.view-all-container {
  text-align: center;
}

.view-all-episodes-button {
  display: inline-block;
  background: linear-gradient(135deg, #c94647 0%, #b23435 100%);
  color: white;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 70, 71, 0.3);
}

.view-all-episodes-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 70, 71, 0.5);
  color: white;
}

.view-all-events-button {
  display: inline-block;
  background: transparent;
  color: #3b7bbf;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #3b7bbf;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-events-button:hover {
  background: #3b7bbf;
  color: white;
}

.meetup-section .view-all-container {
  margin-top: 30px;
}

/* === Newsletter Section === */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #3b7bbf 0%, #5a94d5 100%);
  color: white;
  text-align: center;
}

.newsletter-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.newsletter-subtitle {
  font-size: 18px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input {
  padding: 14px 20px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  flex: 1;
  max-width: 250px;
}

.newsletter-input:focus {
  outline: 2px solid #4a90e2;
}

.newsletter-button {
  background: linear-gradient(135deg, #c94647 0%, #b23435 100%);
  color: white;
  padding: 14px 35px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 70, 71, 0.4);
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 70, 71, 0.6);
}

.newsletter-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#newsletter-message {
  max-width: 500px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 15px;
}

#newsletter-message p {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#newsletter-message .success {
  color: #2e7d32;
  border-left: 4px solid #4caf50;
}

#newsletter-message .error {
  color: #c62828;
  border-left: 4px solid #f44336;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.meetup {
  background: #f64060;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* === Old Episodes Section (Kept for Archive Page) === */
.episodes-section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}

.edit-podcast-link {
  color: #4a90e2;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-all-link {
  color: #4a90e2;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.episode-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.episode-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.episode-thumbnail:hover {
  opacity: 0.9;
}

.episode-content {
  padding: 20px;
}

.episode-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.episode-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}

.episode-title a:hover {
  color: #4a90e2;
}

.episode-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.episode-link {
  color: #4a90e2;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* === Single Episode Page === */
.episode-full-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.episode-full-content p {
  margin-bottom: 20px;
}

.episode-full-content p:last-child {
  margin-bottom: 0;
}

.episode-full-content h2,
.episode-full-content h3,
.episode-full-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.episode-full-content ul,
.episode-full-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.episode-full-content li {
  margin-bottom: 8px;
}

/* === Footer === */
.site-footer {
  background-color: #f8f9fa;
  color: #666;
  padding: 30px 0;
  margin-top: 0;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  text-align: center;
  font-size: 14px;
}

.footer-content a {
  color: #666;
  text-decoration: none;
}

.footer-content a:hover {
  color: #3b7bbf;
  text-decoration: underline;
}

/* === About Page === */
.about-hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #3b7bbf 0%, #5a94d5 100%);
  color: white;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: white;
}

.hosts-section {
  padding: 80px 0;
}

.hosts-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.hosts-intro p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.host-card {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.host-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.host-photo {
  width: 100%;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #3b7bbf 0%, #5a94d5 100%);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.host-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.host-name {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.host-title {
  font-size: 18px;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.host-bio {
  margin-top: 10px;
}

.host-bio p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.host-bio p:last-child {
  margin-bottom: 0;
}

.host-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.host-link {
  display: inline-block;
  color: #3b7bbf;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #3b7bbf;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.host-link:hover {
  background: #3b7bbf;
  color: white;
}

/* Standalone Strategy Call Page */
.hosts-page {
  padding-top: 60px;
  min-height: calc(100vh - 200px);
}

.hosts-page .host-photo {
  width: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
}

.hosts-page .host-card {
  text-align: center;
}

.hosts-page .host-links {
  justify-content: center;
}

/* === Responsive Design === */
@media (min-width: 1026px) and (max-width: 1309px) {
  .header-inner {
    flex-direction: column;
    gap: 20px;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .main-navigation a {
    padding: 8px 12px;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    padding: 0 30px;
  }

  .site-logo {
    gap: 12px;
  }

  .site-logo img,
  .site-logo .logo-img {
    height: 55px;
    max-width: 300px;
  }

  .site-title {
    font-size: 16px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

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

  .podcast-platforms {
    gap: 15px;
  }

  .platform-icon {
    width: 45px;
    height: 45px;
  }

  .platform-icon svg {
    width: 24px;
    height: 24px;
  }

  .featured-episode {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 25px;
  }

  .featured-episode-title {
    font-size: 22px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-paragraph {
    font-size: 16px;
  }

  .schedule-button {
    padding: 14px 35px;
    font-size: 15px;
  }

  .about-heading {
    font-size: 26px;
  }

  .about-description {
    font-size: 16px;
  }

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

  /* Episode Carousel - Tablet: show 2 at a time */
  .episodes-carousel .episode-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

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

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

  .recent-episode-title-overlay h4 {
    font-size: 14px;
  }

  .newsletter-title {
    font-size: 28px;
  }

  .newsletter-subtitle {
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-input {
    max-width: 100%;
    width: 100%;
  }

  .newsletter-button {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 32px;
  }

  .hosts-intro {
    margin-bottom: 40px;
  }

  .hosts-intro p {
    font-size: 16px;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .host-card {
    padding: 30px;
  }

  .host-name {
    font-size: 26px;
  }

  .host-title {
    font-size: 16px;
  }

  .host-links {
    flex-direction: column;
    gap: 10px;
  }

  .host-link {
    text-align: center;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sponsor-card {
    padding: 25px;
  }

  .sponsor-name {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .site-header .container {
    padding: 0 20px;
  }

  .site-logo {
    gap: 10px;
  }

  .site-logo img,
  .site-logo .logo-img {
    height: 45px;
    max-width: 240px;
  }

  .site-title {
    font-size: 14px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .recent-episodes-grid {
    grid-template-columns: 1fr;
  }

  /* Episode Carousel - Mobile: show 1 at a time */
  .episodes-carousel .episode-card {
    flex: 0 0 100%;
  }

  .carousel-arrow {
    display: none;
  }

  .episodes-carousel-wrapper {
    gap: 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .featured-episode-title {
    font-size: 20px;
  }

  .recent-episode-title-overlay {
    padding: 15px 12px 12px;
  }

  .recent-episode-title-overlay h4 {
    font-size: 13px;
  }

  .subscribe-button,
  .watch-youtube-button,
  .listen-podcast-button,
  .schedule-button {
    padding: 12px 25px;
    font-size: 14px;
  }

  .page-title {
    font-size: 28px;
  }

  .hosts-intro p {
    font-size: 15px;
  }

  .host-card {
    padding: 20px;
  }

  .host-name {
    font-size: 22px;
  }

  .host-bio p {
    font-size: 15px;
  }

  .meetup-event-card {
    flex-direction: column;
  }

  .meetup-event-content {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .meetup-event-date-badge {
    margin-bottom: 15px;
  }

  .meetup-event-title {
    font-size: 20px;
  }

  .meetup-meta-item {
    font-size: 13px;
  }

  .meetup-event-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .meetup-rsvp-button,
  .meetup-details-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* === Next Meetup Event Section === */
.meetup-section {
  padding: 60px 0;
}

.meetup-event-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 30px;
}

.meetup-event-card + .meetup-event-card {
  margin-top: 1.5rem;
}

.meetup-event-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
}

.meetup-event-date-badge {
  flex-shrink: 0;
  width: 100px;
  background: linear-gradient(135deg, #c94647 0%, #b23435 100%);
  color: white;
  border-radius: 12px;
  text-align: center;
  padding: 15px 10px;
  box-shadow: 0 4px 12px rgba(201, 70, 71, 0.3);
}

.meetup-month {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.meetup-day {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.meetup-event-details {
  flex: 1;
}

.meetup-event-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.meetup-event-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.meetup-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 15px;
}

.meetup-meta-item svg {
  flex-shrink: 0;
  color: #3b7bbf;
}

.meetup-event-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.meetup-event-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.meetup-rsvp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c94647 0%, #b23435 100%);
  color: white;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 70, 71, 0.3);
}

.meetup-rsvp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 70, 71, 0.5);
  color: white;
}

.meetup-details-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #3b7bbf;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #3b7bbf;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.meetup-details-button:hover {
  background: #3b7bbf;
  color: white;
  transform: translateY(-2px);
}

.meetup-no-events {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.meetup-no-events p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.meetup-no-events a {
  color: #3b7bbf;
  font-weight: 600;
  text-decoration: underline;
}

.meetup-no-events a:hover {
  color: #c94647;
}
