h2 {
    clear: both;
}

#EventsDisplay {
    clear: both;
    width: 100%;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: baseline;
    gap: 10px;
}

@media (max-width: 775px) {
    #EventsDisplay {
        flex-direction: column;
        align-items: center;
    }
}

article.event-reg {
    display: block;
    width: 350px;
    max-width: 100%;
    box-shadow: 0 0 7px 0px #CCC;
    border-radius: 0.25rem;
    overflow: hidden;
}

article.event-reg:hover {
    box-shadow: 0 0 10px 2px var(--titan-blue);
}

#EventsDisplay article.event-reg a {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px 8px;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.weekday {
    width:110px;
    grid-row: span 2;
    background-color: #4f46e5;
    color: white;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    font-size: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

article.Monday .weekday {
    background-color: #1e40af;
}
article.Tuesday .weekday {
    background-color: #2563eb;
}
article.Wednesday .weekday {
    background-color: #047d58;
}
article.Thursday .weekday {
    background-color: #b45309;
}
article.Friday .weekday {
    background-color: #b91c1c;
}
article.Saturday .weekday {
    background-color: #6d28d9;
}
article.Sunday .weekday {
    background-color: #be185d;
}

.date {
    font-weight: bold;
    font-size: 1.1rem;
    padding-top: 5px;
}

.time {
    font-size: 0.9rem;
    padding-bottom: 5px;
}