.home-page.home-polished .customer-brands .logo-group-title {
    margin-bottom: 20px;
}
.customer-brands {
    --customer-logo-gap: 12px;
    --customer-scroll-duration: 50s;
}
.customer-brands__title-line {
    display: inline-block;
}
.customer-brands__heading {
    margin: 0 0 20px;
    text-align: center;
}
.customer-brands__heading span {
    display: inline-block;
    padding: 8px 2px;
    border-bottom: 2px solid var(--site-brand);
    color: var(--site-link);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}
.customer-brands__panel {
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: var(--site-surface);
}
.customer-brands__viewport {
    /* Preserve the previous four rows plus the expand-control space. */
    height: 392px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c4d8e7 transparent;
}
.customer-brands__viewport:focus-visible {
    outline: 2px solid var(--site-brand);
    outline-offset: 5px;
}
.customer-brands__track {
    width: 100%;
}
.customer-brands__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--customer-logo-gap);
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0 0 var(--customer-logo-gap);
    list-style: none;
}
.customer-brands__grid[hidden] {
    display: none;
}
.customer-brands__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 0;
    height: 76px;
    padding: 10px 12px;
    border: 1px solid #e6edf3;
    border-radius: 8px;
    background: #fff;
    list-style: none;
}
.customer-brands__logo img {
    display: block;
    width: 100%;
    max-width: 180px;
    height: 48px;
    object-fit: contain;
}
.customer-brands.is-animated .customer-brands__viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10px, #000 calc(100% - 18px), transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 10px, #000 calc(100% - 18px), transparent);
}
.customer-brands.is-animated .customer-brands__track {
    animation: customer-brands-rise var(--customer-scroll-duration) linear infinite;
    animation-play-state: paused;
}
.customer-brands.is-animated[data-running="true"] .customer-brands__track {
    animation-play-state: running;
}
.customer-brands.is-animated .customer-brands__viewport:focus-within .customer-brands__track {
    animation-play-state: paused;
}
@media (hover: hover) {
    .customer-brands.is-animated .customer-brands__viewport:hover .customer-brands__track {
        animation-play-state: paused;
    }
}
@keyframes customer-brands-rise {
    to { transform: translateY(-50%); }
}
.customer-brands__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}
.home-page.home-polished .customer-brands__footer a.industry-solutions__link {
    color: #525967;
}
.home-page.home-polished .customer-brands__footer a.industry-solutions__link:hover {
    color: #343d48;
}
@media (max-width: 1100px) {
    .customer-brands__viewport {
        height: 568px;
    }
    .customer-brands__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .customer-brands {
        --customer-logo-gap: 10px;
    }
    .customer-brands__heading {
        margin-bottom: 16px;
    }
    .customer-brands__heading span {
        padding: 9px 0;
        font-size: 14px;
    }
    .customer-brands__panel {
        padding: 12px;
        border-radius: 12px;
    }
    .customer-brands__viewport {
        height: 510px;
    }
    .customer-brands__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .customer-brands__logo {
        height: 68px;
        padding: 8px;
        border-radius: 6px;
    }
    .customer-brands__logo img {
        height: 44px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .customer-brands.is-animated .customer-brands__track {
        animation: none;
        transform: none;
    }
    .customer-brands.is-animated .customer-brands__viewport {
        overflow-y: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .customer-brands [data-brands-copy] {
        display: none;
    }
}
