*, *::after, *::before{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}
body{
    font-family: 'Inter', serif;
    overflow-x: hidden;
    background-color: var(--nex-body-bg);
    padding-top: 6rem;
}
.container{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}
a{
    text-decoration: none;
    color: var(--nex-link-color);
    transition: ease-in-out 0.2s;
}
a:hover{
    color: var(--nex-link-hover);
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
}
.nexera_header{
    background-color: var(--nex-header-bg);
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.nexera_inner{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}
.nexera_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nextera_nempel{
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nexera_with_menu{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nexera_home_uri{
    text-decoration: none;
    color: var(--nex-link-color);
}
.nexera_brand{
    height: 28px;
    width: auto;
}
.nexera_menu i{
    font-size: 25px;
    color: var(--nex-main-color);
    cursor: pointer;
}
.nexera_search_desktop{
    display: block;
    background-color: var(--nex-body-bg);
    width: 100%;
    min-width: 280px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--nex-btn-bg);
}
.nexera_form{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.nexera_form input{
    padding: 7px 20px;
    font-size: 12px;
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
}
.nexera_form button{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--nex-btn-bg);
    color: var(--nex-btn-text);
    font-size: 12px;
    width: 30px;
    border: none;
    cursor: pointer;
}
.nexera_sosmed{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nexera_sosmed a{
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 14px;
}
.nexera_sosmed a.facebook{
    background-color: #1877F2;
}
.nexera_sosmed a.instagram{
    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
}
.nexera_sosmed a.twitter{
    background-color: #000;
}
.nexara_nav{
    width: 100%;
}
.nexara_menu{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 15px 0 5px 0;
    overflow-x: auto;
    font-family: 'Poppins', sans-serif;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nexara_menu::-webkit-scrollbar{
    display: none;
}
.nexara_menu .sub-menu{
    display: none;
}
.nexara_menu li a{
    color: var(--nex-header-link);
    white-space: nowrap;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 500;
    transition: ease-in-out 0.3s;
}
.nexara_menu li.current-menu-item a{
    color: var(--nex-header-hover);
}
.nexara_menu li a:hover{
    color: var(--nex-header-hover);
}
.nexera_news-scrolling{
    display: flex;
    gap: 1rem;
    align-items: center;
    background-color: var(--nex-main-color);
    margin-top: 1rem;
    border-radius: 10px;
    padding-right: 1rem;
}
.itemburn{
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    border-right: 1px solid #fff;
}
.nexera_list-headline{
    overflow: hidden;
    position: relative;
}
.nexera_track{
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: scrollNews 75s linear infinite;
}
.nexera_list-headline{
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.nexera_list-headline:hover .nexera_track{
    animation-play-state: paused;
}
@keyframes scrollNews{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}
.nexera_list-headline a{
    color: #fff;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
}

/* ===============================
   SECTION
================================= */
.nx-section{
    margin-top: 1rem;
}
.nx-section img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nx-grid{
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 10px;
}
.nx-flex-d{
    /* height: 100%; */
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
}
.nx-card--hero{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.nx-subgrid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}
.nx-card--small{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

/* Tambahan Baru =========================
========================================== */
.nexara-bigger{
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 10px;
    align-items: stretch;
}
.nexara_b-inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    height: max-content;
}
.nexara_b-link:first-child{
    grid-column: span 2;
    height: 300px;
}
.nexara_b-link .nexara_b-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nexara_b-link{
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.nexara_b-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 18px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.98),
        rgba(0,0,0,0.5),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.nexara_b-title{
    font-size: 18px;
    color: #fff;
}
.nexara_b-meta{
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.nexara_b-sites{
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--nex-muted-text);
    font-size: 13px;
    font-weight: 600;
}
.nexara_b-sites .nexara_b-logo{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--nex-main-color);
}
.nexara_b-time{
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--nex-muted-text);
    font-size: 12px;
    font-weight: 600;
}
.nexara_b-link .nexara_b-thumb{
    transition: ease-in-out 0.3s;
}
.nexara_b-link:nth-child(2),
.nexara_b-link:nth-child(3){
    height: 250px;
}
.nexara_b-link:hover .nexara_b-thumb{
    transform: scale(1.1);
}
.nexara_b-link:nth-child(2) .nexara_b-title,
.nexara_b-link:nth-child(3) .nexara_b-title{
    font-size: 14px;
}
.nexara_b-link:nth-child(2) .nexara_b-sites,
.nexara_b-link:nth-child(3) .nexara_b-sites{
    display: none;
}
.nexara_b-aside{
    padding: 10px 10px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.nexara_b-semangat{
    display: grid;
    grid-template-columns: 1fr 90px;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}
.nexara_b-semangat-aset{
    display: flex;
    flex-direction: column;
}
.nexara_b-semangat-title{
    font-size: 13px;
    color: var(--home-page-link);
    margin-bottom: 10px;
}
.nexara_b-etdah{
    color: var(--nex-muted-text);
    font-size: 12px;
}
.nexara_b-semangat-cover{
    width: 100%;
    height: 90px;
    border-radius: 3px;
    overflow: hidden;
}


.nx-right{
    padding: 10px 10px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.nx-sidebar__content{
    overflow-y: auto;
    padding-right: 10px;
    max-height: 505px;
}
.nx-card__link{
    position: relative;
}
.nx-card__link:hover img{
    transform: scale(1.1);
}
.nx-card__media_hero{
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
}
.nx-card__media{
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.nx-card__media_hero img,
.nx-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease-in-out 0.3s;
}
.nx-card__category{
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    color: #fff;
    background-color: var(--nex-accent-color);
    font-weight: 100;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 2;
}
.nx-card__overlay,
.nx-g3_overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.98),
        rgba(0,0,0,0.5),
        transparent
    );
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.nx-card__title{
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 700;
}
.nx-card__meta{
    font-size: 12px;
    color: var(--nex-accent-color);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nx-card__meta i{
    margin-right: 4px;
}
.nx-card__title_smal{
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 5px;
}
.nx-card__time{
    font-size: 11px;
    color: var(--nex-accent-color);
}
.nx-sidebar__header{
    margin-bottom: 10px;
}
.nx-sidebar__title{
    font-size: 16px;
    font-weight: 700;
    color: var(--nex-main-color);
    display: flex;
    align-items: center;
    gap: 10px;
}
.nx-sidebar__title::after{
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--nex-accent-color);
}
.nxnw_header{
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nxnw_header span{
    font-size: 16px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nxnw_header span::before{
    content: '';
    width: 10px;
    height: 10px;
    margin-left: -10px;
}
.nxnw_header span.accent::before{
    background-color: var(--nex-accent-color);
}
.nxnw_header span.main::before{
    background-color: var(--nex-main-color);
}
.nx-sidebar__content::-webkit-scrollbar{
    width: 5px;
}
.nx-sidebar__content::-webkit-scrollbar-thumb{
    background: var(--nex-accent-color);
    border-radius: 10px;
}
.nx-box_scrollY{
    padding-right: 10px;
}
.nx-box_scrollY.accent::-webkit-scrollbar{
    width: 5px;
}
.nx-box_scrollY.accent::-webkit-scrollbar-thumb{
    background: var(--nex-accent-color);
    border-radius: 10px;
}
.nx-box_scrollY.main::-webkit-scrollbar{
    width: 5px;
}
.nx-box_scrollY.main::-webkit-scrollbar-thumb{
    background: var(--nex-main-color);
    border-radius: 10px;
}
.nx-item{
    margin-bottom: 2rem;
}
.nx-item:last-child{
    margin-bottom: 0;
}
.nx-item__link{
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 10px;
    align-items: center;
}
.nx-item__thumb img{
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}
.nx-item__title{
    font-size: 13px;
    line-height: 1.4;
    color: var(--home-page-link);
    transition: .3s;
}
.nx-item:hover .nx-item__title{
    color: var(--home-page-link-hover);
}
.nx-item__time{
    font-size: 11px;
    color: var(--home-page-link-hover);
}
.nx-3box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    grid-auto-rows: 450px;
}
.nx-featured{
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.nx-featured img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease-in-out 0.3s;
}
.nx-featured:hover img{
    transform: scale(1.1);
}
.nx3_title,
.nx_item-title{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}
.nx-site_info{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
img.nx-site_icon{
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.nx-site_name{
    font-size: 14px;
    color: var(--nex-muted-text);
    font-weight: 700;
}
.nx-site_info i{
    color: var(--home-page-link-hover);
}
.nx-future_time,
.nx_item-date{
    color: #fff;
    font-size: 11px;
    font-weight: 400;
}
.nx-newbox{
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    overflow: hidden;
}
.nx-box_scrollY{
    height: 100%;
    overflow-y: auto;
    padding-bottom: 1.5rem;
}
.nx_smalling{
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 10px;
    align-items: center;
    margin-bottom: 2rem;
}
.nxsm_left{
    display: flex;
    flex-direction: column;
}
.nxsm_title{
    color: var(--home-page-link);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: ease-in-out 0.3s;
}
.nxsm_time{
    color: var(--home-page-link-hover);
    font-size: 12px;
}
.nx_smalling img{
    width: 100%;
    height: 80px;
    border-radius: 5px;
}
.nx_smalling:hover .nxsm_title{
    color: var(--home-page-link-hover);
}
.nx-justyfy-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.nx_big-title{
    display: flex;
    align-items: center;
    gap: 10px;
}
.nx_big-text{
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}
.nx_big-text.issmall{
    font-size: 13px;
}
.nx_big-text::before,
.nx_big-text::after{
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
}
.nx_big-text::before{
    margin-right: 8px;
    background-color: var(--nex-main-color);
}
.nx_big-text::after{
    margin-left: 8px;
    background-color: var(--nex-accent-color);
}
.nx-load-more-a{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--nex-accent-color);
    font-weight: 500;
}
.nx-load-more-a.issmall{
    font-size: 12px;
}
.nx-slider-items{
    position: relative;
    overflow: hidden;
}
.nx-tracking{
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    touch-action: pan-y;
}
.nexera-items{
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.nx_item-link{
    display: block;
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.nx_item-link img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.nx_item-link:hover img{
    transform: scale(1.05);
}
.nx_item-asset{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        transparent
    );
    color: #fff;
}
.nexera-prev, .nexera-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--nex-accent-color);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    opacity: 0.85;
}
.nexera-prev{ left: 5px; }
.nexera-next{ right: 5px; }
.nexera-prev.hide,
.nexera-next.hide{
    display: none;
}
.nexera-dots{
    text-align: center;
    margin-top: 10px;
}
.nexera-dots span{
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ccc;
    margin: 0 4px;
    border-radius: 50%;
    cursor: pointer;
}
.nexera-dots .active{
    width: 15px;
    border-radius: 3px;
    background: var(--nex-main-color);
}

/* Indexs news */
.nx-indexs-news_grid{
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1rem;
    align-items: start;
}
.nx-news_list{
    display: block;
    background-color: #fff;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.nx-newsticle{
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
}
.nx-newsticle:last-child{
    margin-bottom: 0;
}
.newsticle_nx-asset{
    display: flex;
    flex-direction: column;
}
.newsticle_nx-cat{
    font-size: 13px;
    color: var(--nex-accent-color);
    font-weight: 600;
    margin-bottom: 5px;
}
.newsticle_nx-title_link{
    color: var(--home-page-link);
}
.newsticle_nx_title{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
}
.newsticle_nx-thumb{
    width: 100%;
    height: 90px;
    overflow: hidden;
    border-radius: 5px;
}
.newsticle_nx-time{
    color: var(--nex-muted-text);
    font-size: 12px;
    font-weight: 500;
}

/* Sidebar =====================================
================================================ */
.nxw_sidebar-box{
    position: sticky;
    top: 7rem;
}
.nxr-widget{
    padding: 10px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.nxr-widget:last-child{
    margin-bottom: 0;
}
.nxr-widget-title{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    font-weight: 900;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nxr-widget-title::before{
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--nex-main-color);
    display: inline-block;
    margin-left: -10px;
}
.nxrlist_news{
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}
.nxrlist_news:last-child{
    margin-bottom: 0;
}
.nxrlist_asset{
    display: flex;
    flex-direction: column;
}
.nxrlist_url{
    color: var(--home-page-link);
}
.nxrlist_title{
    line-height: 1.4;
    font-size: 13px;
    margin-bottom: 10px;
}
.nxrlist_date{
    font-size: 12px;
    color: var(--nex-muted-text);
}
.nxrlist_thumb{
    width: 100%;
    height: 80px;
    overflow: hidden;
    border-radius: 3px;
}

/* Scrolling */
.nxr-widget.nxw-scrolling-wg{
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}
.nxws-container{
    overflow: hidden;
    position: relative;
}
.nxws-track{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.nxws-track::-webkit-scrollbar{
    display: none;
}
.nxws-item{
    width: 100%;
    flex: 0 0 auto;
    scroll-snap-align: start;
}
.nxws-thumb{
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.nxws-thumb img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.nxws-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,.98), rgba(0,0,0,.6), transparent);
}
.nxws-title{
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.nxws-date{
    font-size: 12px;
    color: #ddd;
}
.nxws-dots{
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 6px;
}
.nxws-dot{
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.nxws-dot.active{
    background: var(--nex-main-color);
}
.nxwt_tags{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.nxwt_link{
    display: flex;
    gap: 3px;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
}
.nxwc-cat{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--nex-accent-color);
}
.nxwc-cat:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.nxwc-cat_text{
    color: var(--home-page-link);
    font-size: 14px;
    font-weight: 700;
}
.nx-btn-loadmore{
    display: block;
    border: none;
    background-color: var(--nex-btn-bg);
    margin-top: 3rem;
    color: var(--nex-btn-text);
    cursor: pointer;
    padding: 10px 15px;
    font-size: 14px;
    transition: ease-in-out 0.3s;
    border-radius: 5px;
}
.nx-btn-loadmore:hover{
    background-color: var(--nex-btn-hover);
}

/* Author Box Archive */
.nx_author-archive-box{
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.nx_author-archive-box img{
    width: 60px;
    height: 60px;
    object-position: center;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--nex-main-color);
}
.nx_author-archive_info{
    text-align: center;
}
.nx_author-arcive_name{
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    display: block;
    margin-bottom: 10px;
}
.nx_author-archive_desc{
    color: var(--nex-body-text);
    font-size: 16px;
    line-height: 1.7;
}


/* News Empty */
.nx-section_empty{
    text-align: center;
    padding: 40px 20px;
}
.nx-empty-icon{
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--nex-accent-color);
}
.nx_news-empty{
    font-size: 20px;
    margin-bottom: 8px;
}
.nx-empty-desc{
    opacity: 0.7;
    font-size: 14px;
}

/* ==========================================
404 Css =====================================
============================================= */
.nx_404{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: max-content;
    background-color: var(--nex-border-color);
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    padding: 5rem 2rem;
}
.nx_notfound-heading{
    color: var(--nex-accent-color);
    font-size: 50px;
    font-weight: 900;
}
.nx_notfound-text{
    line-height: 1.7;
    color: var(--nex-muted-text);
    font-size: 18px;
}
.nx_found-news{
    display: block;
    position: relative;
    margin-bottom: 3rem;
}
.nx_404-title{
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    align-items: center;
}
.nx_404-title::before{
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--nex-main-color);
    display: inline-block;
    margin-right: 8px;
}
.nx_404-title::after{
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--nex-accent-color);
    display: inline-block;
    margin-left: 8px;
}
.nx_found-news-loop{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    width: 100%;
}
.nx_found-article{
    display: block;
    transition: transform .25s ease, box-shadow .25s ease;
}
.nx_found-article:hover{
    transform: translateY(-4px);
}
.nx_found-link{
    display: block;
    text-decoration: none;
    color: inherit;
}
.nx_found-box-img{
    width: 100%;
    aspect-ratio: 14/9;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #f3f3f3;
}
.nx_found-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}
.nx_found-article:hover .nx_found-img{
    transform: scale(1.05);
}
.nx_found-asset{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.nx_found-title{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nx_found-time{
    font-size: 12px;
    color: #888;
}

/* ==========================================
Search Page Css =============================
============================================= */
.nx-search-header{
    margin-bottom: 2rem;
    text-align: center;
}
.nx-search-title{
    font-size: 22px;
    font-weight: 600;
}
.nx-search-loop{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nx-search-item{
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}
.nx-search-link{
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}
.nx-search-thumb{
    flex: 0 0 180px;
    height: 120px;
    overflow: hidden;
    border-radius: 6px;
    background: #f3f3f3;
}
.nx-search-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nx-search-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nx-search-post-title{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.nx-search-meta{
    font-size: 12px;
    color: #888;
}
.nx-search-excerpt{
    font-size: 13px;
    color: #555;
    margin: 0;
}
.nx-search-empty{
    text-align: center;
    padding: 2rem 0;
}
.nx-search-empty h2{
    margin-bottom: 10px;
}

/* ==========================================
Search Post Css =============================
============================================= */
.nx_single-grid{
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
}
.nx_single_breadcrumb{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}
.nx_single_breadcrumb a{
    color: var(--nex-link-color);
    font-weight: 700;
}
.nx_single_breadcrumb a i{
    font-size: 11px;
}
.nx_sparator i{
    font-size: 11px;
    color: var(--nex-muted-text);
}
.nx_single-big-title{
    font-size: 24px;
    font-weight: 900;
    color: #111;
    line-height: 1.4;
    margin-bottom: 10px;
}
.nx_fld-just{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.nx_sigle-info{
    font-weight: 400;
    font-size: 13px;
    color: var(--nex-body-text);
}
.nx_single-creator{
    text-transform: capitalize;
    color: var(--nex-accent-color);
}
.nx_single-site{
    text-transform: capitalize;
    color: var(--nex-main-color);
}
.nx_single-time{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--nex-body-text);
    opacity: 0.7;
}
.nx_single-figure{
    display: block;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 12px;
    color: var(--nex-muted-text);
}
.nx_single-thumb{
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.nx_single-thumb-caption{
    padding: 10px;
    display: block;
    line-height: 1.4;
}
/* Social Sahred =================
================================== */
.nx_social-share{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 1rem;
}
.nx_social-share a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
    height: 35px;
    transition: all .2s ease;
}
.nx_social-share a i{
    font-size: 16px;
}
.nx_social-share a:hover{
    transform: translateY(-2px);
}
.nx_share-btn.nx_facebook{
    background: #1877f2;
}
.nx_share-btn.nx_twitter{
    background: #333;
}
.nx_share-btn.nx_whatsapp{
    background: #25d366;
}
.nx_share-btn.nx_telegram{
    background: #0088cc;
}

/* SingleBody Content ==========================
================================================ */
.nx_single-content{
    color: var(--nex-body-text);
    line-height: 1.7;
    word-break: break-word;
}
.nx_single-content p{
    margin-bottom: 1.2em;
}
.nx_single-content h1,
.nx_single-content h2,
.nx_single-content h3,
.nx_single-content h4,
.nx_single-content h5,
.nx_single-content h6{
    margin: 1.5em 0 0.6em;
    line-height: 1.3;
}
.nx_single-content a{
    color: var(--nex-link-color);
    text-decoration: none;
    transition: 0.2s;
}
.nx_single-content a:hover{
    color: var(--nex-link-hover);
    text-decoration: underline;
}
.nx_single-content img,
.nx_single-content a img{
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.nx_single-content figure{
    margin: 1.5em 0;
}
.nx_single-content figcaption{
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 0.5em;
}
.nx_single-content ul,
.nx_single-content ol{
    margin: 1em 0 1em 1.5em;
}
.nx_single-content li{
    margin-bottom: 0.5em;
}
.nx_single-content blockquote{
    margin: 1.5em 0;
    padding: 1em 1.2em;
    border-left: 4px solid var(--nex-link-color);
    background: rgba(0,0,0,0.03);
}
.nx_single-content code{
    background: rgba(0,0,0,0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}
.nx_single-content pre{
    background: #111;
    color: #eee;
    padding: 1em;
    overflow-x: auto;
    border-radius: 6px;
    margin: 1.5em 0;
}
.nx_single-content pre code{
    background: none;
    padding: 0;
    color: inherit;
}
.nx_single-content table{
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    overflow-x: auto;
    display: block;
}
.nx_single-content th,
.nx_single-content td{
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.6em;
    text-align: left;
}
.nx_single-content th{
    background: rgba(0,0,0,0.05);
}
.nx_single-content hr{
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 2em 0;
}
.nx_single-content iframe{
    max-width: 100%;
    border: none;
}
.nx_single-content .alignleft{
    float: left;
    margin-right: 1em;
}
.nx_single-content .alignright{
    float: right;
    margin-left: 1em;
}
.nx_single-content .aligncenter{
    display: block;
    margin: 1.5em auto;
}
.nx_single-content::after{
    content: "";
    display: block;
    clear: both;
}

/* Tags single post */
.nx_tags{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.nx_tags-label{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    margin-bottom: 10px;
    color: var(--nex-body-text);
    opacity: 0.8;
}
.nx_tags-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nx_tag-item{
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85em;
    text-decoration: none;
    border-radius: 20px;
    background: rgba(0,0,0,0.05);
    color: var(--nex-body-text);
    transition: all .2s ease;
}
.nx_tag-item:hover{
    background: var(--nex-link-color);
    color: #fff;
}

/* ========================================
Author ==================================== */
.nx_single-author{
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}
.nx_single-author_inner{
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.nx_single-author_avatar img{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.nx_single-author_content{
    flex: 1;
}
.nx_single-author_name{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}
.nx_single-author_bio{
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}
.nx_single-author_link{
    font-size: 13px;
    font-weight: 600;
    color: var(--nex-main-color);
    text-decoration: none;
}
.nx_single-author_link:hover{
    text-decoration: underline;
}

/* Related posts ===========================
============================================ */
.nx_related{
    display: block;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nx_related-section{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: #222;
}
.nx_related-section::before{
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--nex-main-color);
    flex-shrink: 0;
}
.nx_related-section::after{
    content: '';
    height: 2px;
    background-color: var(--nex-accent-color);
    flex: 1;
}
.nx_related-top{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.nx_re-item{
    text-align: center;
    margin-bottom: 2rem;
}
.nx_re-item:hover .nx_re-item-thumb img{
    transform: scale(1.05);
}
.nx_re-item-thumb{
    width: 100%;
    aspect-ratio: 14/9;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 5px;
}
.nx_re-item-thumb img{
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: cover;
    transition: ease-in-out 0.3s;
}
.re-title,
.nx_related-title{
    font-size: 13px;
    color: var(--nex-body-text);
    font-weight: 700;
    line-height: 1.4;
}
.nx_related-bottom{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.nx_related-item-bottom{
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: center;
}
.nx_related-item-bottom img{
    width: 100%;
    height: 80px;
    border-radius: 3px;
}


/* Komentat single post =====================
============================================= */
.nx_comments{
    margin-top: 2rem;
}
.nx_comments-title{
    margin-bottom: 1rem;
    font-size: 1.2em;
}
.nx_comment-list{
    list-style: none;
    padding: 0;
}
.nx_comment-item{
    margin-bottom: 1.5rem;
}
.nx_comment-body{
    display: flex;
    gap: 12px;
}
.nx_comment-avatar img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-position: center;
    object-fit: cover;
}
.nx_comment-content{
    flex: 1;
}
.nx_comment-meta{
    font-size: 0.85em;
    margin-bottom: 5px;
    color: var(--nex-body-text);
    opacity: 0.7;
}
.nx_comment-text{
    margin-bottom: 8px;
}

/* reply */
.nx_comment-reply a{
    font-size: 0.8em;
    text-decoration: none;
    color: var(--nex-link-color);
}

.nx_comment-reply a:hover{
    color: var(--nex-link-hover);
}

/* form */
.nx_comment-form{
    margin-top: 2rem;
}

.nx_comment-field{
    margin-bottom: 10px;
}

.nx_comment-field input,
.nx_comment-field textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    background: transparent;
    color: var(--nex-body-text);
}
.nx_comment-field textarea{
    margin-top: 1rem;
    height: 150px;
}
/* submit */
.nx_comment-submit{
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: var(--nex-link-color);
    color: #fff;
    margin-top: 1rem;
}
.nx_comment-submit:hover{
    background: var(--nex-link-hover);
}


/* Footer css ================================
============================================== */
.nx-footer{
    width: 100%;
    display: block;
    margin-top: 4rem;
    background-color: var(--nex-footer-bg);
    color: var(--nex-footer-text);
}
.nx_footer-grid{
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
}
.nx_foter-item{
    display: flex;
    flex-direction: column;
}
.nx_foter-logo-a{
    width: max-content;
}
.nx_foter-logo-a .nx_foter-logo{
    width: auto;
    height: 45px;
    margin-bottom: 1rem;
}
.nx_footer-text{
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}
.nx_footer-span{
    display: block;
    margin-bottom: 1rem;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}
.nx_footer-span::after{
    content: '';
    height: 1px;
    width: 40%;
    background-color: var(--nex-footer-text);
    display: block;
    margin-top: 10px;
}
.nxf_menu{
    list-style: none;
}
.nxf_menu li{
    margin-bottom: 10px;
}
.nxf_menu li a{
    color: var(--nex-footer-link);
    font-size: 15px;
    font-weight: 500;
    transition: ease-in-out 0.3s;
}
.nxf_menu li:hover a{
    color: var(--nex-footer-hover);
}
.nx_foter-bottom{
    width: 100%;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(225, 225, 225, 0.2);
    background-color: var(--nex-footer-bottom-bg);
}
.nx_footer-copy{
    font-size: 14px;
    font-weight: 600;
    color: var(--nex-footer-text);
}
.nx_footer-social{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.nx_footer-social-link{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f3f3;
    color: #444;
    text-decoration: none;
    font-size: 16px;
    transition: all .25s ease;
}
.nx_footer-social-link:hover{
    transform: translateY(-3px);
    color: #fff;
}
.nx_footer-social-link.nx_facebook:hover{
    background: #1877f2;
}
.nx_footer-social-link.nx_twitter:hover{
    background: #000;
}
.nx_footer-social-link.nx_instagram:hover{
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.nx_footer-social-link.nx_youtube:hover{
    background: #ff0000;
}

/* Menu Flexbox =======================
======================================= */
.nx_flexbox{
    background-color: #fff;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99999;
    height: 100vh;
    overflow: hidden;
    transition: all 0.5s;
}
.nx_flexbox.active{
    left: 0;
}
.nx_flx-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.nx_flx-url .nx_flx-logo{
    width: auto;
    height: 25px;
}
.nx_flx-close{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--nex-main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nx_flx-close i{
    color: #fff;
}
.nx_flx-search{
    display: none;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--nex-main-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 35px;
}
.nx_flx-from{
    display: flex;
    align-items: center;
    height: 100%;
}
.nx_flx-from input{
    height: 100%;
    padding-left: 20px;
    background-color: transparent;
    width: calc(100% - 40px);
    border: none;
    outline: none;
}
.nx_flx-from button{
    margin-left: auto;
    width: 45px;
    height: 100%;
    border: none;
    background-color: var(--nex-main-color);
    cursor: pointer;
    color: #fff;
}
.nx_flx-container{
    height: calc(100vh - 110px); /* header + search kira2 */
    overflow-y: auto;
    padding-right: 5px;
}
.nx_flx-menu{
    list-style: none;
    padding: 0;
    margin: 0;
}
.nx_flx-menu li{
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nx_flx-menu li a{
    display: block;
    padding: 12px 10px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    transition: all 0.2s ease;
}
.nx_flx-menu li .sub-menu{
    margin-left: 30px;
}
.nx_flx-menu li a:hover{
    background-color: rgba(0,0,0,0.03);
    padding-left: 15px;
}
.nx_flx-container::-webkit-scrollbar{
    width: 6px;
}
.nx_flx-container::-webkit-scrollbar-track{
    background: transparent;
}
.nx_flx-container::-webkit-scrollbar-thumb{
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
}
.nx_flx-container::-webkit-scrollbar-thumb:hover{
    background-color: var(--nex-main-color);
}
.nx_flx-container{
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}


/* =======================================
Tablet =================================== */
@media(max-width: 992px){
    .nexera_brand{
        height: 28px;
    }
    .nexera_sosmed{
        display: none;
    }
    .nexera_top{
        display: block;
    }
    .nextera_nempel{
        justify-content: space-between;
    }
    .nexera_search_desktop{
        border-radius: 10px;
    }
    .nx-grid,
    .nexara-bigger{
        grid-template-columns: 1fr;
    }
    .nx-right{
        margin-top: 2rem;
    }
    .nx-sidebar__content{
        max-height: 100%;
        padding-right: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .nx-3box{
        grid-template-columns: repeat(2, 1fr);
    }
    .nx-featured{
        grid-column: span 2;
    }
    .nexera-items{
        display: flex;
        gap: 1rem;
    }
    .nx_item-link{
        flex: 1;
    }
    .nx-indexs-news_grid,
    .nx_single-grid{
        display: block;
    }
    .nxw_sidebar-box{
        margin-top: 2rem;
    }
    .nxrlist-post{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .nx_footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desain mobile ===========================
============================================ */
@media (max-width: 580px){
    body{
        padding-top: 3rem;
    }
    .container{
        padding: 0 20px;
    }
    .nexera_search_desktop{
        display: none;
    }
    .nexara_nav,
    .hidemobile{
        display: none;
    }
    .nx_flx-search{
        display: block;
    }
    .nexera_menu i{
        font-size: 24px;
    }
    .nexera_news-scrolling{
        gap: 0;
        padding-right: 0;
        border-radius: 0;
    }
    .itemburn{
        padding: 8px 10px;
        border-right: 1px solid rgba(225,225,225,0.3);
    }
    .nexera_list-headline{
        mask-image: none;
    }
    .nexera_list-headline a{
        font-size: 11px;
    }
    .nx-card__media_hero{
        height: 300px;
    }
    .nx-card__title{
        font-size: 16px;
    }
    .nx-subgrid{
        display: block;
        margin-top: 5px;
    }
    .nx-subgrid .nx-card__overlay{
        position: relative;
        background: transparent;
        height: max-content;
        display: block;
        padding: 0;
    }
    .nx-subgrid .nx-card__link{
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1rem;
        border-radius: 0;
        margin-bottom: 1rem;
    }
    .nx-card--small{
        border-radius: 0;
        overflow: visible;
    }
    .nx-card__title_smal{
        color: var(--home-page-link);
    }
    .nx-card__media{
        height: 100px;
    }
    .nx-card__media img{
        border-radius: 3px;
    }
    .nx-sidebar__content{
        display: block;
    }
    .nx-3box,
    .nxrlist-post,
    .nx_footer-grid{
        display: block;
    }
    .nx-featured{
        height: 330px;
        display: block;
        margin-bottom: 1rem;
    }
    .nx-right,
    .nx-newbox{
        box-shadow: none;
    }
    .nx-news_list{
        padding: 0;
        box-shadow: none;
        background-color: transparent;
    }
    .nx-newsticle{
        grid-template-columns: 1fr 90px;
        margin-bottom: 1.5rem;
    }
    .newsticle_nx_title{
        font-weight: 700;
        font-size: 14px;
    }
    .nx_foter-item{
        margin-bottom: 2rem;
    }
    .nx_foter-logo-a .nx_foter-logo{
        height: 30px;
    }
    .nx_footer-text{
        font-size: 14px;
    }
    .nx_footer-copy{
        font-weight: 400;
    }
    .nx_related-top{
        grid-template-columns: repeat(2, 1fr);
    }
    .nx_related-bottom{
        display: block;
    }
    .nx_single_breadcrumb a{
        font-weight: 400;
    }
    .nx_single-big-title{
        font-size: 20px;
    }
    .nx_single-figure img{
        border-radius: 0;
        margin-left: -20px;
        width: calc(100% + 40px);
    }
    .nx_social-share a{
        height: 30px;
    }
    .nx_social-share a i {
        font-size: 14px;
    }
    .nx_single-author_inner{
        flex-direction: column;
        align-items: center;
    }
    .nx_single-author_content{
        text-align: center;
    }
    .nx-search-link{
        display: block;
    }
    .nx-search-thumb{
        display: block;
        height: 220px;
        margin-bottom: 10px;
    }
    .nexara_b-inner{
        grid-template-columns: 1fr;
    }
    .nexara_b-link:first-child{
        grid-column: unset;
        height: 450px;
        margin-bottom: 1rem;
    }
    .nexara_b-link:nth-child(2),
    .nexara_b-link:nth-child(3){
        height: max-content;
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    .nexara_b-link:nth-child(3){
        margin-bottom: 1rem;
    }
    .nexara_b-link:nth-child(2) .nexara_b-overlay,
    .nexara_b-link:nth-child(3) .nexara_b-overlay{
        position: relative;
        background: transparent;
        padding: 0;
    }
    .nexara_b-link:nth-child(2) .nexara_b-title,
    .nexara_b-link:nth-child(3) .nexara_b-title{
        color: var(--home-page-link);
    }
    .nexara_b-link:nth-child(2) .nexara_b-cover,
    .nexara_b-link:nth-child(3) .nexara_b-cover{
        overflow: hidden;
        border-radius: 3px;
        width: 100%;
        height: 90px;
    }
}