/* ============================================
   EQUESTRIAN HUB — Page-Specific Styles
   Minimal overrides per page
   ============================================ */

/* --- Homepage Hero --- */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 29, 58, 0.85) 0%,
    rgba(11, 29, 58, 0.5) 40%,
    rgba(11, 29, 58, 0.3) 100%
  );
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
  text-align: center;
}

.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

.home-hero__label::before,
.home-hero__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero__title em {
  font-style: italic;
  color: var(--color-white);
}

.home-hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Hero entrance animation */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.home-hero__label {
  animation: hero-fade-up 0.8s ease 0.2s both;
}

.home-hero__title {
  animation: hero-fade-up 0.8s ease 0.4s both;
}

.home-hero__subtitle {
  animation: hero-fade-up 0.8s ease 0.6s both;
}

.home-hero__actions {
  animation: hero-fade-up 0.8s ease 0.8s both;
}

.home-hero__bg img {
  animation: hero-fade-in 1.2s ease both;
}

/* Hero responsive */
@media (max-width: 768px) {
  .home-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    max-height: none;
  }

  .home-hero__content {
    padding: 80px 0 60px;
  }

  .home-hero__label {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  .home-hero__subtitle {
    font-size: var(--text-sm);
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    height: 100dvh;
    min-height: 480px;
  }

  .home-hero__content {
    padding: 60px 0 48px;
  }

  .home-hero__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: var(--space-md);
  }

  .home-hero__subtitle {
    font-size: var(--text-sm);
    max-width: 320px;
    margin-bottom: var(--space-lg);
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .home-hero__actions .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 0.625rem;
  }
}

/* --- Welcome Section --- */
.home-welcome {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.home-welcome__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--color-text-navy);
  margin-bottom: var(--space-md);
}

.home-welcome__title em {
  font-style: italic;
  color: var(--color-accent);
}

.home-welcome__text {
  font-size: var(--text-md);
  color: var(--color-charcoal);
  max-width: 680px;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}

.home-welcome__divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto;
}

/* --- Banner Ad Slot --- */
.home-banner-ad {
  margin-top: var(--space-xl);
}

.ad-banner--full {
  display: block;
  width: 100%;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.ad-banner--full img {
  width: 100%;
  display: block;
}

/* --- Promo Tiles --- */
.home-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.home-promo-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.home-promo-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.home-promo-card--portrait {
  aspect-ratio: 3 / 4;
  min-height: unset;
}

.home-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-promo-card:hover img {
  transform: scale(1.05);
}

.home-promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,29,58,0.85) 0%, rgba(11,29,58,0.2) 50%, transparent 100%);
  transition: background 0.4s ease;
}

.home-promo-card:hover .home-promo-card__overlay {
  background: linear-gradient(0deg, rgba(11,29,58,0.9) 0%, rgba(11,29,58,0.3) 60%, transparent 100%);
}

.home-promo-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-lg);
  color: var(--color-white);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-promo-card__content h3 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  margin: 0;
}

.home-promo-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: var(--text-lg);
  color: var(--color-white);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.home-promo-card:hover .home-promo-card__arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.home-promo-card__content p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .home-promo-grid--3 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .home-promo-card--portrait {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .home-promo-grid--3 {
    gap: var(--space-md);
  }
}

/* --- Magazine Banner (accent strip) --- */
.magazine-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.magazine-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.magazine-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.magazine-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.magazine-banner__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.magazine-banner__content {
  flex: 1;
}

.magazine-banner__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xs);
}

.magazine-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  font-weight: 200;
  margin: 0 0 var(--space-xs);
  line-height: 1.2;
}

.magazine-banner__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}

.magazine-banner .btn--white {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .magazine-banner {
    padding: var(--space-lg) 0;
  }

  .magazine-banner__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .magazine-banner__desc {
    max-width: 100%;
  }
}

/* --- Podcast Feature Section --- */
.podcast-feature {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-deep);
}

