/* hero section */
.hero-section .category-tag-text::before {
    top: -7px;
}

.hero-section .category-tag-text::after {
    bottom: -4px;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top,rgba(38,38,38,0.66) 0%,rgba(0,0,0,0.5) 45%,transparent 100%);
    z-index: 1;
}

.hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.main-story-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.main-story-image-wrapper {
    position: relative;
    height: 100%;
    background-color: #333;
    border-radius: 16px;
    overflow: hidden;
}

.main-story-image {
    width: 100%;
    border-radius: 16px;
}

.category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.category-tag-text {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 5px;
    font-family: SB-IBMPlexSansArabic;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}



.story-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem;
    background: var(--white-e5e5);
}

    .story-content h3 {
        font-size: 36px;
        font-family: SB-IBMPlexSansArabic;
        line-height: 1.4;
        color: #000000;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-clamp: 2;
    }

        .story-content h3 a {
            color: var( --black-2c2f34);
        }

    .story-content .story-snippet {
        font-size: 15px;
        color: #565656E5;
        line-height: 1.7;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        font-family: R-IBMPlexSansArabic;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        line-clamp: 4;
    }

    .story-content .story-date {
        font-size: 0.9rem;
        color: #888;
    }

        .story-content .story-date .bi-clock {
            margin-left: 5px;
            font-size: 0.8rem;
        }

.swiper-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    width: auto !important;
    display: flex;
    gap: 5px;
    z-index: 2;
    transform: translateX(-50%);
}

    .swiper-pagination .swiper-pagination-bullet {
        height: 5px;
        background-color: #E5E5E5;
        border-radius: 0px;
        opacity: 1;
        transition: background-color 0.3s;
        width: 55px;
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--blue-color);
        width: 100px;
    }

/* end hero section */


.latest-news-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}


.news-card {
    background-color: var(--black-gray);
    border-radius: 12px;
    overflow: hidden;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    }

.news-image-wrapper {
    position: relative;
    width: 100%;
    /*   height: 167px;*/
    overflow: hidden;
}

    .news-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.latest-news-section .category-tag {
    position: absolute;
    bottom: 30px;
    top: auto;
    right: 10px;
    z-index: 2;
}

.category-tag-text::before,
.category-tag-text::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 22px;
    border-color: #0d6efd;
    border-style: solid;
}

.latest-news-section .category-tag-text {
    background-color: transparent;
}

.latest-news-section .category-tag-text {
    font-size: 20px;
    font-family: SB-IBMPlexSansArabic;
}

.category-tag-text::before {
    top: -10px;
    right: -4px;
    border-width: 7px 7px 0 0;
    border-top-left-radius: 8px;
}

.category-tag-text::after {
    bottom: -10px;
    left: -4px;
    border-width: 0 0 7px 7px;
    border-top-right-radius: 20px;
}

.news-card-content {
    padding: 1rem 0;
}

.news-card-title {
    font-size: 22px;
    font-family: SB-IBMPlexSansArabic;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    min-height: calc(1.1rem * 1.5 * 2);
}

    .news-card-title a {
        text-decoration: none;
        color: var(--black-2c2f34);
        transition: color 0.3s;
    }

        .news-card-title a:hover {
            color: var(--blue-color);
        }



/* end latest news */


/* start news-ad-section" */
.news-ad-section .small-post {
    flex-direction: column;
}

.news-ad-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main-story-post .img-post {
    width: 100%;
    /*  height: 347px;*/
}

    .main-story-post .img-post img {
        width: 100%;
        /*height: 100%;*/
        object-fit: cover;
    }

.main-story-post .post-title-large a {
    text-decoration: none;
    color: var(--black-2c2f34);
    font-family: SB-IBMPlexSansArabic;
    font-size: 22px;
    line-height: 1.5;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    transition: color 0.3s;
}

    .main-story-post .post-title-large a:hover {
        color: var(--blue-color);
    }

.main-story-post .post-snippet {
    font-family: R-IBMPlexSansArabic;
    font-size: 16px;
    color: var(--light-gray);
    line-height: 1.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    margin-top: 0.5rem;
}

.main-story-post-second .post-snippet {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
}

.img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-post a {
    color: var(--black-2c2f34);
}

.small-post .post-title-small {
    font-size: 19px;
    font-family: B-IBMPlexSansArabic;
    color: var(--black-2c2f34);
    line-height: 1.5;
    transition: color 0.3s;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    margin-bottom: 20px;
}

