/* Featured Coaches Styles */
.featured-coaches {
    margin: 15px 0 35px 0;
    padding: 5px 0;
}

.featured-title {
    text-align: center;
    font-size: 2rem;
    color: #AD8330;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-coach-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.featured-coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(173, 131, 48, 0.2);
    border-color: #AD8330;
}

.featured-coach-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-coach-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.featured-coach-card:hover .featured-coach-image img {
    transform: scale(1.05);
}

.featured-coach-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-coach-info h4 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 8px;
    font-weight: 600;
}

.coach-tagline {
    color: #AD8330;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.coach-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coaches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .featured-coach-image {
        height: 220px;
    }
    
    .featured-coach-info {
        padding: 20px;
    }
    
    .featured-coach-info h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 1.5rem;
    }
    
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .featured-coach-card {
        flex-direction: row;
        align-items: center;
    }
    
    .featured-coach-image {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
    }
    
    .featured-coach-info {
        padding: 20px;
    }
    
    .featured-coach-info h4 {
        font-size: 1.2rem;
    }
    
    .coach-tagline {
        font-size: 0.9rem;
    }
    
    .coach-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .featured-coaches {
        margin: 40px 0;
        padding: 20px 0;
    }
    
    .featured-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .coaches-grid {
        padding: 0 10px;
    }
    
    .featured-coach-card {
        flex-direction: column;
    }
    
    .featured-coach-image {
        width: 100%;
        height: 200px;
    }
    
    .featured-coach-info {
        padding: 15px;
    }
    
    .featured-coach-info h4 {
        font-size: 1.1rem;
    }
    
    .coach-description {
        font-size: 0.85rem;
    }
}