/* Pre-launch polish: crawler fallback plus desktop nav scale. */
.seo-fallback {
  max-width: 980px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  color: #f4ede0;
  background: #341559;
}

.seo-fallback section + section {
  margin-top: 2.5rem;
}

.seo-fallback-eyebrow {
  margin: 0 0 0.75rem;
  color: #d4a04a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.seo-fallback h1,
.seo-fallback h2,
.seo-fallback h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
}

.seo-fallback h1 {
  max-width: 920px;
  margin: 0 0 1rem;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.98;
}

.seo-fallback h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.seo-fallback h3 {
  margin: 1.3rem 0 0.45rem;
  color: #d4a04a;
  font-size: 1.45rem;
}

.seo-fallback p {
  max-width: 74ch;
  margin: 0.8rem 0 0;
  color: rgba(244, 237, 224, 0.84);
  line-height: 1.75;
}

.seo-fallback a {
  color: #d4a04a;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (min-width: 1024px) {
  .nav-glass nav {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .nav-glass img[alt="Learn Feng Shui Podcast logo"] {
    width: 56px;
    height: 56px;
  }

  .nav-glass .font-display.text-lg {
    font-size: 1.35rem;
    line-height: 1.75rem;
  }

  .nav-glass ul {
    gap: 2.15rem;
    font-size: 0.78rem;
  }

  .nav-glass .cta-gold {
    padding: 0.9rem 1.65rem;
    font-size: 0.78rem;
  }
}


/* Topic banner: seamless single-line ticker. */
.topic-banner {
  padding-top: 1.15rem !important;
  padding-bottom: 1.15rem !important;
}

.topic-banner .topic-banner-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: topic-banner-scroll 36s linear infinite;
  will-change: transform;
}

.topic-banner:hover .topic-banner-track {
  animation-play-state: paused;
}

.topic-banner .topic-banner-group {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(2.2rem, 4.2vw, 5.25rem);
  padding-right: clamp(2.2rem, 4.2vw, 5.25rem);
  white-space: nowrap;
}

.topic-banner .topic-banner-item {
  gap: 0.85rem !important;
  white-space: nowrap;
  font-size: clamp(2.05rem, 3vw, 3.65rem) !important;
  line-height: 1;
}

.topic-banner .topic-banner-item .text-gold {
  font-size: 0.72em;
}

@keyframes topic-banner-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 760px) {
  .topic-banner {
    padding-top: 0.95rem !important;
    padding-bottom: 0.95rem !important;
  }

  .topic-banner .topic-banner-track {
    animation-duration: 28s;
  }

  .topic-banner .topic-banner-group {
    gap: 1.25rem;
    padding-right: 1.25rem;
  }

  .topic-banner .topic-banner-item {
    font-size: clamp(1.4rem, 6.2vw, 2.15rem) !important;
  }
}

