/* --- COMPONENT CUSTOMER GRID --- */
.customer-grid-section {
    padding: 60px 15px 100px;
    background: var(--bg-gray-3);
}

.customer-grid {
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.customer-grid-section .section-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-color);
    padding-top: 20px;
    margin-bottom: 52px;
}

.customer-grid-section .section-description {
    max-width: 620px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    margin: 0 auto 100px auto;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 32px;
    align-items: center;
}

.logos-grid a {
    display: block;
    text-align: center;
}

.logos-grid img {
    max-width: 130px; /* Chiều rộng tối đa của logo */
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logos-grid a:hover img {
    opacity: 1;
}

@media (max-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(6, 1fr);
        padding: 0 28px;
    }

    .customer-grid-section {
        padding-bottom: 80px;
    }

    .customer-grid-section .section-title {
        font-size: 1.6rem;
        padding-top: 0;
        margin-bottom: 40px;
    }

    .customer-grid-section .section-description {
        font-size: 0.78rem;
        padding: 0 20px;
        margin-bottom: 52px;
    }
}

@media (max-width: 520px) {
    .logos-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
}