.small-post a:hover {
    color: var(--blue-color);
}

.ad-banner {
    height: 550px;
}

    .ad-banner img {
        width: 100%;
    }


/* end news-ad-section */

/* start art news section */
.art-news-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main-art-post .post-image-wrapper {
    position: relative;
}

    .main-art-post .post-image-wrapper img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .main-art-post .post-image-wrapper::before,
    .main-art-post .post-image-wrapper::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        border-color: #0d6efd;
        border-style: solid;
        z-index: 1;
    }

    .main-art-post .post-image-wrapper::before {
        top: -7px;
        right: -5px;
        border-width: 10px 10px 0 0;
    }

    .main-art-post .post-image-wrapper::after {
        bottom: -7px;
        left: -6px;
        border-width: 0 0 10px 10px;
    }

.main-art-post .post-title-large a {
    text-decoration: none;
    color: var(--black-2c2f34);
    font-family: SB-IBMPlexSansArabic;
    font-size: 28px;
    line-height: 1.3;
    transition: color 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

    .main-art-post .post-title-large a:hover {
        color: #0d6efd;
    }

.main-art-post .post-snippet {
    font-size: 16px;
    font-family: R-IBMPlexSansArabic;
    color: #555;
    line-height: 1.7;
    margin-top: 0.75rem;
}

.main-art-post .post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
}

    .main-art-post .post-meta .bi-clock {
        margin-left: 5px;
    }

.sub-post-card {
    margin-bottom: 1rem;
}

    .sub-post-card .img-fluid {
        border-radius: 8px;
        margin-bottom: 0.75rem;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sub-post-card .post-title-small a {
        color: var(--black-2c2f34);
        font-family: SB-IBMPlexSansArabic;
        font-size: 22px;
        line-height: 1.5;
        transition: color 0.3s;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        min-height: calc(1rem * 1.5 * 2);
    }

        .sub-post-card .post-title-small a:hover {
            color: #0d6efd;
        }

    .sub-post-card .post-meta {
        font-size: 0.85rem;
        color: #888;
    }

        .sub-post-card .post-meta .bi-clock {
            margin-left: 5px;
        }

/* end art-news-section */
/* start category-grid-section */
.category-grid-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

    .category-header h2 {
        font-size: 28px;
        font-family: SB-IBMPlexSansArabic;
        margin-bottom: 0;
        margin-left: 0.5rem;
        color: var(--black-2c2f34);
    }

        .category-header h2 a {
            font-size: 28px;
            font-family: SB-IBMPlexSansArabic;
            margin-bottom: 0;
            margin-left: 0.5rem;
            color: var(--black-2c2f34);
        }

    .category-header .bi-arrow-up-left {
        font-size: 1.7rem;
        color: #0d6efd;
        font-weight: bold;
    }

.main-post-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .main-post-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.post-overlay-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.main-post-card .post-title {
    font-size: 22px;
    font-family: SB-IBMPlexSansArabic;
    line-height: 1.5;
    width: 90%;
}

    .main-post-card .post-title a {
        color: #FFFFFF;
        text-decoration: none;
        transition: color 0.3s;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
    }

        .main-post-card .post-title a:hover {
            color: #ddd;
        }

.small-post {
    margin-bottom: 1.5rem;
}

    .small-post .post-image img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .small-post .post-title {
        font-size: 16px;
        font-family: B-IBMPlexSansArabic;
        color: #000000;
        line-height: 1.5;
        transition: color 0.3s;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-clamp: 3;
    }

    .small-post a:hover .post-title {
        color: var(--blue-color);
    }

/* end category-grid-section */
/* start video slider section */
.main-video-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

    .main-video-item iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .main-video-item .cover-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
        cursor: pointer;
    }




.video-slider-section {
    background-color: #000829;
    padding-top: 2rem;
    padding-bottom: 4.5rem;
    position: relative;
    overflow: hidden;
}

    .video-slider-section .section-title {
        color: #fff;
    }

.main-video-slider {
    width: 100%;
    height: 450px;
}

.video-slider-section .col-lg-8 .swiper-slide {
    height: 507px;
    border-radius: 10px;
}

.video-slider-section .col-lg-4 .swiper-slide {
    height: 104px !important;
}

.videoThumbsSwiper .swiper-wrapper {
    gap: 20px;
}

.main-video-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

    .main-video-item .cover-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.main-video-item .play-icon-overlay,
