.hotel-events-section {
    width: 100%;
    margin: 80px auto;
    padding: 0 80px;
    font-family: "Monserrat", Sans-serif !important;
}

.hotel-events-header {
    text-align: center;
    margin-bottom: 40px;
}

.hotel-events-title {
    font-size: 42px;
    font-weight: 300;
    color: #2f2f2f;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.hotel-events-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
    margin: 0 auto 50px;
}

.hotel-events-content-container {
    position: relative;
    max-width: 1348px;
    margin: 0 auto;
}
.hotel-events-content-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 890px;
    height: 560px;
    border-radius: 6px;
    background: var(--hotel-accent-15);
}

.hotel-events-button {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    background: #2F2F2F;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hotel-events-button:hover {
    background: var(--hotel-accent-2);
    color: var(--hotel-text-color);
}

.hotel-events-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 0 0 0;
}

.hotel-events-item {
    position: relative;
    display: block;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 6px;
    text-decoration: none;
}

.hotel-events-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.hotel-events-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hotel-events-item:hover img {
    transform: scale(1.02);
}

/* Make the middle (2nd) image sit a bit lower */
.hotel-events-item:nth-child(2) {
    margin-top: 60px;
}

@media (max-width: 1200px) {
    .hotel-events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .hotel-events-item:nth-child(1),
    .hotel-events-item:nth-child(2),
    .hotel-events-item:nth-child(3) {
        height: 400px;
    }
    
    .hotel-events-item:nth-child(2) {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .hotel-events-section {
        margin: 130px auto;
        padding: 0 14px;
    }
    
    .hotel-events-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .hotel-events-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .hotel-events-button {
        position: relative;
    padding: 14px 34px;
    top: unset;
    width: fit-content;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;    
}

    .hotel-events-button-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 auto 20px;
    }

    .hotel-events-button-row .hotel-events-button {
        grid-column: 1;
    }
    
    .hotel-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hotel-events-item:nth-child(2) {
        margin-top: 0;
    }
    
    .hotel-events-item:nth-child(1),
    .hotel-events-item:nth-child(2),
    .hotel-events-item:nth-child(3) {
        height: 350px;
    }
    
    .hotel-events-item:nth-child(n+2) {
        display: none;
    }
}
