.section-tech-marquee {
    padding: 24px 0;
}

.section-tech-marquee .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.section-tech-marquee .tech-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.section-tech-marquee .tech-marquee__track {
    display: flex;
    width: max-content;
    animation: tech-marquee-scroll 90s linear infinite;
    will-change: transform;
}

.section-tech-marquee .tech-marquee__list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.section-tech-marquee .tech-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 50px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--color-foreground);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
    transition: transform 0.25s ease;
}

.section-tech-marquee .tech-marquee:hover .tech-marquee__track {
    animation-play-state: paused;
}

.section-tech-marquee .tech-marquee.is-temporarily-paused .tech-marquee__track {
    animation-play-state: paused;
}

.section-tech-marquee .tech-marquee__item:hover {
    transform: scale(1.1);
}

.section-tech-marquee .tech-marquee__icon {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    height: 28px;
}

.section-tech-marquee .tech-marquee__icon svg {
    display: block;
    width: auto;
    height: 100%;
    max-width: 56px;
}

.section-tech-marquee .tech-marquee__item--icon-only {
    padding: 0;
}

.section-tech-marquee .tech-marquee__item--icon-only .tech-marquee__icon svg {
    max-width: 138px;
}

@keyframes tech-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .section-tech-marquee .tech-marquee__item {
        font-size: 14px;
        padding: 0;
    }

    .section-tech-marquee .tech-marquee__icon {
        height: 24px;
    }

    .section-tech-marquee .tech-marquee__icon svg {
        max-width: 48px;
    }

    .section-tech-marquee .tech-marquee__item--icon-only .tech-marquee__icon svg {
        max-width: 110px;
    }

    .section-tech-marquee .tech-marquee__track {
        animation-duration: 72s;
    }
}