.podcast-feature__glow {
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(53, 215, 223, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.podcast-feature__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.podcast-feature__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcast-feature__cover {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(53, 215, 223, 0.1),
    0 0 0 1px rgba(53, 215, 223, 0.1);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.podcast-feature__cover:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(53, 215, 223, 0.15),
    0 0 0 1px rgba(53, 215, 223, 0.15);
}

.podcast-feature__cover img {
  width: 100%;
  display: block;
}

.podcast-feature__sponsor {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: var(--space-lg);
}

.podcast-feature .section-label {
  color: var(--color-accent);
}

.podcast-feature .section-label::before {
  background: var(--color-accent);
}

.podcast-feature .divider {
  background: rgba(53, 215, 223, 0.3);
}

.podcast-feature__right p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.podcast-feature__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 200;
  font-style: italic;
  color: var(--color-accent) !important;
  margin-top: var(--space-xs);
}

.podcast-feature__guests-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.podcast-feature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.podcast-feature__chip {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(53, 215, 223, 0.2);
  background: rgba(53, 215, 223, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: default;
}

.podcast-feature__chip:hover {
  background: rgba(53, 215, 223, 0.15);
  border-color: rgba(53, 215, 223, 0.45);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.podcast-feature__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.podcast-feature__platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--btn-radius);
  transition: all var(--transition);
  line-height: 1;
}

.podcast-feature__platform-btn svg {
  flex-shrink: 0;
}

.podcast-feature__platform-btn--spotify {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.podcast-feature__platform-btn--spotify:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
}

.podcast-feature__platform-btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.podcast-feature__platform-btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

/* Equalizer decoration */
.podcast-feature__equalizer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.podcast-feature__equalizer span {
  display: block;
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--color-accent);
  transform-origin: bottom;
  animation: eq-pulse 1.4s ease-in-out infinite alternate;
}

.podcast-feature__equalizer span:nth-child(1)  { height: 10px; animation-delay: 0s; }
.podcast-feature__equalizer span:nth-child(2)  { height: 18px; animation-delay: 0.12s; }
.podcast-feature__equalizer span:nth-child(3)  { height: 14px; animation-delay: 0.24s; }
.podcast-feature__equalizer span:nth-child(4)  { height: 26px; animation-delay: 0.08s; }
.podcast-feature__equalizer span:nth-child(5)  { height: 12px; animation-delay: 0.32s; }
.podcast-feature__equalizer span:nth-child(6)  { height: 22px; animation-delay: 0.16s; }
.podcast-feature__equalizer span:nth-child(7)  { height: 16px; animation-delay: 0.4s; }
.podcast-feature__equalizer span:nth-child(8)  { height: 30px; animation-delay: 0.04s; }
.podcast-feature__equalizer span:nth-child(9)  { height: 20px; animation-delay: 0.28s; }
.podcast-feature__equalizer span:nth-child(10) { height: 24px; animation-delay: 0.2s; }
.podcast-feature__equalizer span:nth-child(11) { height: 12px; animation-delay: 0.36s; }
.podcast-feature__equalizer span:nth-child(12) { height: 28px; animation-delay: 0.1s; }
.podcast-feature__equalizer span:nth-child(13) { height: 32px; animation-delay: 0.22s; }
.podcast-feature__equalizer span:nth-child(14) { height: 28px; animation-delay: 0.14s; }
.podcast-feature__equalizer span:nth-child(15) { height: 12px; animation-delay: 0.38s; }
.podcast-feature__equalizer span:nth-child(16) { height: 24px; animation-delay: 0.06s; }
.podcast-feature__equalizer span:nth-child(17) { height: 20px; animation-delay: 0.3s; }
.podcast-feature__equalizer span:nth-child(18) { height: 16px; animation-delay: 0.18s; }
.podcast-feature__equalizer span:nth-child(19) { height: 26px; animation-delay: 0.34s; }
.podcast-feature__equalizer span:nth-child(20) { height: 10px; animation-delay: 0.26s; }
.podcast-feature__equalizer span:nth-child(21) { height: 22px; animation-delay: 0.42s; }
.podcast-feature__equalizer span:nth-child(22) { height: 18px; animation-delay: 0.02s; }
.podcast-feature__equalizer span:nth-child(23) { height: 14px; animation-delay: 0.44s; }
.podcast-feature__equalizer span:nth-child(24) { height: 8px; animation-delay: 0.48s; }

@keyframes eq-pulse {
  0%   { transform: scaleY(0.3); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0.5); }
}

@media (prefers-reduced-motion: reduce) {
  .podcast-feature__equalizer span {
    animation: none;
  }
}

@media (max-width: 768px) {
  .podcast-feature__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .podcast-feature__left {
    max-width: 300px;
    margin: 0 auto;
  }

  .podcast-feature__glow {
    left: 50%;
    width: 400px;
    height: 400px;
  }

  .podcast-feature__right {
    text-align: center;
  }

  .podcast-feature__chips {
    justify-content: center;
  }

  .podcast-feature__actions {
    justify-content: center;
  }

  .podcast-feature .section-label {
    justify-content: center;
  }

  .podcast-feature .divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .podcast-feature__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .podcast-feature__platform-btn {
    justify-content: center;
  }
}

