<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media only screen and (min-width: 930px) {
    .event {
        padding: 10px 30px;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 1em;
    }

    .city {
        font-size: 1.3em;
        align-self: end;
    }

    .venue {
        font-size: 0.7em;
    }

    .date {
        font-size: 0.7em;
        align-self: center;
        justify-self: center;
    }

    .tickets-link {
        font-size: 0.9em;
        align-items: center;
        max-width: 140px;
        justify-self: end;
        align-self: center;
    }
}


@media only screen and (min-width: 640px) and (max-width: 929px) {
    .event {
        padding: 10px 30px;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 1em;
    }

    .location {
        grid-column: 1/2;
        grid-row: 2/4;
    }


    .city {
        font-size: 1.3em;
        align-self: end;
    }

    .venue {
        font-size: 0.7em;
    }

    .date {
        font-size: 0.7em;
        grid-column: 1/3;
        grid-row: 1/2;
        align-self: center;
        justify-self: start;
    }

    .tickets-link {
        font-size: 0.9em;
        align-items: center;
        max-width: 140px;
        justify-self: end;
        align-self: center;
    }
}


@media screen and (max-width: 639px) {
    .event {
        padding: 10px;
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-column-gap: 0.5em;
        grid-row-gap: 0.5em;
    }

    .location {
        grid-column: 1;
        grid-row: 1;
    }

    .city {
        align-self: start;
    }

    .venue {
        font-size: 0.6em;
    }

    .date {
        font-size: 0.6em;
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        justify-self: end;
    }

    .tickets-link {
        font-size: 0.8em;
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: end;
    }
}

.tickets-link:has(.sold-out) {
    background-color: #A54035;
}

.tickets-link:has(.tickets-available) {
    background-color: #4B4B3A;
}

.location&gt;p {
    margin: 0;
}

.event {
    background-color: #1E1E1E;
    margin-bottom: 20px;
    border-radius: 6px;
    display: grid;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
    animation-fill-mode: backwards;
}

.city {
    font-family: "Montserrat-Regular";
}

.venue,
.date,
.tickets-link {
    font-family: "Montserrat-Thin";
}

.venue {
    align-self: start;
}

.tickets-link {
    padding: 6px 35px;
    display: flex;
    justify-content: center;
    border-radius: 6px;
    max-height: 40px;
    min-width: 140px;
}

/* --- Fade in events. --- */
.event.fade-in {
    animation-name: event-fade-in;
    animation-timing-function: ease;
}

@keyframes event-fade-in {
    0% {
        opacity: 0;
        transform: scale(0.8, 0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}
</pre></body></html>