

    /* =========================================================
        ROOT / GLOBAL
    ========================================================= */

    :root {
        --blue: #102b70;
        --blue-dark: #091c4d;
        --light-blue: #eef2ff;
        --green: #185b4d;

        --text: #171717;
        --muted: #707070;

        --border: #dedede;
        --light: #f6f6f4;
        --cream: #f4f2ef;

        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 16px;
        --radius-xl: 20px;
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    .top-search-btn{
        padding:8px 12px;
        position: absolute;
        left:14px
    }
    body {
        margin: 0;

        background: #fff;
        color: var(--text);

        font-family: "Inter", Arial, sans-serif;

        font-size: 15px;
        line-height: 1.55;

        /*
            * Desktop header height:
            * 67px top
            * 39px section navigation
            * 48px country navigation
            */
        /* padding-top: 154px; */
    }

    body.menu-open {
        overflow: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button {
        font-family: inherit;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .container {
        max-width: 1240px;
    }


    /* =========================================================
        FIXED HEADER
    ========================================================= */

    .site-header {
       
        width: 100%;

        z-index: 1000;

        background: #fff;

        box-shadow:
            0 2px 15px rgba(0, 0, 0, .06);
    }

    p{
        font-family: sans-serif;
    }

    .pagination li.active{
        color: #0087ff;
        font-weight: bolder;
    }
    /* =========================================================
        TOP HEADER
    ========================================================= */

    .top-header {
        background: #fff;

        border-bottom: 1px solid #eeeeee;
    }

    .top-header-inner {
        min-height: 67px;

        display: flex;

        align-items: center;
        justify-content: center;
    }

    .logo-wrapper {
        display: flex;
        flex:1;
        align-items: center;
        flex-direction: column;
    }

    .brand {
        display: inline-block;

        font-size: 25px;
        line-height: 1;

        font-weight: 800;

        letter-spacing: -1.4px;

        color: var(--blue);
    }

    .brand span {
        color: #72a1ff;
    }

    .brand-subtitle {
        margin-top: 4px;

        font-size: 12px;

        letter-spacing: 1px;

        color: #777;
    }

    .header-actions {
        position: absolute;
        right: 15px;
        display: flex;
        align-items: center;
    }


    /* =========================================================
        MOBILE MENU BUTTON
    ========================================================= */

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;

        display: none;

        align-items: center;
        justify-content: center;

        border: 1px solid #ddd;

        background: #fff;

        border-radius: 50%;

        color: var(--blue);

        cursor: pointer;

        transition:
            background .2s ease,
            border-color .2s ease;
    }

    .mobile-menu-toggle:hover {
        background: var(--light-blue);

        border-color: #ccd5ff;
    }


    /* =========================================================
        DESKTOP SECTION NAVIGATION
    ========================================================= */

    .section-nav {
        background: #fff;
    }

    .section-nav-inner {
        min-height: 50px;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 32px;
    }

    .section-nav-inner a {
        position: relative;

        padding: 9px 0;

        color: #333;

        font-size: 13px;

        text-transform: uppercase;

        font-weight: 600;

        white-space: nowrap;

        transition: color .2s ease;
    }

    .section-nav-inner a:hover {
        color: var(--blue);
    }

    .section-nav-inner a::after {
        content: "";

        position: absolute;

        left: 0;
        right: 0;

        bottom: 2px;

        height: 2px;

        background: var(--blue);

        transform: scaleX(0);

        transform-origin: center;

        transition: transform .2s ease;
    }

    .section-nav-inner a:hover::after {
        transform: scaleX(1);
    }


    /* =========================================================
        COUNTRY NAVIGATION
    ========================================================= */

    .category-nav {
        background: #fff;
    }

    .category-nav-inner {
        display: flex;

        align-items: center;

        gap: 9px;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding: 7px 0px 18px 0;

        scrollbar-width: none;
    }

    .category-nav-inner::-webkit-scrollbar {
        display: none;
    }

    /* Expanded state */
    .category-nav-inner.expanded {
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .category-nav-inner .divider-right{
        border-right: 1px solid var(--light-blue) !important
    }

    /* See All button */
    .see-all-btn {
        border: 0;
        cursor: pointer;
        white-space: nowrap;
    }
    /* When expanded, make See All look secondary/disabled */
    .category-nav-inner.expanded .see-all-btn {
        background-color: var(--bs-secondary);
        border-color: var(--bs-secondary);
        color: #fff;
    }

    .category-pill {
        flex: 0 0 auto;

        border: 1px solid #d7d7d7;

        border-radius: 999px;

        padding: 6px 14px;

        font-size: 14px;

        font-weight: 600;

        color: #555;

        background: #fff;

        transition:
            color .2s ease,
            background .2s ease,
            border-color .2s ease;
    }

    .category-pill:hover {
        border-color: var(--blue);

        color: var(--blue);

        background: var(--light-blue);
    }

    .category-pill.active {
        background: var(--blue);

        color: #fff;

        border-color: var(--blue);
    }


    /* =========================================================
        MOBILE SIDE MENU
    ========================================================= */

    .mobile-menu-overlay {
        position: fixed;

        inset: 0;

        z-index: 1500;

        background: rgba(0, 0, 0, .45);

        opacity: 0;

        visibility: hidden;

        transition:
            opacity .3s ease,
            visibility .3s ease;
    }

    .mobile-menu-overlay.open {
        opacity: 1;

        visibility: visible;
    }

    .mobile-side-menu {
        position: fixed;

        top: 0;
        right: 0;

        width: min(350px, 88vw);

        height: 100vh;

        z-index: 2000;

        background: #fff;

        overflow-y: auto;

        transform: translateX(100%);

        transition: transform .3s ease;

        box-shadow:
            -8px 0 30px rgba(0, 0, 0, .15);
    }

    .mobile-side-menu.open {
        transform: translateX(0);
    }


    /* =========================================================
        MOBILE MENU HEADER
    ========================================================= */

    .mobile-menu-header {
        position: sticky;

        top: 0;

        z-index: 5;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 20px;

        background: #fff;

        border-bottom: 1px solid #e5e5e5;
    }

    .mobile-menu-title {
        font-size: 21px;

        line-height: 1.2;

        font-weight: 800;

        color: var(--blue);
    }

    .mobile-menu-subtitle {
        margin-top: 3px;

        color: #888;

        font-size: 11px;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;

        display: flex;

        align-items: center;
        justify-content: center;

        border: 0;

        border-radius: 50%;

        background: #f3f3f3;

        color: #333;

        cursor: pointer;
    }

    .mobile-menu-close:hover {
        background: #e8e8e8;
    }


    /* =========================================================
        MOBILE MENU SECTIONS
    ========================================================= */

    .mobile-menu-section {
        padding: 20px;

        border-bottom: 1px solid #eeeeee;
    }

    .mobile-menu-section-title {
        margin-bottom: 10px;

        color: #888;

        font-size: 11px;

        font-weight: 800;

        letter-spacing: .8px;

        text-transform: uppercase;
    }


    /* =========================================================
        MOBILE MAIN LINKS
    ========================================================= */

    .mobile-main-links {
        display: flex;

        flex-direction: column;
    }

    .mobile-main-links a {
        min-height: 48px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        padding: 10px 4px;

        border-bottom: 1px solid #eeeeee;

        color: #222;

        font-size: 14px;

        font-weight: 600;

        transition:
            color .2s ease,
            padding-left .2s ease;
    }

    .mobile-main-links a:last-child {
        border-bottom: 0;
    }

    .mobile-main-links a:hover {
        padding-left: 8px;

        color: var(--blue);
    }

    .mobile-main-links i {
        color: #aaa;

        font-size: 10px;
    }


    /* =========================================================
        MOBILE COUNTRY LINKS
    ========================================================= */

    .mobile-country-links {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }

    .mobile-country-links a {
        padding: 11px 10px;

        border: 1px solid #eeeeee;

        border-radius: 8px;

        background: #f7f7f7;

        text-align: center;

        font-size: 12px;

        font-weight: 600;

        transition:
            background .2s ease,
            color .2s ease,
            border-color .2s ease;
    }

    .mobile-country-links a:hover {
        background: var(--light-blue);

        border-color: #d8e0ff;

        color: var(--blue);
    }


    /* =========================================================
        GENERIC SECTIONS
    ========================================================= */

    .section {
        padding: 34px 0;
    }

    .section-heading {
        display: flex;

        align-items: center;

        justify-content: space-between;

        margin-bottom: 28px;
    }

    /*.section-heading::after {
        content: "";

        flex: 1;

        height: 1px;

        margin-left: 16px;

        background: #ddd;
    }
*/
    .section-title {
        margin: 0;

        color: #111;

        font-size: 20px;

        line-height: 1.2;

        font-weight: 800;

        white-space: nowrap;
    }

    .section-link {
        margin-left: 15px;

        color: var(--blue);

        font-size: 12px;

        font-weight: 700;

        white-space: nowrap;
    }


    /* =========================================================
        IMAGE PLACEHOLDER
    ========================================================= */

    .image-placeholder {
        width: 100%;
        height: 100%;

        min-height: 130px;

        display: flex;

        align-items: center;
        justify-content: center;

        background:
            linear-gradient(
                135deg,
                #d6d6d6 0%,
                #eeeeee 50%,
                #c8c8c8 100%
            );

        color: #888;

        font-size: 11px;

        font-weight: 600;

        letter-spacing: 1px;

        text-transform: uppercase;
    }

     .image-placeholder img{
        width: 100%;
        height: 100%;
        object-fit: cover;
     }

    .ratio-image {
        position: relative;

        overflow: hidden;

        background: #ddd;

        border-radius: var(--radius-md);
    }

    .ratio-image .image-placeholder {
        min-height: 0;
    }

    .ratio-image.ratio-16x9 {
        aspect-ratio: 16 / 9;
    }

    .ratio-image.ratio-4x3 {
        aspect-ratio: 4 / 3;
    }

    .ratio-image.ratio-square {
        aspect-ratio: 1 / 1;
    }


    /* =========================================================
        TAG
    ========================================================= */

    .tag {
        display: inline-block;

        margin-bottom: 5px;

        color: var(--blue);

        font-size: 11px;

        font-weight: 800;

        letter-spacing: .7px;

        text-transform: uppercase;
    }

    .tag.white {
        color: #fff;
    }


    /* =========================================================
        ARTICLES
    ========================================================= */

    .article-title {
        margin: 7px 0 9px;

        font-size: 17px;

        line-height: 1.3;

        font-weight: 700;
    }

    .article-title.large {
        font-size: 28px;
    }

    .article-title.small {
        font-size: 15px;
    }

    .article-excerpt {
        margin: 0;

        color: #666;

        font-size: 13px;

        line-height: 1.55;
    }

    .article-meta {
        display: flex;

        align-items: center;

        gap: 7px;

        margin-top: 9px;

        color: #999;

        font-size: 10px;
    }


    /* =========================================================
        HERO
    ========================================================= */

    .hero {
        padding: 0;

        background: #111;
    }

    .hero-image {
        position: relative;

        min-height: 540px;

        overflow: hidden;

        border-radius:
            0 0
            var(--radius-lg)
            var(--radius-lg);

        background:
            linear-gradient(
                to top,
                rgba(0,0,0,.8),
                rgba(0,0,0,.05) 65%
            ),
            linear-gradient(
                135deg,
                #7d8f98,
                #b9c4c1 45%,
                #4c696d
            );

        background-size: cover;
    }

    .hero-image::before {
        content: "";

        position: absolute;

        inset: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        color: rgba(255,255,255,.4);

        font-size: 14px;

        letter-spacing: 3px;

        background: #00000070;
    }

    .hero-content {
        position: absolute;

        left: 0;
        bottom: 0;

        width: 100%;

        padding: 55px 0 38px;

        color: #fff;
    }

    .hero-content-inner {
        max-width: 800px;
    }

    .hero-title {
        margin: 5px 0 15px;

        color: #fff;

        font-size: 46px;

        line-height: 1.08;

        font-weight: 800;

        letter-spacing: -1px;
    }

    .hero-description {
        max-width: 680px;

        color: rgba(255,255,255,.87);

        font-size: 14px;

        line-height: 1.55;
    }


    /* =========================================================
        TOP NEWS
    ========================================================= */

    .top-news {
        padding-top: 28px;
    }

    .main-news-card {
        padding-bottom: 20px;

        margin-bottom: 20px;

        border-bottom: 1px solid var(--border);
    }

    .main-news-card .ratio-image {
        border-radius: var(--radius-lg);
    }

    .side-news {
        padding-left: 20px;

        border-left: 1px solid #ddd;
    }

    .side-news-item {
        display: flex;

        gap: 12px;

        padding: 12px 0;

        border-bottom: 1px solid #ddd;
    }

    .side-news-item:last-child {
        border-bottom: 0;
    }

    .side-news-image {
        width: 90px;
        height: 68px;

        flex: 0 0 90px;

        overflow: hidden;

        border-radius: 8px;
    }

    .side-news-image .image-placeholder {
        min-height: 0;
    }

    .side-news-title {
        margin: 0;

        font-size: 14px;

        line-height: 1.35;

        font-weight: 700;
    }


    /* =========================================================
        SUBSCRIPTION BANNER
    ========================================================= */

    .subscription-wrap {
        padding: 24px 0;
    }

    .subscription-banner {
        position: relative;

        min-height: 190px;

        overflow: hidden;

        padding: 32px 38px;

        color: #fff;

        background: var(--blue);

        border-radius: var(--radius-lg);
    }

    .subscription-banner::after {
        content: "";

        position: absolute;

        right: 0;
        top: 0;

        width: 42%;
        height: 100%;

        background:
            linear-gradient(
                135deg,
                transparent 20%,
                rgba(255,255,255,.05) 20%
            );

        clip-path:
            polygon(
                30% 0,
                100% 0,
                100% 100%,
                0 100%
            );
    }

    .subscription-title {
        position: relative;

        z-index: 2;

        max-width: 520px;

        margin-bottom: 10px;

        font-size: 29px;

        line-height: 1.15;

        font-weight: 800;
    }

    .subscription-text {
        position: relative;

        z-index: 2;

        max-width: 550px;

        color: rgba(255,255,255,.85);

        font-size: 13px;
    }

    .subscription-button {
        position: relative;

        z-index: 2;

        display: inline-block;

        margin-top: 12px;

        padding: 9px 17px;

        color: var(--blue);

        background: #fff;

        border-radius: 7px;

        font-size: 11px;

        font-weight: 800;
    }


    /* =========================================================
        LATEST STORIES
    ========================================================= */

    .latest-grid {
        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 16px;
    }

    .latest-card {
        min-width: 0;

        overflow: hidden;

        border-radius: var(--radius-md);
    }


    /* =========================================================
        TRENDING
    ========================================================= */

    .trending-section {
        background: #f7f7f5;
    }

    .trending-grid {
        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 16px;
    }

    .trending-card {
        overflow: hidden;

        background: #fff;

        border: 1px solid #e5e5e5;

        border-radius: var(--radius-md);

        box-shadow:
            0 3px 12px rgba(0,0,0,.04);

        transition:
            transform .2s ease,
            box-shadow .2s ease;
    }

    .trending-card:hover {
        transform: translateY(-3px);

        box-shadow:
            0 8px 24px rgba(0,0,0,.08);
    }

    .trending-card-body {
        padding: 13px;
    }


    /* =========================================================
        EDITOR PICKS
    ========================================================= */

    .editor-grid {
        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 16px;
    }

    .editor-card {
        overflow: hidden;

        padding: 9px;

        background: #f5f3ef;

        border: 1px solid #e4e2de;

        border-radius: var(--radius-md);
    }


    /* =========================================================
        FEATURE SECTION
    ========================================================= */

    .feature-section {
        padding: 40px 0;

        color: #fff;

        background: #174e58;
    }

    .feature-section .section-title {
        color: #fff;
    }

    .feature-card {
        position: relative;

        overflow: hidden;

        border-radius: var(--radius-lg);
    }

    .feature-card .ratio-image {
        background: #2a666e;

        border-radius: var(--radius-lg);
    }

    .feature-card-content {
        padding-top: 14px;
    }

    .feature-card-title {
        font-size: 22px;

        line-height: 1.3;

        font-weight: 750;
    }

    .feature-sidebar {
        height: 100%;

        overflow: hidden;

        padding: 17px;

        background: rgba(0,0,0,.13);

        border-radius: var(--radius-lg);
    }

    .feature-sidebar-item {
        display: flex;

        gap: 11px;

        padding: 11px 0;

        border-bottom:
            1px solid rgba(255,255,255,.15);
    }

    .feature-sidebar-item:last-child {
        border-bottom: 0;
    }

    .feature-sidebar-thumb {
        width: 75px;
        height: 55px;

        flex: 0 0 75px;

        overflow: hidden;

        border-radius: 8px;
    }

    .feature-sidebar-thumb .image-placeholder {
        min-height: 0;
    }

    .feature-sidebar-title {
        font-size: 14px;

        line-height: 1.4;

        font-weight: 600;
    }


    /* =========================================================
        VIDEOS
    ========================================================= */

    .video-grid {
        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 16px;
    }

    .video-card {
        position: relative;

        overflow: hidden;

        border-radius: var(--radius-md);
    }

    .video-card .play-icon {
        position: absolute;

        left: 11px;
        bottom: 102px;

        width: 34px;
        height: 34px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 50%;

        color: #fff;

        background: rgba(0,0,0,.72);

        font-size: 10px;
    }


    /* =========================================================
        ANALYSIS
    ========================================================= */

    .analysis-section {
        background: #fafafa;
    }

    .analysis-list {
        padding-right: 25px;
    }

    .analysis-item {
        display: flex;

        gap: 18px;

        padding: 19px 0;

        border-bottom: 1px solid #ddd;
    }

    .analysis-number {
        width: 32px;

        flex: 0 0 32px;

        color: var(--blue);

        font-size: 30px;

        line-height: 1;

        font-weight: 300;
    }

    .analysis-title {
        margin-bottom: 5px;

        font-size: 16px;

        line-height: 1.4;

        font-weight: 750;
    }

    .analysis-description {
        margin: 0;

        color: #777;

        font-size: 14px;
    }

    .analysis-ad {
        position: relative;

        min-height: 290px;

        overflow: hidden;

        padding: 28px;

        color: #fff;

        background: var(--blue);

        border-radius: var(--radius-lg);
    }

    .analysis-ad::after {
        content: "AL-MONITOR";

        position: absolute;

        right: -25px;
        bottom: 35px;

        transform: rotate(-55deg);

        font-size: 34px;

        font-weight: 800;

        opacity: .12;
    }

    .analysis-ad h3 {
        position: relative;

        z-index: 2;

        max-width: 280px;

        font-size: 23px;

        line-height: 1.15;

        font-weight: 800;
    }

    .analysis-ad p {
        position: relative;

        z-index: 2;

        max-width: 300px;

        color: rgba(255,255,255,.8);

        font-size: 11px;
    }


    /* =========================================================
        AUTHORS
    ========================================================= */

    .author-grid {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 14px;
    }

    .author-card {
        display: flex;

        gap: 12px;

        min-height: 110px;

        padding: 11px;

        overflow: hidden;

        background: #f2f1ee;

        border-radius: var(--radius-md);
    }

    .author-photo {
        width: 80px;
        height: 88px;

        flex: 0 0 80px;

        overflow: hidden;

        border-radius: 8px;
    }

    .author-photo .image-placeholder {
        min-height: 0;
    }

    .author-name {
        margin: 0 0 3px;

        font-size: 12px;

        font-weight: 800;
    }

    .author-detail .content{
        flex:1
    }
    .author-detail .auhtor-bio{
        font-size: 14px;
    }
    .author-role {
        color: #777;

        font-size: 9px;

        line-height: 1.35;
    }


    /* =========================================================
        GLOBAL VOICES
    ========================================================= */

    .voices-grid {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 16px;
    }

    .voice-card {
        overflow: hidden;

        padding: 11px;

        background: #fff;

        border: 1px solid #ddd;

        border-radius: var(--radius-md);
    }

    .voice-card .ratio-image {
        margin-bottom: 10px;
    }


    /* =========================================================
        JOURNALISTS
    ========================================================= */

    .journalists {
        background: #f7f7f5;
    }

    .journalists-grid {
        display: grid;

        grid-template-columns:
            repeat(6, 1fr);

        gap: 18px;
    }

    .journalist-card {
        text-align: center;
    }

    .author-img{
        width: 130px;
        height: 130px;
    }

    .author-img .image-placeholder{
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #f6f6f6
    }

    .journalist-photo {
        width: 110px;
        height: 110px;
        margin: 0 auto 9px;
        overflow: hidden;
        border-radius: 20px;
        border: 1px solid #eee;
    }

    .journalist-photo .image-placeholder {
        min-height: 0;
    }

    .journalist-name {
        margin: 0;

        font-size: 12px;

        font-weight: 750;
    }

    .journalist-role {
        margin-top: 2px;

        color: #888;

        font-size: 12px;
    }


    /* =========================================================
        FOOTER
    ========================================================= */

    footer {
        padding: 40px 0 22px;

        background: #fff;

        border-top: 1px solid #ddd;
    }

    .footer-brand {
        color: var(--blue);

        font-size: 24px;

        font-weight: 800;
    }

    .footer-column h5 {
        margin-bottom: 11px;

        font-size: 13px;

        font-weight: 800;
    }

    .footer-column a {
        display: block;

        margin-bottom: 7px;

        color: #666;

        font-size: 13px;
    }

    .footer-column a:hover {
        color: var(--blue);
    }

    .footer-bottom {
        margin-top: 28px;

        padding-top: 16px;

        color: #999;

        font-size: 12px;

        border-top: 1px solid #ddd;
    }


    /* =========================================================
        TABLET
    ========================================================= */

    @media (max-width: 991.98px) {

        body {
            /* padding-top: 145px; */
        }

        .container {
            max-width: 94%;
        }

        .section-nav-inner {
            gap: 18px;
        }

        .section-nav-inner a {
            font-size: 11px;
        }

        .hero-image {
            min-height: 460px;
        }

        .hero-title {
            font-size: 38px;
        }

        .latest-grid,
        .trending-grid,
        .editor-grid {
            grid-template-columns:
                repeat(2, 1fr);
        }

        .video-grid {
            grid-template-columns:
                repeat(2, 1fr);
        }

        .journalists-grid {
            grid-template-columns:
                repeat(3, 1fr);

            row-gap: 28px;
        }
    }


    /* =========================================================
        MOBILE
    ========================================================= */

    @media (max-width: 767.98px) {

        body {
            /* padding-top: 58px; */

            font-size: 14px;
        }

        /*
            * Hide desktop navigation.
            */
        .desktop-section-nav,
        .desktop-category-nav {
            display: none;
        }

        .top-header-inner {
            min-height: 58px;
        }

        .brand {
            font-size: 21px;
        }

        .brand-subtitle {
            font-size: 6px;

            letter-spacing: 1.5px;
        }

        /*
            * Show mobile menu button.
            */
        .mobile-menu-toggle {
            display: flex;
        }

        .section {
            padding: 24px 0;
        }

        .section-title {
            font-size: 17px;
        }

        .section-link {
            font-size: 9px;
        }

        .hero-image {
            min-height: 390px;

            border-radius:
                0 0
                var(--radius-md)
                var(--radius-md);
        }

        .hero-content {
            padding: 35px 0 24px;
        }

        .hero-title {
            margin-bottom: 11px;

            font-size: 27px;

            line-height: 1.1;
        }

        .hero-description {
            max-width: 95%;

            font-size: 11px;
        }

        .article-title {
            font-size: 15px;
        }

        .article-title.large {
            font-size: 22px;
        }

        .article-title.small {
            font-size: 13px;
        }

        .article-excerpt {
            font-size: 11px;
        }

        .article-meta {
            font-size: 9px;
        }

        .tag {
            font-size: 9px;
        }

        .top-news {
            padding-top: 22px;
        }

        .side-news {
            margin-top: 20px;

            padding-left: 0;

            border-left: 0;
        }

        .side-news-image {
            width: 78px;
            height: 60px;

            flex-basis: 78px;
        }

        .side-news-title {
            font-size: 12px;
        }

        .subscription-banner {
            min-height: 180px;

            padding: 24px 22px;
        }

        .subscription-title {
            max-width: 80%;

            font-size: 22px;
        }

        .subscription-text {
            max-width: 70%;

            font-size: 10px;
        }

        .latest-grid,
        .trending-grid,
        .editor-grid {
            grid-template-columns:
                repeat(2, 1fr);

            gap: 10px;
        }

        .trending-card-body {
            padding: 10px;
        }

        .editor-card {
            padding: 7px;
        }

        .feature-section {
            padding: 28px 0;
        }

        .feature-card-title {
            font-size: 18px;
        }

        .feature-sidebar {
            margin-top: 16px;
        }

        .video-grid {
            grid-template-columns:
                repeat(2, 1fr);

            gap: 10px;
        }

        .video-card .play-icon {
            width: 28px;
            height: 28px;

            bottom: 96px;
        }

        .analysis-list {
            padding-right: 0;
        }

        .analysis-item {
            gap: 12px;

            padding: 15px 0;
        }

        .analysis-number {
            width: 25px;

            flex-basis: 25px;

            font-size: 24px;
        }

        .analysis-title {
            font-size: 12px;
        }

        .analysis-description {
            font-size: 9px;
        }

        .analysis-ad {
            margin-top: 18px;

            min-height: 220px;

            padding: 23px;
        }

        .analysis-ad h3 {
            font-size: 19px;
        }

        .author-grid {
            grid-template-columns: 1fr;

            gap: 9px;
        }

        .author-card {
            min-height: 95px;
        }

        .author-photo {
            width: 68px;
            height: 75px;

            flex-basis: 68px;
        }

        .voices-grid {
            grid-template-columns: 1fr;

            gap: 11px;
        }

        .journalists-grid {
            grid-template-columns:
                repeat(3, 1fr);

            gap: 22px 8px;
        }

        .journalist-photo {
            width: 62px;
            height: 62px;
        }

        .journalist-name {
            font-size: 8px;
        }

        .journalist-role {
            font-size: 6px;
        }

        footer {
            padding-top: 28px;
        }

        .footer-column {
            margin-top: 22px;
        }
    }


    /* =========================================================
        SMALL MOBILE
    ========================================================= */

    @media (max-width: 380px) {

        .container {
            max-width: 92%;
        }

        .hero-image {
            min-height: 355px;
        }

        .hero-title {
            font-size: 23px;
        }

        .article-title {
            font-size: 13px;
        }

        .article-title.large {
            font-size: 19px;
        }

        .article-title.small {
            font-size: 11px;
        }

        .article-excerpt {
            font-size: 9px;
        }

        .section {
            padding: 20px 0;
        }

        .subscription-title {
            font-size: 19px;
        }

        .subscription-text {
            font-size: 9px;
        }

        .latest-grid,
        .trending-grid,
        .editor-grid,
        .video-grid {
            gap: 7px;
        }

        .mobile-side-menu {
            width: 92vw;
        }
    }



.explore-section {
        height: 269px;
        padding-top: 66px;
       
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .explore-title {
        font-size: 48px;
        line-height: 1;
        font-weight:600
    }

    .explore-search {
        width: min(833px, calc(100% - 30px));
        height: 55px;
    }

    .explore-search .form-control {
        font-size: 15px;
    }

    .explore-search .form-control::placeholder {
        color: #c9c9c9;
        opacity: 1;
    }

    .explore-search i {
        font-size: 21px;
        color: #c8c8c8 !important;
    }

    @media (max-width: 767.98px) {
        .explore-section {
            height: 250px;
            padding-top: 50px;
        }

        .explore-title {
            font-size: 38px;
        }

        .explore-search {
            height: 52px;
            width: calc(100% - 24px);
        }
    }

    @media (max-width: 575.98px) {
        .explore-section {
            height: 230px;
            padding-top: 42px;
        }

        .explore-title {
            font-size: 34px;
            margin-bottom: 25px !important;
        }

        .explore-search {
            height: 50px;
        }

        .explore-search .form-control {
            font-size: 14px;
        }
    }