 /* =========================================================
   LATEST NEWS SECTION
========================================================= */

.latest-news-section {
    padding: 35px 0 70px;
    background: #fff;
}


/* =========================================================
   TOP AD
========================================================= */

.top-ad-wrap {
    width: 100%;
    min-height: 90px;
    margin-bottom: 45px;
    border-radius: 14px;
    background: #f7f7f8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-ad-wrap .adsbygoogle {
    width: 100%;
}

.ad-label {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 600;
    z-index: 1;
}


/* =========================================================
   HEADER
========================================================= */

.latest-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.latest-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.heading-line {
    width: 6px;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        #ff1744 0%,
        #ff4f81 100%
    );
}

.latest-heading h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #111;
}

.latest-heading h2 span {
    color: #ed1747;
}

.latest-heading p {
    margin: 8px 0 0;
    color: #777;
    font-size: 14px;
    font-weight: 400;
}


/* VIEW ALL */

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    border: 1.5px solid #ed1747;
    border-radius: 50px;
    color: #ed1747;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.view-all-btn span {
    font-size: 21px;
    line-height: 12px;
    transition: transform .3s ease;
}

.view-all-btn:hover {
    background: #ed1747;
    color: #fff;
}

.view-all-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   NEWS GRID
========================================================= */

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.featured-news-card {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.featured-image {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.featured-news-card:hover .featured-image img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.05) 20%,
        rgba(0,0,0,.15) 40%,
        rgba(0,0,0,.88) 100%
    );
}

.featured-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 2;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    flex-wrap: wrap;
}


/* =========================================================
   CATEGORY
========================================================= */

.category-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 11px;
    border-radius: 30px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    white-space: nowrap;
}


/* Category Colors */

.cat-trending {
    background: #ed1747;
}

.cat-celebrity {
    background: #9c27b0;
}

.cat-bollywood {
    background: #e91e63;
}

.cat-photo-gallery {
    background: #673ab7;
}

.cat-movies {
    background: #f4511e;
}

.cat-tv {
    background: #1976d2;
}

.cat-reality-tv {
    background: #7b1fa2;
}

.cat-streaming {
    background: #00897b;
}

.cat-life-style {
    background: #e91e63;
}

.cat-informative {
    background: #455a64;
}

.cat-health {
    background: #00897b;
}

.cat-business {
    background: #ef6c00;
}


/* =========================================================
   TIME
========================================================= */

.news-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 500;
}

.news-time svg {
    flex-shrink: 0;
}


/* =========================================================
   FEATURED TITLE
========================================================= */

.featured-content h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 750;
    letter-spacing: -.3px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-content a {
    text-decoration: none;
}


/* =========================================================
   READ MORE
========================================================= */

.read-more {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.read-more > span:first-child {
    border-bottom: 2px solid #ed1747;
    padding-bottom: 3px;
}

.arrow-circle {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all .3s ease;
}

.featured-news-card:hover .arrow-circle {
    background: #ed1747;
    border-color: #ed1747;
    transform: translateX(4px);
}


/* =========================================================
   COMPACT CARDS
========================================================= */

.compact-news-card {
    grid-column: span 2;
    min-height: 140px;
    padding: 14px;
    border: 1px solid #ebebed;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 17px;
    position: relative;
    transition: all .3s ease;
}

.compact-news-card:hover {
    border-color: #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    transform: translateY(-2px);
}


/* IMAGE */

.compact-image {
    width: 145px;
    min-width: 145px;
    height: 110px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
}

.compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.compact-news-card:hover .compact-image img {
    transform: scale(1.08);
}


/* CONTENT */

.compact-content {
    flex: 1;
    min-width: 0;
}

.compact-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.compact-meta .news-time {
    color: #999;
}

.compact-content h3 {
    margin: 0;
    padding-right: 20px;
    color: #151515;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-content a {
    text-decoration: none;
}


/* ARROW */

.compact-arrow {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f4f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all .3s ease;
}

.compact-news-card:hover .compact-arrow {
    background: #ed1747;
    color: #fff;
    transform: translateX(3px);
}


/* =========================================================
   LOAD MORE
========================================================= */

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 25px;
    border: 1.5px solid #ed1747;
    border-radius: 50px;
    color: #ed1747;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.load-more-btn span:last-child {
    font-size: 20px;
    transition: transform .3s ease;
}

.load-more-btn:hover {
    background: #ed1747;
    color: #fff;
}

.load-more-btn:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================================
   NO NEWS
========================================================= */

