/*
Theme Name: HC Stocktüfel
Theme URI: https://hcstocktuefel.ch/
Description: Individuelles Child-Theme von DIVI
Author: Teilzeit Agency
Author URI: https://teilzeit-agency.ch/
Template: Divi
Version: 1.0
*/

/* Custom nächsten Spiel Ansicht */
.sp-next-game {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.sp-next-game__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.sp-next-game__logo img {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
}

.sp-next-game__name {
    font-size: 0.85rem;
    color: #333333;
    text-align: center;
    font-weight: 500;
}

.sp-next-game__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.sp-next-game__day {
    font-size: 1.4rem;
    font-weight: bold;
    color: #222222;
}

.sp-next-game__time {
    font-size: 0.85rem;
    color: #888888;
}

@media ( max-width: 600px ) {
    .sp-next-game {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .sp-next-game__date {
        order: -1;
    }

    .sp-next-game__team {
        flex-direction: column;
        align-items: center;
        width: 45%;
    }

    .sp-next-game {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }

    .sp-next-game__date {
        width: 100%;
        order: -1;
    }
}