.page-events {
    background: #ffffff;
}
.page-events .events-listing-section {
    margin-top: 100px;
    padding-bottom: 100px;
}
.page-events .events-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 510px);
    gap: 35px;
    justify-content: center;
}
.page-events .events-listing-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 510px;
}
.page-events .events-listing-card--wide-gap {
    gap: 35px;
}
.page-events .events-listing-image {
    border-radius: 10px;
    overflow: hidden;
    width: 510px;
    height: 310px;
    background: #ffffff;
    flex-shrink: 0;
}
.page-events .events-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.page-events .events-listing-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 510px;
}
.page-events .events-listing-date {
    display: block;
    font-size: 18px;
    line-height: normal;
    color: #413185;
}
.page-events .events-listing-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #1d1d20;
    margin: 0;
    max-width: 449px;
}
.page-events .events-listing-desc {
    font-size: 18px;
    line-height: 28px;
    color: #666666;
    margin: 0;
}
.page-events .events-listing-contact {
    font-size: 18px;
    line-height: 28px;
    color: #1d1d20;
    margin: 0;
}
.page-events .events-listing-contact a {
    color: #666666;
    text-decoration: underline;
    text-underline-position: from-font;
}
.page-events .events-listing-contact a:hover {
    color: #e13324;
}
@media (max-width: 1661px) {
    .page-events .events-listing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 35px;
    }
    .page-events .events-listing-card,
    .page-events .events-listing-image,
    .page-events .events-listing-body {
        width: 100%;
    }
    .page-events .events-listing-title {
        max-width: none;
    }
}
@media (max-width: 1199px) {
    .page-events .events-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}
@media (max-width: 767px) {
    .page-events .events-listing-section {
        margin-top: 60px;
        padding-bottom: 60px;
    }
    .page-events .events-listing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-events .events-listing-image {
        height: 240px;
    }
    .page-events .events-listing-title {
        font-size: 20px;
        line-height: 1.4;
    }
    .page-events .events-listing-desc,
    .page-events .events-listing-contact,
    .page-events .events-listing-date {
        font-size: 16px;
    }
}
