:root {
    --color-base: #e6e9e5;
    --color-1: #000002;
    --color-2: #ffffff;
    --color-3: #55e7c8;
}

.fwc2026 {
    background-color: var(--color-base);
    display: flex;
    width: fit-content;
    height: fit-content;
    border-radius: 8px;
}

.fwc2026 .time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 24px;
    font-weight: bold;
    font-family: "Open Sans";
    border-radius: 8px 0 0 8px;

    sub {
        color: #fff;
        background-color: var(--color-1);
        font-size: 0;
        border-radius: 4px;
        padding: 0;
        margin-left: 0;
        max-width: 0;
        overflow: hidden;
        transition: 0.4s ease-in-out;
    }
    sub.active {
        font-size: 14px;
        padding: 4px;
        margin-left: 10px;
        max-width: 100%;
    }
}

.fwc2026 .additional {
    color: var(--color-2);
    background-color: var(--color-1);
    border-radius: 0 8px 8px;
    display: none;
}

.fwc2026.right {
    /* flex-direction: row-reverse; */
}

.fwc2026-data {
    font-family: "FWC2026";
    display: flex;
    min-width: 300px;
    width: fit-content;
    height: 40px;
    position: relative;
    box-sizing: border-box;
    padding: 8px;
    padding-top: 0;
    padding-bottom: 4px;
    border-radius: 8px;
    background-color: var(--color-base);
    background: linear-gradient(90deg,
            #d98974 0% 25%,
            #9e161a 25% 50%,
            #c4ef48 50% 75%,
            #997ada 75% 100%);
}

.fwc2026-data .game {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    color: var(--color-2);
    background-color: var(--color-1);
    border-radius: 8px;
    flex: 1;
    padding: 0 10px;
    gap: 12px;
    z-index: 1;

    .club {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;

        .logo {
            width: fit-content;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;

            &:afterA {
                content: "";
                position: absolute;
                inset: 0;
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
                pointer-events: none;
                border-radius: 4px;
            }
        }

        img {
            width: 25px;
            aspect-ratio: 1/1;
            border-radius: 4px;
            object-position: center;
            object-fit: contain;
            /* background-color: var(--color-base); */            
            /* outline: 1.6px solid rgba(255,255,255,.3);
            outline-offset: -1.6px; */
        }

        .jersey {
            width: 14px;
            height: 14px;
            border-radius: 100px;
            background-color: #fff;
            border: 1px solid #ffffff50;

            &.home {
                background-color: var(--jersey-home, #0848a6);
            }

            &.away {
                background-color: var(--jersey-away, #dad8da);
            }
        }

        .name {
            text-align: center;
            font-size: 28px;
            letter-spacing: 1px;
            font-weight: normal;
        }
    }

    .score {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 34px;
        font-weight: bold;
        font-family: "Open Sans";
        color: #000;
        background-color: var(--color-3);
        padding: 0 8px;
        border-radius: 8px;
        transition: all 0.4s ease;

        .goal {
            transition: all 0.4s ease;
        }
    }
    .event {
        width: 33.25px;
        height: 45.2px;
        background-color: var(--color-1);
        border-radius: 6px;
        padding: 5.5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


img[data-klub-logo="home"], 
img[data-klub-logo="away"]{
    filter: 
        drop-shadow(0 0 1.6px rgba(255,255,255, 0.2))
        drop-shadow(0 0 0 white);
}