body {
    background-color: #f9f9f9;
}

/* start video */
.swiper-container-wrapper {
    position: relative;
}
.video-title a:hover {
    color: var(--blue-color);
}

.swiper {
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-family: B-FFShamelFamily;
    font-size: 1.5rem;
    color: #000;
}

.podcast-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.video-card {
    background: transparent;
    border: none;
    cursor: pointer;
}

.video-section .video-thumbnail {
    position: relative;
    overflow: hidden;
    width: 244.25px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.views-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
   /* background: rgba(0, 0, 0, 0.7);*/
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: bold;
    z-index: 2;
}

.video-title {
    font-size: 14px;
    font-family: B-FFShamelFamily;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}

.video-title a {
    color: #212529;
}

.video-meta {
    font-size: 10px;
    font-family: B-FFShamelFamily;
    color: #777;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 5px;
}

.season-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.season-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    background: #fff;
    overflow: hidden;
}

.season-logo img {
    width: 120px;
    height: 120px;
}

.season-title {
    font-size: 11px;
    white-space: nowrap;
    margin-top: 10px;
}

.video-section .swiper-button-next,
.video-section .swiper-button-prev {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #333;
    top: 50%;
    transform: translateY(-50%);
}

.video-section .swiper-button-next::after,
.video-section .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.video-section .swiper-button-disabled {
    opacity: 0;
}

.video-section .swiper-container-wrapper {
    position: relative;
}

.video-section .swiper-button-next.swiper-button-disabled,
.video-section .swiper-button-prev.swiper-button-disabled {
    opacity: 0;

}

.video-section .swiper-button-next,
.video-section .swiper-container-rtl .swiper-button-prev {
    left: 10px;
    right: auto;
}

.video-section .swiper-button-prev,
.video-section .swiper-container-rtl .swiper-button-next {
    right: 10px;
    left: auto;
}

.video-section .swiper-button-prev:after,
.video-section .swiper-container-rtl .swiper-button-next:after {
    content: 'prev';
    rotate: 180deg;
}

.video-section .swiper-button-next:after,
.video-section .swiper-container-rtl .swiper-button-prev:after {
    content: 'next';
    rotate: -180deg;
}

/* end video */

/* start details-video */
.main-video-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    padding-bottom: 55.3%;
}

