.wacbrand-image-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc; 
    overflow: hidden; 
    background: #f9f9f9; 
    max-height: 240px;
}

.image-box .image-link{
    display: block;
    width: 100%;
    height: 100%;
}
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .wacbrand-image-section {
        grid-template-columns: repeat(3, 1fr); 
    }
    .wacbrand-image-section{
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .wacbrand-image-section {
        grid-template-columns: repeat(2, 1fr); 
    }
}

