.coach-hero { position: relative; overflow: hidden; border-radius: var(--radius-xl); min-height: 390px; margin-top: 22px; background:
    linear-gradient(180deg, rgba(0, 0, 0, .56) 0%, rgba(0, 0, 0, .58) 46%, rgba(239, 27, 75, .72) 100%),
    radial-gradient(circle at left center, rgba(255, 255, 255, .10), transparent 40%),
    url('../images/blog-post.png') center/cover no-repeat;
}
.coach-hero::before, .coach-hero::after { content: ''; position: absolute; border: 1px solid rgba(255, 255, 255, .18); pointer-events: none; }
.coach-hero::before { width: 260px; height: 260px; border-radius: 0 0 0 260px; left: -10px; bottom: -10px; }
.coach-hero::after { width: 220px; height: 1px; left: 0; bottom: 120px; background: rgba(255, 255, 255, .18); border: 0; }
.coach-hero-content { min-height: 390px; display: grid; place-items: center; text-align: center; padding: 48px 24px; }
.coach-hero h1 { margin: 0 0 14px; font-size: clamp(28px, 3vw, 52px); line-height: 1; font-weight: 800; letter-spacing: -.03em; }
.coach-hero p { margin: 0; max-width: 640px; color: rgba(255, 255, 255, .82); font-size: 16px; line-height: 1.6; }

.coaches-section { padding: 62px 0 30px; }
.coach-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 34px; }
.coach-card { text-align: center; }
.coach-image { position: relative; width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: end; justify-content: center; overflow: hidden; border-radius: 22px; margin-bottom: 10px; }
.coach-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.coach-name { margin: 0; font-size: 18px; font-weight: 800; line-height: 1.15; text-transform: uppercase; letter-spacing: -.02em; }
.coach-title { margin-top: 6px; font-size: 14px; color: #d8d8d8; }

@media (max-width: 1100px) {
    .coach-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
    .coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .coach-hero, .coach-hero-content { min-height: 300px; }
    .coach-grid { grid-template-columns: 1fr; gap: 26px; }
}
