/* =========================================
   COACH SUPPORT COMPONENT
   ========================================= */
.coach-support {
  padding: 8rem 0;
  background-color: #000c1a; /* Dark navy */
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle background accent */
.coach-support::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(220,177,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.coach-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* LEFT: Visual */
.coach-visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 5;
  width: 100%;
}

.coach-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,12,26,0.8), transparent 50%);
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.coach-visual:hover .coach-img {
  transform: scale(1.05);
}

.coach-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 2rem;
  color: var(--gold, #dcb118);
}

.badge-title {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.badge-desc {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* RIGHT: Content */
.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(220, 177, 24, 0.1);
  border: 1px solid rgba(220, 177, 24, 0.3);
  color: var(--gold, #dcb118);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.coach-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #ffffff !important;
}

.coach-content {
  padding: 0 5%;
}

.coach-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.text-gold {
  color: var(--gold, #dcb118);
}

.coach-cta-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* BLOG INTEGRATION */
.blog-integration {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.blog-section-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.blog-feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.blog-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(220, 177, 24, 0.4);
  transform: translateY(-5px);
}

.blog-date {
  font-size: 0.8rem;
  color: var(--gold, #dcb118);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.blog-loading, .blog-error {
  color: #94a3b8;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .coach-container {
    grid-template-columns: 1fr;
  }
  
  .coach-content {
    padding: 3rem 2rem;
  }
  
  .coach-visual {
    max-width: 100%;
    margin: 0;
    aspect-ratio: auto;
    min-height: 400px;
  }
  
  .coach-cta-group {
    flex-direction: column;
  }
  
  .blog-feed-grid {
    grid-template-columns: 1fr;
  }
}
