/* Titulo de marcas (estilos base de section-header-title en global.css) */
.brands-container-title .brands-title {
    font-size: 33px;
}

/* Container del titulo (estilos base en global.css) */
.brands-container-title {
    text-align: center;
    padding: 1.5rem;
}

/* Filtro y listado de marcas */
.wrapper-brands {
    display: flex;
    flex-direction: column;
}

.wrapper-brands .container-filter {
    display: flex;
    flex-direction: row;
    width: 30%;
    margin: 2rem 0;
}

.wrapper-brands .container-filter span {
    font-size: .875rem;
    color: #7a7a7a;
    margin: 1rem -.9375rem 0 .9375rem;
    text-align: right;
    word-break: break-word;
    white-space: normal;
}

/* Cards de marcas */
li.brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-white);
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

li.brand:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #dcdcdc;
}

.brand .brand-infos .name-brand {
    font-family: var(--font-brand);
    font-weight: 500;
    line-height: 1.1;
    font-size: 13px;
}

.brand .brand-infos .name-brand a {
    color: var(--color-gray-dark);
}
