.brands-alphabet {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.brand-letter-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.brand-letter-header span {
    height: 1px;
    background: #e5e5e5;
}

.brand-letter-header strong {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #888;
}

.brand-items {
    display: flex;
    justify-content: center;
    gap: 40px 60px;
    align-items: center;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.brand-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Mulish";
    font-weight: 600;
    font-size: 18px;
    color: #475467;
    width: 150px;
    height: 150px;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    width: auto;
    object-fit: contain;

}