.thumb-image .play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.thumb-image .play-icon-overlay {
    width: 50px;
    height: 50px;
}

    .thumb-image .play-icon-overlay img {
        width: 25px;
        height: 25px;
    }

    .main-video-item .play-icon-overlay::before,
    .thumb-image .play-icon-overlay::before,
    .main-video-item .play-icon-overlay::after,
    .thumb-image .play-icon-overlay::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 4px solid rgba(255, 255, 255, 0.4);
        opacity: 0;
        z-index: 1;
    }

    .main-video-item .play-icon-overlay:hover::before,
    .thumb-image .play-icon-overlay:hover::before {
        animation: pulse 1.5s infinite ease-out;
    }

    .main-video-item .play-icon-overlay:hover::after,
    .thumb-image .play-icon-overlay:hover::after {
        animation: pulse 1.5s infinite ease-out 0.5s;
    }

    .main-video-item .play-icon-overlay:hover,
    .thumb-image .play-icon-overlay:hover {
        background-color: rgba(255, 255, 255, 0.5);
    }

.main-video-item .play-icon-overlay .bi-play-fill {
    font-size: 3.5rem;
    color: #fff;
    margin-left: 5px;
}

.main-video-item .video-title-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    z-index: 2;
}

    .main-video-item .video-title-overlay h3 {
        font-size: 32px;
        font-family: SB-IBMPlexSansArabic;
        color: #fff;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 1;
    }

        .main-video-item .video-title-overlay h3 a {
            color: #fff;
        }

.main-video-item::before,
.main-video-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #fff;
    border-style: solid;
    z-index: 1;
}

.main-video-item::before {
    top: -10px;
    right: -10px;
    border-width: 5px 5px 0 0;
}

.main-video-item::after {
    bottom: -10px;
    left: -10px;
    border-width: 0 0 5px 5px;
}

.videoThumbsSwiper .swiper-slide {
    background-color: transparent;
}

.video-thumbs-slider {
    height: 450px;
}

.video-thumb-item {
    cursor: pointer;
    border-radius: 8px;
    padding: 10px;
    transition: background-color 0.3s;
}

    .video-thumb-item .thumb-image {
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

        .video-thumb-item .thumb-image .cover-video {
            width: 100%;
            height: 104px;
            object-fit: cover;
        }

        .video-thumb-item .thumb-image .bi-play-circle-fill {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            color: #fff;
            opacity: 0.8;
        }

    .video-thumb-item .thumb-title {
        font-size: 18px;
        font-family: R-IBMPlexSansArabic;
        color: #FFFFFF;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .video-thumb-item .thumb-title a {
            font-size: 18px;
            font-family: R-IBMPlexSansArabic;
            color: #FFFFFF;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.video-slider-controls {
    display: flex;
    justify-content: end;
    position: relative;
    gap: 10px;
}

    .video-slider-controls .swiper-button-prev,
    .video-slider-controls .swiper-button-next {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0;
        width: 35px;
        height: 35px;
        background-color: var(--blue-color);
        border-radius: 50%;
        color: #fff;
    }

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    background-color: #898989;
    border: 3px solid #BFBFBF;
}

.video-slider-controls .swiper-button-prev::after,
.video-slider-controls .swiper-button-next::after {
    font-size: 1rem;
    font-weight: bold;
    display: none;
}

.video-slider-controls .swiper-button-prev {
    margin-left: 10px;
}

.video-slider-controls .swiper-pagination {
    position: relative;
    bottom: -13px !important;
    left: auto;
    right: auto;
    width: auto;
    margin: 0 1rem;
}

.video-slider-controls .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    background-color: #E5E5E5;
}

.video-slider-controls .swiper-pagination-bullet-active {
    background-color: #0d6efd;
    opacity: 1;
    width: 130px;
}




/* end video */

.sports-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}


