#events #wrapper {
    color: var(--offwhite);
}

    #events #content {
        padding: 11vw 4vw 4vw 4vw;
        width: 100%;
    }

        #events #content .list {
            display: flex;
            flex-direction: column;
            gap: 2vw;
            margin-top: 2vw;
        }

            #events #content .list .event {
                border: 1px solid var(--offwhite);
                color: inherit;
                display: flex;
                flex-direction: column;
                padding: 0 2vw 2vw 2vw;
                text-decoration: none;
                transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
            }

            #events #content .list .event:hover {border-color: var(--gold);}

                #events #content .list .event .countdown {
                    align-self: flex-end;
                    background-color: var(--offwhite);
                    color: var(--black);
                    font-weight: 600;
                    padding: 0.5rem 1rem;
                    text-transform: uppercase;
                    transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
                    width: max-content;
                    max-width: 100%;
                }

                #events #content .list .event:hover .countdown:not(.live) {background-color: var(--gold);}

                #events #content .list .event .countdown.live {
                    animation: livePulse 1.5s infinite;
                    background-color: rgb(255,0,0);
                }

                @keyframes livePulse {
                    0% {background-color: rgb(255,0,0);}
                    50% {background-color: rgb(200,0,0);}
                    100% {background-color: rgb(255,0,0);}
                }

                #events #content .list .event .date {
                    font-size: 1rem;
                    line-height: 1;
                    opacity: 0.5;
                }

                #events #content .list .event .title {
                    font-size: 1.75rem;
                    line-height: 2rem;
                    transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
                }

                #events #content .list .event:hover .title {color: var(--gold);}