.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    text-transform: none !important;
    white-space: nowrap;
    word-wrap: normal;
}

.bg-glass {
    backdrop-filter: blur(24px);
}

.industrial-gradient {
    background: linear-gradient(45deg, #6c5a00 0%, #ffd709 100%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.group:hover .animate-marquee {
    animation-play-state: paused;
}

.bg-industrial-grid {
    background-color: #ffd709;
    /* primary-container approx */
    background-image:
        linear-gradient(rgba(171, 147, 11, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 15px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}