#gallery-section {
    background-image: url(http://edosenta.com/wp-content/uploads/2025/09/gray-concrete-floor-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}


.grid {
    margin: 0 -5px;
    /* Điều chỉnh khoảng cách ngoài */
}

/* Default item styling */
.grid-item {
    float: left;
    width: 24.5%;
    /* 1 cột */
    height: 200px;
    /* Chiều cao mặc định */
    overflow: hidden;
    margin-bottom: 5px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Item lớn span 2 cột */
.grid-item--width2 {
    width: 49.5%;
    /* 2 cột */
    height: 406px;
    /* Chiều cao gấp đôi ảnh nhỏ */
}

/* Grid sizer cho responsive */
.grid-sizer {
    width: 25%;
    /* Cột cơ bản */
    height: 0;
    padding-bottom: 50%;
    /* Giữ tỷ lệ */
}

/* Responsive layouts */
@media (max-width: 768px) {

    .grid-sizer,
    .grid-item {
        width: 50%;
        /* 2 cột trên tablet */
    }

    .grid-item--width2 {
        width: 100%;
        /* Ảnh lớn full width */
    }

    .grid-item {
        height: 150px;
    }

    .grid-item--width2 {
        height: 300px;
    }
}

@media (max-width: 480px) {

    .grid-sizer,
    .grid-item,
    .grid-item--width2 {
        width: 100%;
        /* 1 cột trên mobile */
    }

    .grid-item {
        height: 300px;
    }

    .grid-item--width2 {
        height: 400px;
    }
}