/* Sports News Wrapper */
.sports-news-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Header Section */
.sports-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sports-news-title {
    margin: 0;
    color: #000;
}

/* Navigation Buttons */
.sports-news-navigation {
    display: flex;
    gap: 8px;
}

.sports-news-navigation-mobile {
    display: none;
    justify-content: center;
    margin-top: 16px;
}

.sports-news-navigation-desktop {
    display: flex;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 47px;
    height: 47px;
    border: 1.5px solid #D5D7DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #FFFFFF;
    transition: all 0.3s ease;
    padding: 0;
}

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    border-color: #000000;
}

.swiper-button-prev-custom:hover svg path,
.swiper-button-next-custom:hover svg path {
    stroke: #000000;
}

.swiper-button-prev-custom svg,
.swiper-button-next-custom svg {
    width: 15px;
    height: 15px;
}

.swiper-button-prev-custom svg path,
.swiper-button-next-custom svg path {
    stroke: #717680;
}

/* Carousel Container */
.sports-news-carousel {
    width: 100%;
    overflow: hidden;
}

/* Card Styles */
.sports-news-card {
    display: block;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

/* Image Section */
.sports-news-image {
    width: 100%;
    height: 222px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.sports-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sports-news-card:hover .sports-news-image img {
    transform: scale(1.05);
}

/* Content Section */
.sports-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sports-news-card-title {
    margin: 16px 0 12px 0;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sports-news-card-title:hover {
    color: #F1B92E;
}

.sports-news-description {
    font-family: var(--fb-global-body--font-family);
    font-weight: var(--fb-global-body--font-weight);
    font-size: var(--fb-global-body--font-size);
    line-height: var(--fb-global-body--line-height);
    color: #717680;
    margin: 0 0 16px !important;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta Information */
.sports-news-meta {
    font-family: var(--fb-global-fb_customtypo_e3ser--font-family);
    font-size: var(--fb-global-fb_customtypo_e3ser--font-size);
    font-weight: var(--fb-global-fb_customtypo_e3ser--font-weight);
    line-height: var(--fb-global-fb_customtypo_e3ser--font-line-height);
    color: #717680;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.sports-news-separator {
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background: #D5D7DA;
    line-height: 0;
}

.sports-news-author {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Error State */
.sports-news-error {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .sports-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    .sports-news-navigation-desktop {
        display: none;
    }

    .sports-news-navigation-mobile {
        display: flex;
    }

    .sports-news-image {
        height: 180px;
    }
}