@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

.wa-lt-wrapper {
    width: 100%;
    background: #000000;
    padding: 60px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-align: center;
}

.wa-lt-top-text {
    font-size: 13px;
    color: #444444;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    text-transform: none;
    font-weight: 500;
}

.wa-lt-ticker-container {
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.wa-lt-ticker-track {
    display: flex;
    white-space: nowrap;
    width: fit-content;
    animation: wa-ticker-infinite 40s linear infinite; /* Hızlı akış */
}

.wa-lt-logo-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-lt-logo-item img {
    height: 35px; /* Volandex standard */
    width: auto;
    max-width: 150px;
    filter: brightness(0.4) grayscale(1); /* Sönük gri logolar */
    transition: filter 0.3s ease;
    opacity: 0.7;
}

.wa-lt-logo-item:hover img {
    filter: brightness(0.8) grayscale(1);
    opacity: 1;
}

@keyframes wa-ticker-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); } /* Calculate based on 3-fold repeat */
}

/* Responsive */
@media (max-width: 768px) {
    .wa-lt-logo-item img { height: 28px; }
    .wa-lt-logo-item { padding: 0 25px; }
}