.no-news {
    grid-column: 1 / -1;
    padding: 50px;
    text-align: center;
    color: #777;
    border: 1px solid #eee;
    border-radius: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .latest-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-news-card {
        height: 370px;
    }

    .compact-news-card {
        grid-column: span 1;
    }

    .latest-heading h2 {
        font-size: 36px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .latest-news-section {
        padding: 25px 0 45px;
    }

    .top-ad-wrap {
        min-height: 70px;
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .latest-header {
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .latest-heading {
        gap: 10px;
    }

    .heading-line {
        width: 4px;
        height: 42px;
    }

    .latest-heading h2 {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .latest-heading p {
        font-size: 12px;
        margin-top: 5px;
    }

    .view-all-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .view-all-btn span {
        font-size: 17px;
    }


    .latest-news-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .featured-news-card {
        height: 390px;
        border-radius: 14px;
    }

    .featured-content {
        padding: 17px;
    }

    .featured-content h3 {
        font-size: 19px;
    }


    .compact-news-card {
        grid-column: span 1;
        min-height: 105px;
        padding: 10px;
        gap: 12px;
        border-radius: 13px;
    }

    .compact-image {
        width: 105px;
        min-width: 105px;
        height: 85px;
        border-radius: 9px;
    }

    .compact-content h3 {
        font-size: 14px;
        line-height: 1.3;
        padding-right: 0;
        -webkit-line-clamp: 3;
    }

    .compact-meta {
        margin-bottom: 6px;
        gap: 5px;
    }

    .category-pill {
        padding: 5px 8px;
        font-size: 9px;
    }

    .compact-meta .news-time {
        font-size: 9px;
    }

    .compact-arrow {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .latest-header {
        display: block;
    }

    .view-all-btn {
        margin-top: 14px;
    }

    .featured-news-card {
        height: 350px;
    }

}

@media (max-width: 767px) {

    .latest-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 20px;
        width: 100%;
    }

    .latest-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .heading-line {
        flex: 0 0 4px;
        width: 4px;
        height: 48px;
        border-radius: 10px;
    }

    .latest-heading > div:last-child {
        flex: 1;
        min-width: 0;
    }

    .latest-heading h2 {
        margin: 0;
        font-size: 27px;
        line-height: 1.1;
        letter-spacing: -.7px;
        white-space: nowrap;
    }

    .latest-heading p {
        margin: 5px 0 0;
        font-size: 11px;
        line-height: 1.4;
        color: #777;
        white-space: normal;
    }

    .view-all-btn {
        margin: 0;
        padding: 7px 13px;
        font-size: 10px;
        line-height: 1;
        gap: 8px;
        align-self: flex-start;
    }

    .view-all-btn span {
        font-size: 16px;
    }

}



/*header css*/


/* =========================================================
   T3D HEADER
========================================================= */

.t3d-navbar {
    height: 68px;
    padding: 0;
    background: #fff !important;
    border-bottom: 1px solid #eeeeef;
    box-shadow: 0 3px 18px rgba(0, 0, 0, .05);
    position: relative;
    z-index: 999;
}


/* =========================================================
   CONTAINER
========================================================= */

.t3d-navbar > .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.t3d-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    margin: 0;
    line-height: 0;
}

.main-logo {
    width: 82px;
    height: auto;
    display: block;
}


/* =========================================================
   CHRISTMAS CAP
========================================================= */

.christmas-cap {
    position: absolute;
    width: 34px;
    height: auto;
    top: -10px;
    right: -5px;
    z-index: 3;
    transform: rotate(55deg);
    pointer-events: none;
}


/* =========================================================
   NAVIGATION
========================================================= */
/* =========================================================
   NAVIGATION
========================================================= */

.t3d-navigation {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.t3d-navigation .navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 4px;
}


/* DESKTOP */

@media (min-width: 992px) {

    .t3d-navigation .navbar-nav {
        flex-direction: row;
    }

}
@media (min-width: 992px) {
    .t3d-navigation .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
}


/* =========================================================
   NAV LINKS
========================================================= */

.t3d-navigation .nav-link {
    position: relative;
    padding: 8px 15px !important;
    color: #222 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    transition: color .25s ease;
}


/* underline */

.t3d-navigation .nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 2px;
    height: 2px;
    border-radius: 5px;
    background: #ed1747;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.t3d-navigation .nav-link:hover {
    color: #ed1747 !important;
}

.t3d-navigation .nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menu-button {
    width: 42px;
    height: 42px;
    margin-left: 8px;
    padding: 0;
    border: 0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all .25s ease;
}


/* hamburger */

.menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 5px;
    background: #ed1747;
    transition: all .25s ease;
}


/* hover */

.menu-button:hover {
    background: #fff1f4;
}

.menu-button:hover span:nth-child(1) {
    width: 14px;
}

.menu-button:hover span:nth-child(3) {
    width: 14px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .t3d-navbar {
        height: 58px;
    }

    .t3d-navbar > .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-logo {
        width: 68px;
    }

    .christmas-cap {
        width: 30px;
        top: -9px;
        right: -4px;
    }

    .t3d-navigation {
        margin-left: auto;
    }

    .t3d-navigation .navbar-nav {
        gap: 0;
    }

    .menu-button {
        width: 40px;
        height: 40px;
        margin-left: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .t3d-navbar {
        height: 56px;
    }

    .t3d-navbar > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .main-logo {
        width: 65px;
    }

    .christmas-cap {
        width: 29px;
        top: -9px;
        right: -4px;
    }

    .menu-button {
        width: 38px;
        height: 38px;
    }

    .menu-button span {
        width: 18px;
    }

}


/*sidemenu css*/


/* =========================================================
   SIDE MENU OVERLAY
========================================================= */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   SIDE NAV
========================================================= */

.sidenav {
    position: fixed;

    top: 0;
    right: 0;

    width: 390px;
    max-width: 90%;

    height: 100vh;

    background: #fff;

    z-index: 9999;

    overflow-y: auto;

    transform: translateX(100%);

    transition:
        transform .4s cubic-bezier(.77,0,.18,1);

    box-shadow:
        -10px 0 40px rgba(0,0,0,.12);

    padding: 0;
}

.sidenav.open {
    transform: translateX(0);
}


/* =========================================================
   MENU HEADER
========================================================= */

.side-menu-header {
    height: 100px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eee;
}


.side-menu-title {
    display: flex;
    align-items: center;
    gap: 12px;
}


.menu-title-line {
    width: 4px;
    height: 45px;

    border-radius: 10px;

    background: #ed1747;
}


.side-menu-title small {
    display: block;

    font-size: 9px;
    letter-spacing: 2px;

    color: #999;

    font-weight: 700;
}


.side-menu-title h3 {
    margin: 2px 0 0;

    font-size: 28px;
    line-height: 1;

    color: #111;

    font-weight: 800;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.close-menu-btn {
    width: 42px;
    height: 42px;

    border: 1px solid #eee;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all .3s ease;
}


.close-menu-btn span {
    font-size: 28px;
    line-height: 1;

    color: #222;

    font-weight: 300;

    margin-top: -3px;
}


.close-menu-btn:hover {
    background: #ed1747;
    border-color: #ed1747;
}


.close-menu-btn:hover span {
    color: #fff;
}


/* =========================================================
   MENU LINKS
========================================================= */

.side-menu-links {
    padding: 15px 18px 25px;
}


.side-link {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 52px;

    padding: 8px 12px;

    margin: 3px 0;

    border-radius: 10px;

    text-decoration: none !important;

    color: #222 !important;

    font-size: 14px;

    font-weight: 600;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.side-icon {
    width: 35px;
    min-width: 35px;

    height: 35px;

    margin-right: 12px;

    border-radius: 9px;

    background: #f7f7f8;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;

    transition: all .25s ease;
}


.side-arrow {
    margin-left: auto;

    font-size: 18px;

    color: #aaa;

    opacity: 0;

    transform: translateX(-5px);

    transition: all .25s ease;
}


/* =========================================================
   HOVER
========================================================= */

.side-link:hover {
    background: #fff1f4;

    color: #ed1747 !important;

    transform: translateX(4px);
}


.side-link:hover .side-icon {
    background: #ed1747;

    color: #fff;

    transform: scale(1.05);
}


.side-link:hover .side-arrow {
    opacity: 1;

    color: #ed1747;

    transform: translateX(0);
}


/* =========================================================
   ACTIVE
========================================================= */

.side-link.active {
    background: #ed1747;

    color: #fff !important;
}


.side-link.active .side-icon {
    background: rgba(255,255,255,.18);

    color: #fff;
}


.side-link.active .side-arrow {
    color: #fff;

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   DIVIDER
========================================================= */

.menu-divider {
    height: 1px;

    background: #eee;

    margin: 12px 5px;
}


/* =========================================================
   FOOTER
========================================================= */

.side-menu-footer {
    margin: 10px 23px 25px;

    padding: 18px;

    border-radius: 14px;

    background: #fafafa;

    display: flex;
    align-items: center;
    gap: 10px;
}


.side-menu-footer span {
    font-size: 20px;

    font-weight: 900;

    color: #ed1747;
}


.side-menu-footer small {
    color: #999;

    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .sidenav {
        width: 100%;
        max-width: 100%;
    }

    .side-menu-header {
        height: 82px;

        padding: 0 18px;
    }

    .side-menu-title h3 {
        font-size: 24px;
    }

    .side-menu-links {
        padding: 12px 14px 20px;
    }

    .side-link {
        min-height: 50px;
        font-size: 14px;
    }

}