html {
    scroll-behavior: smooth;
}

.brand-page {
    background-color: #ffffff;
}

.brand-index {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.brand-index-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.brand-index-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.brand-index-pill {
    min-width: 34px;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background-color: #ffe4e1;
    color: #f97373;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.brand-index-pill:hover {
    background-color: #ffcaca;
}

.brand-section {
    margin-bottom: 2.5rem;
}

.brand-letter {
    font-size: 1.8rem;
    font-weight: 700;
}

.brand-separator {
    margin: 0.3rem 0 1rem;
    border-top: 2px solid #111111;
}

.brand-grid {
    row-gap: 0.4rem;
}

.brand-link {
    display: inline-block;
    font-size: 0.96rem;
    color: #374151;
    text-decoration: none;
}

.brand-link:hover {
    text-decoration: underline;
}
@media (max-width: 767.98px) {
    .brand-index{
        display: block;
    }
}
@media (max-width: 575.98px) {
    .brand-letter {
        font-size: 1.4rem;
    }
}