/* --- Blog Carousel (infinite scroll) --- */
.blog-carousel {
  overflow: hidden;
  width: 100%;
  padding: 0 0 var(--space-lg);
}

.blog-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--space-lg);
  animation: blog-scroll 40s linear infinite;
  width: max-content;
}

.blog-carousel:hover .blog-carousel__track {
  animation-play-state: paused;
}

.blog-carousel--static {
  overflow: visible;
}

.blog-carousel--static .blog-carousel__track {
  animation: none;
  width: auto;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@keyframes blog-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.blog-carousel__card {
  flex-shrink: 0;
  width: 300px;
  background: var(--color-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-carousel__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-carousel__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  flex-shrink: 0;
  overflow: hidden;
}

.blog-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-carousel__thumb span {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-md);
  text-align: center;
  line-height: 1.3;
}

.blog-carousel__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-carousel__meta {
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
  margin-bottom: var(--space-xs);
}

.blog-carousel__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-navy);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-carousel__card {
    width: 260px;
  }

  .blog-carousel__track {
    animation-duration: 30s;
  }
}

/* --- Sponsor Grid (homepage) --- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.sponsor-card {
  display: block;
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sponsor-card--inactive {
  cursor: default;
}

.sponsor-card--inactive:hover {
  transform: none;
  box-shadow: none;
}

.sponsor-card__img {
  position: relative;
  overflow: hidden;
}

.sponsor-card__img img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.sponsor-card:hover .sponsor-card__img img {
  transform: scale(1.03);
}

.sponsor-card--inactive:hover .sponsor-card__img img {
  transform: none;
}

.sponsor-card__hover-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 27, 72, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sponsor-card:hover .sponsor-card__hover-icon {
  opacity: 1;
  transform: scale(1);
}

.sponsor-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.sponsor-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--color-navy);
}

.sponsor-card__desc {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px;
}

.sponsor-card__cta {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: color 0.2s ease;
}

.sponsor-card:hover .sponsor-card__cta {
  color: var(--color-accent-hover);
}

/* --- Blog Listing --- */
.blog-card-horizontal {
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}

.blog-card-horizontal:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.blog-card-horizontal__image {
  width: 200px;
  flex-shrink: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.blog-card-horizontal__image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* --- Blog Sidebar --- */
.sidebar-widget {
  margin-bottom: var(--space-xl);
}

.sidebar-widget__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-navy);
}

.sidebar-category-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-category-list li:last-child {
  border-bottom: none;
}

.sidebar-category-list a {
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.sidebar-category-list a:hover {
  color: var(--color-accent);
}

/* --- Blog Article --- */
.article-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,29,58,0.8) 0%, transparent 40%);
}

.article-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--text-md);
  line-height: 1.8;
}

.article-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.article-content p {
  margin-bottom: var(--space-lg);
}

.article-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
  background: var(--color-off-white);
  font-style: italic;
  color: var(--color-text-navy);
}

.article-content ul,
.article-content ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.article-content li {
  margin-bottom: var(--space-sm);
  list-style: disc;
}

/* --- Shop --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-lg);
}

/* --- Mentoring --- */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-xl);
}

/* --- Podcast --- */
.podcast-platforms {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.podcast-player {
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-top: var(--space-xl);
}

.podcast-player iframe {
  width: 100%;
  border: none;
}

/* --- Magazine Grid --- */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.magazine-grid .ad-slot--grid {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  background: var(--color-light-gray);
  color: var(--color-mid-gray);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--card-radius);
  padding: var(--space-md);
  min-height: 200px;
}

.ad-slot--banner-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(53, 215, 223, 0.35);
  background: rgba(53, 215, 223, 0.04);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 300px;
  margin: var(--space-xl) 0;
  border-radius: var(--card-radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ad-slot--banner-wide:hover {
  border-color: var(--color-accent);
  background: rgba(53, 215, 223, 0.08);
  box-shadow: 0 0 20px rgba(53, 215, 223, 0.15);
}

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

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

.magazine-card {
  text-align: center;
}

.magazine-card img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  width: 100%;
}

.magazine-card:hover img {
  transform: scale(1.03);
}

.magazine-card__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--space-md);
  color: var(--color-text-navy);
}

.magazine-card__link {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: var(--space-xs);
  display: inline-block;
}

/* --- Payment Cards --- */
.payment-card {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
}

.payment-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.payment-card__name {
  font-weight: 600;
  color: var(--color-text-navy);
  margin-bottom: var(--space-sm);
}

.payment-card__desc {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
}
