/* ==========================================
   教练风采页专属样式
   ========================================== */

/* ---- 教练卡片网格 ---- */
.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* ---- 教练卡片 ---- */
.coach-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-left: 3px solid transparent;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-left-color 0.25s ease;
}

.coach-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-left-color: #C41E3A;
}

.coach-avatar {
    height: 200px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coach-avatar img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.6;
}

.coach-body {
    padding: 24px 22px 28px;
}

.coach-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 2px;
}

.coach-role {
    font-size: 13px;
    color: var(--brand);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.coach-divider {
    width: 32px;
    height: 2px;
    background: var(--brand);
    margin-bottom: 14px;
    border-radius: 1px;
}

.coach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.coach-tags span {
    font-size: 12px;
    padding: 3px 10px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 4px;
    white-space: nowrap;
}

.coach-desc {
    font-size: 14px;
    color: var(--body);
    line-height: 1.75;
}

/* ---- 教学理念 ---- */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.philosophy-item {
    text-align: center;
    padding: 20px;
}

.philosophy-num {
    display: inline-block;
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
    opacity: 0.12;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.philosophy-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 8px;
}

.philosophy-item p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .coach-avatar {
        height: 150px;
    }
}
