/* Brand Section Styles */
.ev-brand-bg {
    background-color: #fff;
    padding: 0;
}

.brand-section {
    max-width: 1220px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 0 20px 0;
}

.brand-section__container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.brand-section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
}

.brand-section__label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 0;
    color: #23282d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.brand-section__title {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #23282d;
}

.brand-row-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 0 auto;
    max-width: 1220px;
    justify-content: center;
}

.brand-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 8px 0;
    gap: 20px;
    justify-content: center;
}

.brand-section__item {
    position: relative !important;
    width: 200px !important;
    flex: 0 0 200px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #fff !important;
    border-radius: 8px !important;
    padding: 20px !important;
    transition: transform 0.2s ease;
}

.brand-section__item:hover {
    transform: translateY(-2px);
}

.brand-section__img {
    width: 160px !important;
    height: 80px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 4px !important;
    background-color: transparent !important;
}

/* Responsive design */
@media (max-width: 900px) {
    .brand-section__header { 
        margin-left: 20px; 
    }
    .brand-section__label { 
        font-size: 13px; 
    }
    .brand-section__title { 
        font-size: 18px; 
    }
    .brand-section__item {
        width: 150px !important;
        flex: 0 0 150px !important;
        padding: 15px !important;
    }
    .brand-section__img {
        width: 120px !important;
        height: 60px !important;
    }
    .brand-row {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .brand-section__item {
        width: 120px !important;
        flex: 0 0 120px !important;
        padding: 10px !important;
    }
    .brand-section__img {
        width: 100px !important;
        height: 50px !important;
    }
    .brand-row {
        gap: 10px;
    }
} 