/* HERO SECTION */
#hero {
    height: 500px;
    background-size: cover;
    background-position: center;
}

#hero .slider,
#hero .slick-list,
#hero .slick-track,
#hero .slick-slide div {
    height: 500px;
}

#hero .slick-slide img {
    height: 100%;
    object-fit: cover;
}

/* PRESS SECTION */
#s1 {
    padding: 40px 0;
}

#s1 .container-fluid {
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
}

#s1 h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

/* ROW & COLUMN SPACING */
#s1 .row {
    margin: 0 -20px; /* 20px each side = 40px between columns */
}

#s1 .col-md-6,
#s1 .col-xl-4 {
    padding: 20px;            /* even horizontal/vertical spacing */
    margin-bottom: 40px;      /* more space between rows */
    display: flex;
    flex-direction: column;
}

/* WRAPPER */
#s1 .wrap {
    display: block;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

/* IMAGE BLOCK */
#s1 .image {
    width: 100%;
    margin-bottom: 0; /* spacing is handled by column now */
}

/* IMAGE STYLING */
#s1 img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain; /* no cropping */
    display: block;
    border-radius: 4px;
}

/* RESPONSIVE TWEAKS */

/* Tablet: 2-up grid */
@media (max-width: 1199.98px) {
    #s1 .col-md-6,
    #s1 .col-xl-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile: 1-up grid */
@media (max-width: 767.98px) {
    #s1 .col-md-6,
    #s1 .col-xl-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px;
        margin-bottom: 30px;
    }

    #s1 .container-fluid {
        padding: 0 20px;
    }

    #s1 img {
        margin: 0 auto;
        max-height: 400px;
    }
}
