.theme-select {
    display: none;
}

.calendar-events {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.calendar-events p {
    margin-bottom: 0;
    color: hsla(0, 0%, 12%, 1);
    font-weight: 400;
    line-height: 1;
    font-size: 24px;
}

.calendar-events__item {
    height: 280px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid hsla(0, 0%, 0%, 1);
    transition: all 0.1s;

    flex: none;
    max-width: none;
    width: 100%;

    @media (min-width: 600px) {
        flex: 1 0 calc(50% - 8px);
        max-width: 49%;
    }

    @media (min-width: 1200px) {
        flex: 1 0 calc(25% - 8px);
        max-width: 32%;
    }

    @media (min-width: 1400px) {
        max-width: 24%;
    }
}

.calendar-events__item:hover {
    scale: 1.03;
}

.calendar-events__top p {
        font-size: 24px;
}

.calendar-events__bottom p {
        font-size: 24px;
}
