.hero-section,
.featured-grid-section,
.news-list-section {
    padding: 30px 0;
}

.ads-section {
    padding: 30px 0 60px;
}

.tagline {
    background: #ec3535;
    display: inline-block;
    padding: 10px 15px;
    margin-left: 15px;
    margin-bottom: -10px;
    z-index: 10;
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.hero-card,
.live-tv-card,
.featured-card,
.ad-box {
    position: relative;
    overflow: hidden;
}

.hero-content,
.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
}

.category-tag {
    display: inline-block;
    background: #ec3535;
    color: #fff;
    padding: 5px;
    font-size: 9px;
    margin-bottom: 5px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}


.news-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.news-heading .border {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.news-heading span {
    background: #000;
    height: 2px;
    width: 100%;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.news-list-section .container .bgSec {
    padding: 20px 20px;
    background: #f7f7f7;
    border-radius: 10px;
}

.news-item,
.news-item a {
    height: 100%;
}

.news-item a {
    display: flex;
    gap: 15px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 3px 10px -9px rgb(0 0 0 / 50%);
    color: #000;
}

.news-item img {
    width: 100%;
    max-width: 130px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}


.news-item .news-item-content {
    width: 100%;
}

.news-item span.category {
    display: inline-block;
    color: #ec3535;
    font-size: 11px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-item span.publish-date {
    font-size: 11px;
    font-weight: 600;
    color: #5f5f5f;
}


.ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ad-box {
    border: 2px solid #000;
    padding: 60px;
    text-align: center;
}

.ad-box h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.ad-box a {
    display: inline-block;
    margin-top: 20px;
    background: #000;
    color: #fff;
    padding: 12px 30px;
}


.news-item-content h4 {
    margin: 5px 0;
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
    max-height: 64px;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

#load-more-news {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    border-radius: 30px;
    font-weight: 600;
    font-style: italic;
}

#load-more-news:hover {
    opacity: 0.8;
}


@media(max-width: 992px) {

    .hero-grid,
    .featured-grid,
    .news-list-grid,
    .ads-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width: 767px) {

    .hero-grid,
    .featured-grid,
    .news-list-grid,
    .ads-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .news-item {
        flex-direction: column;
    }

}


.hero-section {
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    border-radius: 10px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hero-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    border-radius: 10px;
}

.category-tag {
    display: inline-block;
    width: fit-content;
    background: #ec3535;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 28px;
    line-height: 40px;
}

.hero-content h2 a {
    color: #fff;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-author,
.hero-date {
    position: relative;
    font-weight: bold;
    color: #fff;
}

.hero-author::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}



.live-tv-card {
    height: 450px;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
}

.live-tv-card iframe {
    width: 100%;
    height: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 35px !important;
    color: #ffffff !important;
}


.hero-left {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    max-width: 100%;
}

.heroSwiper .swiper-slide {
    width: 100%;
    transition-timing-function: linear;
}

@media(max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 24px;
        line-height: 38px;
    }

}

@media(max-width: 767px) {

    .hero-card {
        height: 400px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h2 {
        font-size: 18px;
        line-height: 28px;
    }

    .live-tv-card {
        height: 350px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 30px !important;
        color: #ffffff !important;
    }

    .news-heading {
        margin-bottom: 0;
    }

}