.main-story-no-image .post-title-large a {
    text-decoration: none;
    color: var(--black-2c2f34);
    font-family: SB-IBMPlexSansArabic;
    font-size: 28px;
    line-height: 1.5;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .main-story-no-image .post-title-large a:hover {
        color: var(--blue-color);
    }

.side-post-card .post-snippet,
.main-story-no-image .post-snippet {
    font-size: 16px;
    color: var(--light-gray);
    font-family: R-IBMPlexSansArabic;
    line-height: 1.7;
    margin-top: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-story-no-image .post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
}

    .main-story-no-image .post-meta .bi-clock {
        margin-left: 5px;
    }

.main-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.side-post-card {
    overflow: hidden;
    padding: 1rem;
}

    .side-post-card .img-fluid {
        width: 215px;
        height: 104px;
    }

    .side-post-card .post-title a {
        text-decoration: none;
        color: var(--black-2c2f34);
        font-family: SB-IBMPlexSansArabic;
        font-size: 21px;
        line-height: 1.5;
        transition: color 0.3s;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .side-post-card .post-title a:hover {
            color: var(--blue-color);
        }

    .side-post-card .post-meta {
        font-size: 0.85rem;
        color: #888;
        margin-top: 0.5rem;
    }

        .side-post-card .post-meta .bi-clock {
            margin-left: 5px;
        }

.bottom-post-card {
    margin-bottom: 1rem;
}

    .bottom-post-card img {
        width: 100%;
    }

.bottom-post-card .img-fluid {
    border-radius: 8px;
    margin-bottom: 0.75rem;
    width: 100%;
    height: 336px;
    object-fit: cover;
}

.sports-section .main-story-image {
    width: 576px;
    height: 347px;
}

.bottom-post-card .post-title-small a {
    text-decoration: none;
    color: var(--black-2c2f34);
    font-family: SB-IBMPlexSansArabic;
    font-size: 18px;
    line-height: 1.5;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1rem * 1.5 * 2);
}

    .bottom-post-card .post-title-small a:hover {
        color: #0d6efd;
    }

.bottom-post-card .post-meta {
    font-size: 0.85rem;
    color: #888;
}

    .bottom-post-card .post-meta .bi-clock {
        margin-left: 5px;
    }

/* end sports */
/* start breaking */
.breaking-grid-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-divider {
    border-top: 1px solid #000829;
    opacity: 1;
}

.breaking-post-item {
    position: relative;
    padding: 1rem 1rem 1rem 0;
}

    .breaking-post-item::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        border-color: var(--blue-color);
        border-style: solid;
        top: 0;
        right: 0;
        border-width: 6px 6px 0 0;
    }

    .breaking-post-item .post-title {
        font-size: 18px;
        font-family: SB-IBMPlexSansArabic;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
    }

        .breaking-post-item .post-title a {
            text-decoration: none;
            color: var(--black-2c2f34);
            transition: color 0.3s;
        }

            .breaking-post-item .post-title a:hover {
                color: var(--blue-color);
            }

    .breaking-post-item .post-meta {
        font-size: 0.85rem;
        color: #888;
    }

        .breaking-post-item .post-meta .bi-clock {
            margin-left: 5px;
        }

/* end breaking */


/* responsive */
@media (max-width: 991.98px) {
    .sports-section .main-story-image {
        width: 100%;
        height: 290px;
    }

    .ad-banner {
        order: 3;
    }

    .mid-grid-posts {
        order: 2;
    }

    .main-story-post {
        order: 1;
    }

    .main-story-image-wrapper {
        border-radius: 16px;
    }

    .story-content {
        padding: 1.5rem;
    }

        .story-content h2 {
            font-size: 1.8rem;
        }

    .sub-post-card .img-fluid {
        width: 100%;
    }

    .videoThumbsSwiper .swiper-wrapper {
        gap: 70px;
        margin-top: 65px;
    }
}

@media (max-width: 767.98px) {
    .news-card-title {
        -webkit-line-clamp: 3;
    }

    .story-content h3 {
        font-size: 26px;
    }

    .story-content .story-snippet {
        font-size: 13px;
    }

    .small-post .post-title-small {
        width: auto;
    }

    .sub-post-card .img-fluid, .main-post-card .post-title, .mid-grid-posts-responsive .row .col-6 {
        width: 100%;
    }

    .main-art-post .post-meta {
        margin-bottom: 1rem;
    }

    .main-art-post .post-image-wrapper {
        margin-bottom: 2rem;
    }

    .main-art-post .post-title-large a {
        font-size: 1.4rem;
    }

    .videoThumbsSwiper .swiper-wrapper {
        display: none;
    }

    .video-slider-section .col-lg-8 .swiper-slide {
        height: 290px;
    }

    .main-video-item .video-title-overlay h3 {
        font-size: 18px;
        text-align: right;
    }

    .mid-grid-posts-responsive .row {
        flex-direction: column
    }

    .img-small {
        width: 370px;
    }
}
