/* ===== PATCHES STRIP ===== */
.patches-strip {
    background: var(--dark-gray);
    padding: 24px 0;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.patches-strip-label {
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 16px;
}

.patches-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.patches-scroll-track {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    width: max-content;
}

.patch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: 140px;
}

.patch-item img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    opacity: .8;
    transition: opacity .3s, transform .3s;
}

.patch-item:hover img {
    opacity: 1;
    transform: scale(1.35);
}

.patch-caption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.patch-name {
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: .5px;
}

.patch-location {
    font-size: .65rem;
    color: rgba(255, 255, 255, .3);
    white-space: nowrap;
    font-weight: 400;
}

@media (max-width: 768px) {
    .patch-item img {
        height: 56px;
        width: 56px;
    }

    .patch-name {
        font-size: .65rem;
    }

    .patch-location {
        font-size: .6rem;
    }
}