.mks-brands-section {
    width: 100%;
    background: #f8fafc;
    padding: 64px 0;
    font-family: 'Montserrat', sans-serif;
}

.mks-brands-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.mks-brands-eyebrow {
    margin: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #64748b;
}

.mks-brands-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
    justify-items: center;
}

.mks-brand-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.mks-brand-logo img {
    max-height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;

    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mks-brand-item:hover img {
    transform: translateY(-2px);
    opacity: 0.95;
}

@media (max-width: 991px) {
    .mks-brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .mks-brands-section {
        padding: 52px 0;
    }

    .mks-brands-container {
        padding: 0 20px;
    }

    .mks-brands-grid {
        margin-top: 32px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mks-brand-item {
        min-height: 64px;
    }

    .mks-brand-logo img {
        max-height: 42px;
    }
}