.page-content {
    padding-top: 0;
    margin-top: 0;
}

.event {
    display: flex;
    flex-direction: row;
    gap: 20px;

    > div {
        padding: 20px;
    }

    .event-date {
        background-color: var(--color-light30);
        color: white;
        flex: 0 0 150px;

        p {
            text-align: center;
        }

        .event-day {
            font-size: 1.2rem;
        }
    }

    .event-details {
        > .event-title {
            font-weight: bold;
        }

        > .event-venue {
            font-size: 0.8rem;
        }

        > .event-description {
            font-size: 0.8rem;
        }
    }

    > .event-description {
        display: none;
        padding-top: 0;
    }

    > .event-description > p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .event {
        flex-direction: column;
        gap: unset;

        > .event-details {
            > p:last-of-type {
                display: none;
            }

            > hr {
                margin-bottom: unset;
            }
        }

        > .event-description {
            display: inherit;
        }
    }
}

.events-card {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 3px 3px 8px -6px var(--color-dark40);
    margin-bottom: 20px;
    perspective: 1000px;
    width: fit-content;
}