/* Available Coaches Shortcode */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.coach-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15), 0 10px 15px -10px rgba(0, 0, 0, 0.1);
}

.coach-photo {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.coach-card:hover .coach-photo img {
    transform: scale(1.05);
}

.coach-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.coach-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.coach-title {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
}

.coach-bio {
    color: #718096;
    margin: 0 0 0.7em;
    flex-grow: 1;
    line-height: 1.6;
}

.coach-actions {
    margin-top: auto;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    /* pill shape */
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #1a202c;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}