/* Tags Carousel Layout */
.sports-carousel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.sports-carousel .swiper-slide {
	height: auto;
}

.sports-carousel .holder {
    display: block;
    width: 100%;
    min-height: 300px;
}

.sports-carousel .holder > .top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 24px;
}
.sports-container {
    display: block;
}

.sports-carousel .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
}
.sports-carousel .left h2{
    color: var(--Primary, #000);
    font-family: var(--theme-font-family);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 44px */
    letter-spacing: -1.32px;
    text-transform: uppercase;
}
.sports-carousel .left h2 span {
    /* H1 */
    color: var(--theme-color-text);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-h1);
    font-weight: var(--theme-font-weight-h1);
    line-height: var(--theme-line-height-h1);
    letter-spacing: var(--theme-letter-spacing-h1);
}
.sports-carousel .left p,
.sports-carousel .left a{
    color: var(--Primary, #000);
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.36px;
    text-transform: uppercase;
}



/* Tag item styling */
.sports-carousel .tag-item {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-decoration: none;
    color: white;
    overflow: hidden;
    border-radius: 8px;
}

.sports-carousel .tag-item .top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.sports-carousel .tag-item .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 305/228;
}

.sports-carousel .tag-item .bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    background-color: var(--theme-color-accent);
    color: var(--e-global-color-primary);

}
.sports-carousel .tag-item .bottom img {
    padding: 16px;
    background-color: var(--theme-color-primary);
}

.sports-carousel .tag-item .bottom .texts{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
}

.sports-carousel .tag-item .tag-name {
    color: var(--Primary, #000);

    /* H4 */
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
}
.sports-carousel .tag-item .view-now {
    color: var(--Primary, #000);

    /* Action */
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 15.4px */
    letter-spacing: -0.28px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.sports-carousel .tag-item .view-now svg {
    width: 8px;
    height: 8px;
}


/* pagination */
.sports-carousel .swiper-pagination {
    display: none !important;
}





/* Responsive Layout */
@media (max-width: 1024px) {
    /* padding-right for Buttons */
    .sports-carousel .holder > .top {
        padding-right: 40px;
    }
    /* Show pagination on mobile and tablet */
    .sports-carousel .swiper-pagination {
        display: block !important;
    }
    .sports-carousel .tag-item .view-now {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* padding-right for Buttons */
    .sports-carousel .holder > .top {
        padding-right: 16px;
    }
	
	.sports-carousel .left p {
    display: none;
}
    
    /* Hide navigation buttons on mobile */
    .sports-carousel-nav-buttons{
        display: none !important;
    }
}