/* SPORT SLIDER */
.sport-slider-section {
    padding: 6% 0 10%;
    padding-left: 4%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}
.sport-slider-section .text-container span {
    line-height: 1;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    margin-bottom: .5rem;
}
.sport-slider-section.has-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10% 5%;
    background: #222222;
}
.sport-slider-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 2;

    background: linear-gradient(
            to right,
            rgba(235,16,16,0),
            rgba(235,16,16,1) 50%,
            rgba(235,16,16,0)
    );

    /* asta simulează subțierea */
    mask-image: radial-gradient(
            ellipse at center,
            black 60%,
            transparent 100%
    );
}
.sport-slider-section > * {
    position: relative;
    z-index: 2;
}
.sport-slider-section .bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.sport-slider-section .sport-content_logo {
    display: none;
    position: relative;
    margin-right: 35px;
    z-index: 200;
}
.sport-slider-section .sport-content_logo img {
    height: auto;
}
@media (min-width: 850px) {
    .sport-slider-section .sport-content_logo {
        display: block;
    }
}
.sport-content_carousel {
    width: 100%;
}
@media (min-width: 850px) {
    .sport-content_carousel {
        width: calc(100% - 15vw);
    }
}
.sport-slider-section .sport-content_carousel .thumbTiles.events-swiper {
    padding: 0;
}
@media (min-width: 850px) {
    .sport-slider-section .sport-content_carousel .thumbTiles.events-swiper {
        position: relative;
        overflow: hidden;
        padding-left: 0;
    }
}
.sport-slider-section .sport-content_carousel .thumbTitle {
    margin-left: 0;
}
.sport-slider-section .swiper-sport-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
@media (min-width: 850px) {
    .sport-slider-section .swiper-sport-slide {
        display: grid;
        grid-auto-rows: 1fr 130px;
        flex-shrink: 0;
        transition-property: transform;
    }
}
.sport-slider-section .swiper-sport-slide .thumbImage {
    padding-bottom: 56.25%;
    position: relative;
}
.sport-slider-section .slide-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.sport-slider-section .play-episode {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: rgba(22, 22, 22, 0.3);
    background-image: url(https://antenaplay.ro/images/icon-play-standard.svg);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: 25% 45%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
}
@media (min-width: 850px) {
    .sport-slider-section .swiper-sport-slide:hover .play-episode {
        background-color: rgba(22, 22, 22, 0.6);
    }
}
.sport-slider-section .slide-title {
    margin-bottom: 0;
    line-height: normal;
    font-size: clamp(16px, 1.2vw, 18px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.slide-description {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}
@media (min-width: 850px) {
    .sport-slider-section .slide-title {
        font-size: 20px;
        font-weight: 700;
    }
}
.swiper-sport-slide .text-container {
    padding: 10px 15px;
    position: relative;
    background: #1E1E1E;
    background: linear-gradient(190deg,rgba(30, 30, 30, 0.95) 0%, rgba(30, 30, 30, 0.25) 100%);
    backdrop-filter: blur(12px);
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid #515151;
}
@media (max-width: 650px) {
    .swiper-sport-slide .text-container {
        min-height: 120px;
    }
}
.sport-slider-section .exclusive {
    font-size: 13px;
    padding: 2px 15px;
    background-color: #ea1d25;
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    font-weight: 400;
    z-index: 10;
    border-radius: 6px 0 6px 0;
}

/* SLIDER ARROWS */
.sport-content_carousel .swiper-button-prev,
.sport-content_carousel .swiper-button-next {
    height: 100%;
    width: calc(4% - 8px);
    top: 0;
    bottom: 0;
    margin: 0;
    background-color: rgba(20, 20, 20, 0.5);
}
.sport-content_carousel .swiper-button-prev,
.sport-content_carousel .swiper-button-prev {
    left: 0;
}
.sport-content_carousel .swiper-button-next,
.swiper-button-next {
    right: 0;
}
.sport-content_carousel:hover .swiper-button-prev::after,
.sport-content_carousel:hover .swiper-button-next::after {
    display: block;
}
.sport-content_carousel .swiper-button-prev::after,
.sport-content_carousel .swiper-button-next::after {
    color: #fff;
    font-size: 2.4vw;
    font-weight: 700;
    transition: transform 0.1s ease-out;
    display: none;
}
.sport-content_carousel .thumbTiles:hover .swiper-button-prev::after,
.sport-content_carousel .thumbTiles:hover .swiper-button-next::after {
    display: block;
}
/*NOT INITIALIZED */
.sport-slider-section .events:not(.swiper-initialized) .swiper-sport-slide {
    margin-right: 6px;
    min-width: calc(53% - 5px);
    flex-shrink: 1;
}
@media all and (min-width: 640px) {
    .sport-slider-section .events:not(.swiper-initialized) .swiper-sport-slide {
        margin-right: 8px;
        min-width: calc(25% - 5px);
    }
}
.thumbTiles.events .swiper-button-prev,
.thumbTiles.events .swiper-button-next {
    background-color: transparent;
}
.thumbTiles.events:hover .swiper-button-prev,
.thumbTiles.events:hover .swiper-button-next {
    background-color: rgba(20, 20, 20, 0.5);
}

.sport-slider-section {
    overflow: hidden;
    position: relative;
}