:root {
    --wnt-radius: 14px;
    --wnt-gap: .7rem;
    --wnt-title: #0f172a;
    --wnt-muted: #94a3b8;
    --wnt-highlight: #ef233c;
}

/* visiškai skaidrus wrapperis, jokių padding, jokių borderių */
.wnt-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.wnt-track {
    display: flex;
    gap: var(--wnt-gap);
    align-items: stretch;
    will-change: transform;
}

/* Kortelės – visos vienodos */
.wnt-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: 86px;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,.24);
    border-radius: var(--wnt-radius);
    padding: .55rem .6rem;
    box-shadow: 0 4px 16px rgba(15,23,42,.03);
    text-decoration: none;
    color: var(--wnt-title);
}

.wnt-thumb-wrap {
    position: relative;
    width: 118px;
    min-width: 118px;
    height: 68px;
    overflow: hidden;
    border-radius: 10px;
    background: #e2e8f0;
}
.wnt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wnt-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    background: var(--wnt-highlight);
    border-radius: 999px;
    animation: wnt-pulse 1.1s ease-in-out infinite;
}
@keyframes wnt-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .5; }
    100% { transform: scale(1); opacity: 1; }
}

.wnt-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .2rem;
    flex: 1;
    min-width: 0;
}

.wnt-title {
    font-weight: 600;
    font-size: .78rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wnt-meta {
    display: flex;
    align-items: center;
}
.wnt-time {
    font-size: .6rem;
    color: var(--wnt-muted);
}

/* Desktop truputį platesnės, bet vienodos */
@media (min-width: 1100px) {
    .wnt-item {
        width: 310px;
        min-width: 310px;
        max-width: 310px;
    }
}

/* Mobile – tik plotis keičiasi, fono nėra */
@media (max-width: 600px) {
    .wnt-item {
        width: 82vw;
        min-width: 82vw;
        max-width: 82vw;
        height: auto;
    }
    .wnt-thumb-wrap {
        width: 108px;
        min-width: 108px;
        height: 63px;
    }
}
