.events {
    padding: 120px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
}

.events .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.events .btn-wrapper {
    margin: 0 auto;
}

.events .posts-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 72px;
}

.events .post-single {
    width: calc(33.33333333% - 48px);
    border: 5px solid #D9D9D9;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 20px 40px 40px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 32px;
    transition: border .3s ease;
    display: flex;
    flex-direction: column;
}

.events .post-single:hover {
    border-color: var(--Grafit, #313235);
}

.events .post-single .event-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.events .event-date {
    color: var(--brick);
    font-family: 'Alegreya';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.events .post-single .event-button {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.events .event-data h3 {
    color: var(--antracyte);
}

.events .event-location {
    color: var(--red);
    font-weight: 700;
    font-size: 26px;
    font-family: 'Alegreya Sans SC';
    text-transform: uppercase;
}

.events .post-single .btn-wrapper {
    margin-top: auto;
    margin-right: 0;
}

.events .post-single .event-button {
    margin-top: 16px;
    color: var(--brick);
    font-size: 16px;
    font-family: 'Alegreya Sans';
}

.events .post-single:hover .btn-icon rect {
    fill: var(--brick);
}

.events .post-single .event-button .btn-icon rect {
    transition: fill .3s ease;
}

.events .post-single .event-button .btn-icon {
    display: flex;
    align-items: center;
}

@media (max-width:1440px) {
    /* .events {
        padding: 96px 0;
    } */

    .events .posts-wrapper {
        gap: 32px;
    }

    .events .post-single {
        width: calc(33.33333333% - 24px);
    }

    .events .event-location {
        font-size: 20px;
    }
}

@media (max-width:1199px) {
    .events {
        padding: 64px 0;
    }

    .events .posts-wrapper {
        gap: 16px;
    }

    .events .post-single {
        width: calc(50% - 8px);
        flex: 1 auto;
        padding: 16px;
    }

    .events .content-wrapper {
        gap: 32px;
    }

    .events .event-location {
        font-size: 16px;
    }
}

@media (max-width:768px) {
    .events .post-single {
        width: 100%;
    }
}