.template-equipe {
    padding: 34px 0 50px;
}

.template-equipe__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
}

.template-equipe__title {
    margin: 0 0 20px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary-color);
}

.template-equipe__group {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
}

.template-equipe__group + .template-equipe__group {
    margin-top: 14px;
}

.template-equipe__group-title {
    margin: 0 0 10px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.template-equipe__players-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.template-equipe__player-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.template-equipe__player-number {
    color: var(--primary-color);
    font-weight: 700;
}

.template-equipe__widget-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
}

.template-equipe__widget-card + .template-equipe__widget-card {
    margin-top: 14px;
}

.template-equipe__widget-card h2 {
    margin: 0 0 10px;
    color: var(--primary-color);
}

.template-equipe__iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
}

.template-equipe__fallback {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .template-equipe {
        padding: 24px 0 40px;
    }

    .template-equipe__layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .template-equipe__iframe {
        min-height: 300px;
    }
}
