/* AV-Pronos — Shortcode Prochains Matchs */

.avp-prochains-matchs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Carte match ──────────────────────────────────────────────────────────── */

.avp-match-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ── Date ─────────────────────────────────────────────────────────────────── */

.avp-match-date {
    background: #2271b1;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

/* ── Équipes ──────────────────────────────────────────────────────────────── */

.avp-match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 18px 14px;
}

.avp-match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* ── Drapeau ──────────────────────────────────────────────────────────────── */

.avp-team-flag-wrap {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avp-team-flag-img {
    max-width: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 3px;
    display: block;
}

.avp-team-flag-placeholder {
    width: 80px;
    height: 54px;
    background-color: #e9ecef;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='28' height='28'%3E%3Cpath fill='%23adb5bd' d='M5 3h14l-3 5 3 5H5V3zm0 12v6H3V3h2v12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
}

/* ── Nom de l'équipe ──────────────────────────────────────────────────────── */

.avp-team-name {
    font-weight: 700;
    font-size: 14px;
    color: #1d2327;
    line-height: 1.3;
    max-width: 140px;
    word-break: break-word;
}

/* ── Bouton Faire mes pronos ──────────────────────────────────────────────── */

.avp-prono-cta-wrap {
    text-align: center;
}

.avp-prono-cta-btn {
    display: inline-block;
    background: #0f9147;
    color: #fff;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s;
    letter-spacing: 0.2px;
}

.avp-prono-cta-btn:hover {
    background: #0a7038;
    color: #fff;
}

/* ── Séparateur vs ────────────────────────────────────────────────────────── */

.avp-match-vs {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 4px;
}
