/* =========================================================
   VAL VEZZENO — OUR CHAMPIONS
   ========================================================= */


/* =========================================================
   CONTENITORE PRINCIPALE
   ========================================================= */

.champions-page {
    width: 100%;
    box-sizing: border-box;

    background: #FFE5B4;
    border: 1px solid #8f2f0d;
    border-radius: 6px;

    padding: 25px;

    color: #2b1500;
}


/* =========================================================
   INTRODUZIONE
   ========================================================= */

.champions-intro {
    text-align: center;
    margin-bottom: 30px;

    background: transparent;
}

.champions-intro h1 {
    margin: 0 0 12px;

    color: #2b1500;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.25;
}

.champions-rule {
    display: flex;
    align-items: center;

    gap: 12px;
    margin: 0 0 15px;

    background: transparent;
}

.champions-rule::before,
.champions-rule::after {
    content: "";

    flex: 1;
    height: 1px;

    background: #8f2f0d;
}

.champions-rule span {
    color: #8f2f0d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: bold;

    white-space: nowrap;
}

.champions-intro p {
    max-width: 700px;

    margin: 0 auto;

    color: #2b1500;

    font-size: 15px;
    line-height: 1.7;

    background: transparent;
}

.champions-intro strong {
    color: #8f2f0d;
}


/* =========================================================
   ELENCO DEI CAMPIONI
   ========================================================= */

.champions-list {
    display: flex;
    flex-direction: column;

    gap: 15px;

    width: 100%;
}


/* =========================================================
   CARD CAMPIONE
   ========================================================= */

.champion-card {
    display: grid;

    grid-template-columns: 80px minmax(0, 1fr) 42px;

    align-items: center;

    gap: 15px;

    width: 100%;
    min-width: 0;

    box-sizing: border-box;

    padding: 12px;

    background: #FFE5B4;

    border: 1px solid #8f2f0d;
    border-radius: 6px;

    color: #2b1500;
    text-decoration: none;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.champion-card:hover {
    color: #2b1500;
    text-decoration: none;

    background: #f9dca8;

    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.16);

    transform: translateY(-1px);
}


/* =========================================================
   ICONA
   ========================================================= */

.champion-icon {
    width: 80px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding-right: 15px;

    border-right: 1px solid #8f2f0d;
}

.champion-icon img {
    display: block;

    width: 58px;
    height: 58px;

    max-width: 100%;
    max-height: 100%;
}


/* =========================================================
   CONTENUTO CARD
   ========================================================= */

.champion-copy {
    min-width: 0;
}

.champion-code {
    margin-bottom: 3px;

    color: #8f2f0d;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.champion-copy h2 {
    margin: 0 0 3px;

    color: #2b1500;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.25;
}

.champion-copy p {
    margin: 0;

    line-height: 1.35;
}

.champion-en {
    color: #5f3a25;
    font-size: 14px;
}

.champion-de {
    color: #7b4a31;
    font-size: 14px;
}


/* =========================================================
   FRECCIA
   ========================================================= */

.champion-arrow {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border-radius: 50%;

    background: #8f2f0d;
    color: #ffffff;

    font-size: 26px;
    line-height: 1;

    text-decoration: none;
}

.champion-card:hover .champion-arrow {
    background: #6f2208;
    color: #ffffff;
}


/* =========================================================
   EVENTUALE CARD IN EVIDENZA
   ========================================================= */

.champion-card.is-featured {
    background: #f9dca8;
}


/* =========================================================
   INDICE CHAMPIONS
   =========================================================
   Manteniamo queste regole nel caso venga utilizzato
   in futuro da un altro template.
   ========================================================= */

.champions-index {
    background: #FFE5B4;

    border: 1px solid #8f2f0d;
    border-radius: 6px;

    padding: 12px;
}

.champions-index h2 {
    margin: 0 0 8px;
    padding-bottom: 10px;

    border-bottom: 1px solid #8f2f0d;

    color: #2b1500;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;

    text-align: center;
}

.champions-index a {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 7px 3px;

    border-bottom: 1px solid #8f2f0d;

    color: #2b1500;

    text-decoration: none;

    font-weight: bold;
    font-size: 13px;
}

.champions-index a:hover {
    background: #f9dca8;
}

.champions-index img {
    width: 28px;
    height: 28px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 600px) {

    .champions-page {
        padding: 15px;
    }

    .champions-intro h1 {
        font-size: 25px;
    }

    .champions-rule span {
        font-size: 16px;
    }

    .champions-intro p {
        font-size: 14px;
    }

    .champion-card {
        grid-template-columns: 60px minmax(0, 1fr) 36px;

        gap: 10px;

        padding: 10px;
    }

    .champion-icon {
        width: 60px;
        height: 60px;

        padding-right: 10px;
    }

    .champion-icon img {
        width: 44px;
        height: 44px;
    }

    .champion-copy h2 {
        font-size: 17px;
    }

    .champion-code {
        font-size: 12px;
    }

    .champion-en,
    .champion-de {
        font-size: 12px;
    }

    .champion-arrow {
        width: 30px;
        height: 30px;

        font-size: 23px;
    }
}