.season-gameplan {
    .gameplan-headline {
        margin-top: 30px;
        margin-bottom: 10px;
        text-align: center;
    }

    .spiele > div:nth-child(2) {
        display: none;
    }

    .month,
    .spiel {
        position: relative;
        margin: 0 auto;
        padding: 10px;
        border-bottom: 1px solid var(--wp--preset--color--custom-color-2);
    }

    .month {
        margin-top: 30px;
        color: var(--wp--preset--color--custom-color-5);
        font-size: 21px;
        font-weight: bold;
        padding: 10px;
    }

    .spiel {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .date {
        color: #666;
        margin: 2px 0 0 3px;
        letter-spacing: 1px;
    }

    .matchup {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .matchup .team-a-name,
    .matchup .team-b-name {
        margin: 0 12px;
        font-size: 17px;
        font-weight: bold;
        text-align: left;
        white-space: wrap;
        overflow: hidden;
        flex: 1 1 0;
    }
    .matchup .team-b-name {
        text-align: right;
    }

    .matchup-center {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .matchup-center .result {
        font-size: 22px;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .logo,
    .logo-placeholder {
        height: 85px;
        aspect-ratio: 1;
        width: auto;
        object-fit: contain;
        margin: 20px;
    }




    .subtitle {
        text-align: center;
        margin: 0 0 10px 0;
        color: #666;
        letter-spacing: 1px;
    }

    .current {
        .matchup .team-a-name,
        .matchup .team-b-name,
        .result {
            color: var(--wp--preset--color--custom-color-1);
        }
    }

    .scroll-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 20px;
        background-color: var(--wp--preset--color--custom-color-1);
        color: var(--wp--preset--color--custom-color-4);
        border: 2px solid var(--wp--preset--color--custom-color-2);
        border-radius: 25px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .scroll-button:hover {
        transform: translate(-50%, -2px);
    }

    .scroll-button .button-text {
        font-size: 16px;
        font-weight: 600;
    }

    .scroll-button .button-icon {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .up .button-icon {
        vertical-align: middle;
    }

    @media (max-width: 768px) {
        .matchup .team-a-name,
        .matchup .team-b-name {
            font-size: 13px;
        }

        .result {
            font-size: 13px;
        }

        .logo,
        .logo-placeholder {
            height: 65px;
        }
    }



}

.logo-placeholder {
    display: block;
    background-color: var(--wp--preset--color--custom-color-5);
    border-radius: 50%;
    aspect-ratio: 1;
    width: auto;

    /* Gradient größer als das Element */
    background-image: linear-gradient(100deg, #515151 0%, #c5c5c5 50%, #515151 100%);
    background-size: 200% 200%;
    background-position: 0 0;

    animation: grd 3s ease-in-out infinite;
}

@keyframes grd {
    0% {
        /*transform: scale(1.3);*/
        background-position-x: 0;
    }
    50% {
        /*transform: scale(0.8);*/
        background-position-x: 100%;
    }
    100% {
        background-position-x: 0;
    }
}