.main-video-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background-color: rgba(255, 0, 0, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button-overlay:hover {
    background-color: #cc0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay i {
    color: white;
    font-size: 24px;
}

.main-title {
    font-size: 16px;
    font-family: B-FFShamelFamily;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
    margin-top: 10px;
}

    .season-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
.season-info .season-logo {
        width: 65px;
    height: 65px;
}

.season-info  .season-logo img {
    width: 60px;
    height: 60px;
}
.season-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.season-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.season-badge svg {
    fill: #0d6efd;
    width: 100%;
    height: 100%;
}

.desc-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.desc-title {
    margin-bottom: 15px;
        font-size: 16px;
    font-family: B-FFShamelFamily;
    color: #1e2939;
}

.desc-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
        font-family: B-FFShamelFamily;
            color: #1e2939;
                display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tags {
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: right;
}

.desc-content-wrapper {
    max-height: 85px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.desc-content-wrapper.expanded {
    max-height: none;
}

.read-more-btn {
    color: #0d6efd;
      font-family: B-FFShamelFamily;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.side-list-wrapper {
    height:600px;
    overflow-y: auto;
    padding-left: 10px;
}

.side-list-wrapper::-webkit-scrollbar {
    width: 6px;
}

.side-list-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.side-list-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.side-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: #0d6efd;
}

.side-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
        flex-direction: row-reverse;
}

.side-item:last-child {
    border-bottom: none;
}



.side-thumb {
width: 140px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-content {
    flex-grow: 1;
}

.side-title {
    font-size: 14px;
    font-family: B-FFShamelFamily;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #575757;
}

.side-meta {
    font-size: 0.75rem;
        font-family: B-FFShamelFamily;
     color: #575757;

}

.hidden-data {
    display: none;
}



/* channels-almalnews */
.channels-almalnews-section .section-title {
    color: #005aa3;
}
.channels-almalnews-section .swiper {
    padding: 40px 0;
    overflow: hidden;
}
.channels-almalnews-section  .swiper-slide{
 width: 100px !important;
 display: flex;
 flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .channels-almalnews-section .swiper-slide img {
        display: block;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-right: 5px;
    }
.channels-almalnews-section  .swiper-wrapper{
justify-content: space-evenly;
}

.channels-almalnews-section .swiper-slide::before {
        border: 2px solid rgb(207, 207, 207);
        z-index: -1;
            left: 12px;
                right: auto;
}

.channels-almalnews-section  .swiper-slide p {
font-size: 11px;
    white-space: nowrap;
    margin-top: 10px;
}

.titleRelated h2 {
    font-family: B-FFShamelFamily;
    font-size: 1.5rem;
    color: #000;
}











.read-section {
    padding: 40px 0 60px 0;
    position: relative;
}

    .read-section::after {
        content: "";
        position: absolute;
        bottom: 36%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #005aa3;
    }

.section-header-white {
    color: #fff;
    text-align: right;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    font-family: B-FFShamelFamily;
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    width: 766px;
    text-align: right;
}

.news-content {
    flex: 1;
    padding-left: 20px;
}

.news-title {
    font-size: 1.4rem;
    font-family: B-FFShamelFamily;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
    .news-title a {
        color: #333;
    }

.video-meta svg {
    width: 13px !important;
    height: 13px !important;
    max-width: none !important;
}

.news-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-family: B-FFShamelFamily;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-logo img {
    width: 180px !important;
    height: 144px;
}

.mainNewsSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}



.swiper-button-next,
.swiper-button-prev {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
        font-weight: bold;
    }


.writers-section {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.section-header-dark {
    color: #000;
    text-align: right;
    font-family: B-FFShamelFamily;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.writer-card {
    text-align: center;
    padding: 10px;
    transition: transform 0.3s;
}

    .writer-card:hover {
        transform: translateY(-5px);
    }

.writer-img-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

    .writer-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.writer-name {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-family: B-FFShamelFamily;
    white-space: nowrap;
}

    .writer-name a {
        color: #333;
    }

.writers-section .swiper-button-next,
.writers-section .swiper-button-prev {
    top: -18%;
}

.writersSwiper .swiper-button-prev,
.writersSwiper .swiper-container-rtl .swiper-button-next {
    right: auto;
    left: 70px;
}

.mainNewsSwiper .swiper-button-prev,
.mainNewsSwiper .swiper-container-rtl .swiper-button-next {
    right: 13%;
    left: auto;
}

.mainNewsSwiper .swiper-button-next,
.mainNewsSwiper .swiper-container-rtl .swiper-button-prev {
    left: 13%;
    right: auto;
}





.section-header {
    font-size: 1.1rem;
    font-family: B-FFShamelFamily;
    color: #444;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
    position: relative;
    margin-top: 20px;
}

    .section-header a {
        color: #444;
    }

.sidebar-news-container {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px;
    border-radius: 8px;
}

.latestArticles-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px 20px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.2s;
}

    .latestArticles-card:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

.latestArticlesTitle {
    font-size: 1.1rem;
    font-family: B-FFShamelFamily;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .latestArticlesTitle a {
        color: #333;
    }

        .latestArticlesTitle a:hover {
            color: #0d6efd;
        }

.latestArticlesExcerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    font-family: B-FFShamelFamily;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .sidebar-title a {
        color: #333;
    }

        .sidebar-title a:hover {
            color: #0d6efd;
        }

.mainNewsSwiper .swiper-button-next.swiper-button-disabled, .mainNewsSwiper .swiper-button-prev.swiper-button-disabled,
.writers-section .swiper-button-next.swiper-button-disabled, .writers-section .swiper-button-prev.swiper-button-disabled {
    display: none;
}








@media (max-width: 767px) {
    .section-title {
        margin-top: 50px;
    }
    .video-section .video-thumbnail {
        width: 100%;
    }
    .details-video {
        margin-top: 60px;
    }

    .video-thumbnail {
        width: 100%;
    }

    .section-header-white {
        margin-top: 30px;
    }

    .mainNewsSwiper {
        overflow: visible;
    }

    .news-logo img {
        width: 100% !important;
        height: 200px;
    }

    .news-card {
        flex-direction: column-reverse;
    }

    .news-content {
        padding-left: 0;
        margin-top: 15px;
        flex-direction: column;
    }

    .section-header-white,
    .section-header-dark {
        text-align: center;
    }

    .mainNewsSwiper .swiper-button-next,
    .mainNewsSwiper .swiper-button-prev,
    .writers-section .swiper-button-next,
    .writers-section .swiper-button-prev {
        display: none;
    }
}



