.promo-strip {
    position: relative;
    background: #004d40;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.promo-strip__track {
    width: 100%;
    margin: 0;
    position: relative;
}

.promo-strip__slide {
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
    line-height: 0;
}

.promo-strip__slide:hover {
    text-decoration: none;
}

.promo-strip__img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

/* Antraštė naudojama alt/aria-label; vaizdas jau turi dizainą 1200×360 */
.promo-strip__text {
    display: none;
}

.promo-strip__title {
    display: block;
    font-size: 1.05rem;
    line-height: 1.25;
}

.promo-strip__subtitle {
    display: block;
    margin-top: 4px;
    font-size: .88rem;
    opacity: .92;
}

.promo-strip__dots {
    position: absolute;
    right: 12px;
    bottom: 10px;
    display: flex;
    gap: 6px;
}

.promo-strip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.promo-strip__dot.is-active {
    background: #fff;
}

.promo-strip__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.promo-strip__close:hover {
    background: rgba(0,0,0,.65);
}

@media (max-width: 768px) {
    .promo-strip__title {
        font-size: .95rem;
    }

    .promo-strip__subtitle {
        font-size: .8rem;
    }
}