/**
 * Events listing, following the responsive section-news layout.
 */
.section-news {
    padding: 40px 0;
}

.section-news .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-news .section-title {
    width: 100%;
    margin: 0 0 40px;
    color: #231f20;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.event-news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 20px;
    width: 100%;
}

.event-news-item {
    display: block;
    min-width: 0;
    color: #231f20;
}

.event-news-item__img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.event-news-item__img img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform .3s ease;
}

.event-news-item__date {
    display: block;
    margin-bottom: 5px;
    color: #231f20;
    font-family: 'ChronicleDisp-R', Times New Roman, serif;
    font-size: 22px;
    line-height: 24px;
    opacity: .7;
}

.event-news-item__title {
    display: -webkit-box;
    margin-bottom: 15px;
    overflow: hidden;
    color: #231f20;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.event-news-item__description {
    display: -webkit-box;
    overflow: hidden;
    color: #231f20;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 24px;
    line-height: 32px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.event-news-item:hover .event-news-item__title {
    text-decoration: none;
    color: #E24285;
}

.event-news-item:hover .event-news-item__img img {
    transform: scale(1.05);
}

.section-news .btn {
    min-width: 200px;
    height: 60px;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .event-news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .section-news {
        padding: 0;
    }

    .section-news .section-title {
        margin-bottom: 32px;
        font-size: 35px;
        line-height: 42px;
    }

    .event-news-list {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .event-news-item__img {
        margin-bottom: 10px;
    }

    .event-news-item__img img {
        height: 338px;
    }

    .event-news-item__title {
        margin-bottom: 5px;
        font-size: 22px;
        line-height: 26px;
    }

    .event-news-item__description {
        font-size: 16px;
        line-height: 24px;
    }

    .section-news .btn {
        width: 100%;
        height: 42px;
        margin-top: 32px;
    }
}
