/* ========================================
   SIMPLE CSS CAROUSEL (Production)
   Safe for minification
   ======================================== */

.owl-scroll_text {
    position: relative;
    width: 100vw;
    height: 60px;
    background: #fff;
    overflow: hidden;
}

.owl-scroll_text .scroll-content {
    display: flex;
    width: max-content;
    height: 60px;
    animation: simple-scroll 55s linear infinite;
    transform: translateZ(0);
}

@keyframes simple-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.owl_scroll-text__item,
.owl_scroll-text__item_dot {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 25px;
    white-space: nowrap;
}

.owl_scroll-text__item_dot {
    font-size: 24px;
    font-weight: 700;
    color: #369FFF;
    padding: 0 15px;
}

.owl_scroll-text__item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.owl_scroll-text__item a:hover {
    color: #369FFF;
}

/* ========================================
   Footer carousel grid
   ======================================== */

.owl-carousel_what {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
    width: 100%;
}

@media (min-width: 576px) {
    .owl-carousel_what { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 768px) {
    .owl-carousel_what { grid-template-columns: repeat(3,1fr); }
}

@media (min-width: 1200px) {
    .owl-carousel_what { grid-template-columns: repeat(4,1fr); }
}

.owl-carousel_what .item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.owl-carousel_what .col { 
    width: 100%; 
}

/* ========================================
   LEGACY CLEANUP
   ======================================== */

.custom-carousel-nav,
.custom-carousel-dots,
.custom-carousel-wrapper,
.custom-carousel-track {
    display: none;
} 