/***************************************************
 @ AsianSomoy Header System (Copied directly from Original Website Layout One & Header Core)
 *****************************************************/

:root {
    --tt_primary_color: var(--vr-theme-color, #c80000);
    --tt_secondary_color: #1a1a1a;
    --tt-white-color: #ffffff;
    --tt-gray-color: #eff3f4;
    --tt-text-color: #000;
}

body.dark-mode {
    --tt-white-color: #1e293b;
    --tt-gray-color: #0f172a;
    --tt-text-color: #ffffff;
    --tt_secondary_color: #38bdf8;
}

/* Header 1 Specific Styles */
.techtaranga_header_1 .header_featured_btn {
    font-size: 16px;
    font-weight: bold;
    padding-right: 10px;
    border-right: 1px solid #a0a0a0;
    color: #333;
    text-decoration: none;
}

.techtaranga_header_1 .header_profile_icon,
.techtaranga_header_1 .header_navmanu_icon,
.techtaranga_header_1 .header_theme_icon,
.techtaranga_header_1 .header_archive_icon,
.techtaranga_header_1 .header_search_icon {
    font-size: 17px;
    padding: 0 6px;
    color: #333;
    text-decoration: none;
}

.techtaranga_header_1 .tt_navbar {
    border-width: 1px;
    border-style: solid;
    border-left: 0;
    border-right: 0;
    border-color: #d7d7d7;
    background: #ffffff;
}

body.dark-mode .techtaranga_header_1 .tt_navbar {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .techtaranga_header_1 .header_featured_btn,
body.dark-mode .techtaranga_header_1 .header_profile_icon,
body.dark-mode .techtaranga_header_1 .header_navmanu_icon,
body.dark-mode .techtaranga_header_1 .header_theme_icon,
body.dark-mode .techtaranga_header_1 .header_archive_icon,
body.dark-mode .techtaranga_header_1 .header_search_icon {
    color: #f1f5f9;
}

/* Date & Location */
.header_date_wrapper {
    margin-top: 14px !important;
    padding: 0 !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
}

.header_date_location {
    font-size: 15.5px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 30px !important;
    line-height: 1 !important;
}

body.dark-mode .header_date_location {
    color: #cbd5e1 !important;
}

.header_date_location i {
    color: var(--tt_primary_color) !important;
    font-size: 16.5px !important;
}

/* Logo */
.main_logo text-center img,
.main_logo img {
    height: 59px;
    width: auto;
    object-fit: contain;
}

/***************************************************
 @ Main Menu (Exact copy from reference techtaranga.css)
 *****************************************************/
.tt_nav-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

ul.tt_nav-menu li {
    padding: 10px 12px;
}

ul.tt_nav-menu li.has-children {
    padding-right: 22px;
}

.tt_nav-menu .nav-item {
    position: relative;
}

.tt_nav-menu .nav-item>a {
    display: block;
    text-decoration: none;
    position: relative;
    font-size: 19px;
    font-weight: 700;
    color: #222222;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .tt_nav-menu .nav-item>a {
    color: #f1f5f9;
}

.tt_nav-menu .nav-item>a:hover {
    color: var(--tt_primary_color);
}

.tt_nav-menu .nav-item.has-children>a::after {
    content: '\F229';
    position: absolute;
    top: 3px;
    font-family: bootstrap-icons !important;
    right: -15px;
    font-weight: bold;
    font-size: 11px;
    line-height: 20px;
    transition: 0.3s;
}

.tt_nav-menu .nav-item.has-children:hover>a::after {
    transition: 0.3s;
}

.tt_nav-menu .child-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 210px;
    background-color: #f8fafc;
    display: none;
    z-index: 1000;
    list-style-type: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 4px 4px;
}

body.dark-mode .tt_nav-menu .child-menu {
    background-color: #1e293b;
    border: 1px solid #334155;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.tt_nav-menu .child-menu .child-item {
    padding: 0;
}

.tt_nav-menu .child-item>a {
    display: block;
    padding: 10px 18px;
    color: #334155 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .tt_nav-menu .child-item>a {
    color: #e2e8f0 !important;
}

.tt_nav-menu .child-item>a:hover {
    color: var(--tt_primary_color) !important;
    background: #f1f5f9;
}

body.dark-mode .tt_nav-menu .child-item>a:hover {
    background: #334155;
}

.tt_nav-menu .nav-item:hover .child-menu {
    display: block;
}

/***************************************************
@ Social Menu Style (Exact copy from reference techtaranga.css)
*****************************************************/
.techtaranga_social_menu a {
    padding: 5px;
    color: gray;
    transition: 0.3s;
    font-size: 18px;
    text-decoration: none;
}

.techtaranga_social_menu.bordered a {
    padding: 4px;
    color: gray;
    margin: 0 2px;
    transition: 0.3s;
    display: inline-block;
    font-size: 12px !important;
    height: 26px;
    text-align: center;
    width: 26px;
    border: 1px solid #d6d6d6;
    line-height: 16px;
}

.techtaranga_social_menu.round.bordered a {
    border-radius: 50%;
}

.techtaranga_social_menu.squere.bordered a {
    border-radius: 4px !important;
}

.techtaranga_social_menu a:hover {
    opacity: 0.85;
}

.techtaranga_social_menu.color .facebook {
    color: #1877F2 !important;
    border-color: #1877F2;
}

.techtaranga_social_menu.color .twitter {
    color: #000000 !important;
    border-color: #000000;
}

body.dark-mode .techtaranga_social_menu.color .twitter {
    color: #ffffff !important;
    border-color: #ffffff;
}

.techtaranga_social_menu.color .linkedin {
    color: #0A66C2 !important;
    border-color: #0A66C2;
}

.techtaranga_social_menu.color .instagram {
    color: #E4405F !important;
    border-color: #E4405F;
}

.techtaranga_social_menu.color .youtube {
    color: #FF0000 !important;
    border-color: #FF0000;
}

.techtaranga_social_menu.color .whatsapp {
    color: #25D366 !important;
    border-color: #25D366;
}

.techtaranga_social_menu.color .telegram {
    color: #229ED9 !important;
    border-color: #229ED9;
}

.techtaranga_social_menu.color .pinterest {
    color: #BD081C !important;
    border-color: #BD081C;
}

.techtaranga_social_menu.color .tiktok {
    color: #000000 !important;
    border-color: #000000;
}

body.dark-mode .techtaranga_social_menu.color .tiktok {
    color: #ffffff !important;
    border-color: #ffffff;
}

.techtaranga_social_menu.color .discord {
    color: #5865F2 !important;
    border-color: #5865F2;
}

.techtaranga_social_menu.color .twitch {
    color: #9146FF !important;
    border-color: #9146FF;
}

.techtaranga_social_menu.color .vk {
    color: #4C75A3 !important;
    border-color: #4C75A3;
}

.techtaranga_social_menu.color .rss {
    color: #f26522 !important;
    border-color: #f26522;
}

.techtaranga_social_menu.color .envelope {
    color: #D14836 !important;
    border-color: #D14836;
}

/* Mobile Header (Clean & Structured Mobile View) */
.mobile_header_one {
    background: #ffffff;
}

.mobile_header_one .mtopbar {
    background-color: #dc2626 !important;
    color: #ffffff !important;
    padding: 4px 0;
}

.mobile_header_one .header_date_location {
    font-size: 12.5px;
    color: #ffffff !important;
    display: inline-block;
    white-space: nowrap;
}

.mobile_header_one .mtopbar .header_date_location,
.mobile_header_one .mtopbar .header_date_location i,
.mobile_header_one .mtopbar .header_date_location span {
    color: #ffffff !important;
}

.mobile_header_one #mobileNavbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    background-color: #ffffff !important;
    border-bottom: 1px solid #e9ecef;
    padding: 6px 0;
}

.mobile_header_one #mobileNavbar .d-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 52px;
}

.mobile_header_one .mlogo {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.mobile_header_one .mlogo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
}

.mobile_header_one .mlogo img {
    height: 50px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.mobile_header_one .micon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile_header_one .micon.micon-left {
    justify-content: flex-start !important;
}

.mobile_header_one .micon.micon-right {
    justify-content: flex-end !important;
}

.mobile_header_one .micon .header_navmanu_icon,
.mobile_header_one .micon .header_featured_btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-right: none !important;
    background: transparent !important;
    line-height: 1 !important;
}

.mobile_header_one .micon i,
.mobile_header_one .micon svg {
    font-size: 24px !important;
    line-height: 1 !important;
    color: #1e293b !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile_header_one .micon .header_navmanu_icon i,
.mobile_header_one .micon .header_navmanu_icon svg {
    color: #1e293b !important;
    font-size: 24px !important;
}

.mobile_header_one .micon .header_featured_btn i,
.mobile_header_one .micon .header_featured_btn svg {
    color: #dc2626 !important;
    font-size: 21.5px !important;
    transform: translateY(1.5px) !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

body.dark-mode .mobile_header_one,
body.dark-mode .mobile_header_one #mobileNavbar {
    background-color: #1e293b !important;
    border-color: #334155;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode .mobile_header_one .micon i,
body.dark-mode .mobile_header_one .micon svg {
    color: #f1f5f9 !important;
}

body.dark-mode .mobile_header_one .micon .header_featured_btn i,
body.dark-mode .mobile_header_one .micon .header_featured_btn svg {
    color: #ef4444 !important;
    font-size: 21.5px !important;
    transform: translateY(1.5px) !important;
}

/* Offcanvas Mobile Sidemenu */
#mobileMenuOffcanvas {
    max-width: 320px;
    width: 85%;
    background-color: #ffffff;
}

body.dark-mode #mobileMenuOffcanvas {
    background-color: #1e293b;
    color: #f1f5f9;
}

#mobileMenuOffcanvas .offcanvas-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}

body.dark-mode #mobileMenuOffcanvas .offcanvas-header {
    border-color: #334155;
}

#mobileMenuOffcanvas .header_profile_icon_name {
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 4px 11px 2px 11px !important;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    color: #374151;
    background: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode #mobileMenuOffcanvas .header_profile_icon_name {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

#mobileMenuOffcanvas .header_profile_avatar_btn.dropdown-toggle::after {
    display: none !important;
}

#mobileMenuOffcanvas .header_profile_avatar_btn img:hover {
    border-color: var(--tt_primary_color, #dc2626) !important;
}

#mobileMenuOffcanvas .dropdown-menu {
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.dark-mode #mobileMenuOffcanvas .dropdown-menu {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}

body.dark-mode #mobileMenuOffcanvas .dropdown-item {
    color: #cbd5e1;
}

body.dark-mode #mobileMenuOffcanvas .dropdown-item:hover {
    background: #334155;
    color: #ffffff;
}

.mobile_navmenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile_navmenu .nav-item {
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

body.dark-mode .mobile_navmenu .nav-item {
    border-bottom: 1px solid #334155;
}

.mobile_navmenu .nav-item a {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b;
    padding: 10px 4px;
    display: block;
    text-decoration: none;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .mobile_navmenu .nav-item a {
    color: #f1f5f9;
}

.mobile_navmenu .nav-item a:hover {
    color: var(--tt_primary_color);
}

.mobile_navmenu .submenu-toggle {
    font-size: 15px;
    color: #64748b;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
}

body.dark-mode .mobile_navmenu .submenu-toggle {
    color: #94a3b8;
}

.mobile_navmenu .child-menu {
    list-style: none;
    padding: 4px 0 6px 16px;
    margin: 0;
    background: #f8fafc;
    border-radius: 4px;
    display: none;
}

body.dark-mode .mobile_navmenu .child-menu {
    background: #0f172a;
}

.mobile_navmenu .child-item a {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 7px 0;
    display: block;
    text-decoration: none;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .mobile_navmenu .child-item a {
    color: #cbd5e1 !important;
}

.mobile_navmenu .child-item a:hover {
    color: var(--tt_primary_color) !important;
}

/* Sticky Nav */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 5px 5px -5px #000;
    z-index: 1041;
}

/* Cursor pointer */
.cursor-pointer {
    cursor: pointer;
}

/***************************************************
 @ Homepage News Grid & Ticker (Exact copy from Original Website)
 *****************************************************/
.techtaranga-ticker-container {
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    padding: 4px 6px;
    background: #ffffff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

body.dark-mode .techtaranga-ticker-container {
    background: #1e293b;
    border-color: #334155;
}

.techtaranga-ticker-title {
    color: #ffffff;
    padding: 4px 14px;
    font-weight: 700;
    font-size: 16px;
    background: #008060;
    border-radius: 4px;
    margin-right: 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.techtaranga-ticker {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.techtaranga-ticker ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}

.techtaranga-ticker ul li {
    display: inline-block;
    margin-right: 25px;
}

.techtaranga-ticker .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.techtaranga-ticker .ticker-item a {
    color: #222222;
    font-weight: 600;
    font-size: 15.5px;
    text-decoration: none;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .techtaranga-ticker .ticker-item a {
    color: #f1f5f9;
}

.techtaranga-ticker .ticker-item a:hover {
    color: var(--tt_primary_color);
}

.techtaranga-ticker .ticker_icon {
    color: var(--tt_primary_color);
    font-size: 14px;
}

/* Titles */
.techtaranga-ntitle {
    font-family: 'Noto Serif Bengali', serif !important;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.techtaranga-ntitle a {
    color: #1a1a1a;
    text-decoration: none;
}

body.dark-mode .techtaranga-ntitle a {
    color: #f8fafc;
}

.techtaranga-ntitle a:hover {
    color: var(--tt_primary_color);
}

.techtaranga-ntitle-1 {
    font-family: 'Noto Serif Bengali', serif !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

.techtaranga-ntitle-1 a {
    color: #1a1a1a;
    text-decoration: none;
}

body.dark-mode .techtaranga-ntitle-1 a {
    color: #f8fafc;
}

.techtaranga-ntitle-1 a:hover {
    color: var(--tt_primary_color);
}

.lead-category-prefix {
    color: #c80000;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Noto Serif Bengali', serif !important;
    margin-bottom: 4px;
    display: inline-block;
}

/* Excerpts & Summaries */
.summery-2 {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.dark-mode .summery-2 {
    color: #94a3b8;
}

/* Separators */
.news-separator-vertical-border {
    border-right: 1px solid #e5e7eb;
}

body.dark-mode .news-separator-vertical-border {
    border-right-color: #334155;
}

@media (max-width: 767.98px) {
    .news-separator-vertical-border {
        border-right: none;
    }
}

.news-separator-horizontal-border {
    border-top: none;
}

body.dark-mode .news-separator-horizontal-border {
    border-top-color: #334155;
}

/* National Section 720x90 Fixed Banner Ad */
.asian-national-fixed-ad {
    width: 100% !important;
    max-width: 720px !important;
    height: 90px !important;
    max-height: 90px !important;
    overflow: hidden !important;
    margin: 12px auto 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.asian-national-fixed-ad .container-bn,
.asian-national-fixed-ad .bn-content,
.asian-national-fixed-ad .bn-inner,
.asian-national-fixed-ad .asian-google-ad,
.asian-national-fixed-ad .asian-custom-ad {
    width: 100% !important;
    height: 90px !important;
    max-height: 90px !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.asian-national-fixed-ad img {
    width: 100% !important;
    max-width: 720px !important;
    height: 90px !important;
    max-height: 90px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

/* Sidebar Promo Cards */
.tt-sidebar-card {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px;
    background: #ffffff;
    margin-bottom: 15px;
    transition: box-shadow 0.2s;
    text-decoration: none;
    display: block;
}

body.dark-mode .tt-sidebar-card {
    background: #1e293b;
    border-color: #334155;
}

.tt-sidebar-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tt-sidebar-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.tt-sidebar-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .tt-sidebar-card-title {
    color: #f1f5f9;
}

.tt-sidebar-card:hover .tt-sidebar-card-title {
    color: var(--tt_primary_color);
}

/***************************************************
 @ Heading Postcards (Category Headers from Reference Site)
 *****************************************************/
/***************************************************
 @ Heading Postcards (Category Headers Across Homepage)
 *****************************************************/
.heading-postcard {
    margin-bottom: 16px;
    position: relative;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
}

body.dark-mode .heading-postcard {
    border-bottom-color: #334155;
}

.heading-postcard::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--tt_primary_color, #dc2626);
    border-radius: 3px 3px 0 0;
}

.heading-postcard h2 {
    font-size: 25px !important;
    font-weight: 700 !important;
    margin: 0;
    line-height: 1.25;
    color: #0f172a !important;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .heading-postcard h2,
body.dark-mode .heading-postcard h2 a,
body.dark-mode .heading-postcard h2 span,
body.dark-mode .heading-postcard h2 .hp-name {
    color: #f8fafc !important;
}

.heading-postcard h2 a,
.heading-postcard h2 span,
.heading-postcard h2 .hp-name,
.category-main-title {
    color: #0f172a !important;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center !important;
}

.heading-postcard h2 a::before,
.heading-postcard h2 span.hp-name::before,
.heading-postcard h2 span::before,
.category-main-title::before {
    content: "" !important;
    display: inline-block !important;
    width: 5px !important;
    height: 22px !important;
    background: var(--tt_primary_color, #dc2626) !important;
    margin-right: 10px !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

/* "আরো >" Link - Pure Text Style */
.heading-postcard .indicator-hp {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #555555 !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    transition: color 0.2s ease;
    font-family: 'Noto Serif Bengali', serif !important;
}

.heading-postcard .indicator-hp:hover {
    color: var(--tt_primary_color, #dc2626) !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.heading-postcard .indicator-hp i {
    font-size: 11px;
    color: #888888 !important;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.heading-postcard .indicator-hp:hover i {
    opacity: 1;
    color: var(--tt_primary_color, #dc2626) !important;
    transform: translateX(3px);
}

body.dark-mode .heading-postcard .indicator-hp {
    background: none !important;
    color: #94a3b8 !important;
    border: none !important;
}

body.dark-mode .heading-postcard .indicator-hp i {
    color: #64748b !important;
    opacity: 0.7;
}

body.dark-mode .heading-postcard .indicator-hp:hover {
    color: var(--tt_primary_color, #dc2626) !important;
}

body.dark-mode .heading-postcard .indicator-hp:hover i {
    opacity: 1;
    color: var(--tt_primary_color, #dc2626) !important;
}

/* All Header Variations Standardized */
.heading-postcard.hp-1,
.heading-postcard.hp-2,
.heading-postcard.hp-modern {
    position: relative;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

body.dark-mode .heading-postcard.hp-1,
body.dark-mode .heading-postcard.hp-2,
body.dark-mode .heading-postcard.hp-modern {
    border-bottom-color: #334155;
}

@media (max-width: 576px) {
    .heading-postcard h2 {
        font-size: 21px !important;
    }
    .heading-postcard h2 a::before,
    .heading-postcard h2 span.hp-name::before,
    .heading-postcard h2 span::before,
    .category-main-title::before {
        height: 18px !important;
    }
}


/***************************************************
 @ Category Navigator & Opinion Blocks
 *****************************************************/
.techtaranga_cnevigator {
    position: relative;
    height: 1px;
    width: 100%;
    background: #e2e2e2;
    margin-top: 15px;
    margin-bottom: 10px;
}

body.dark-mode .techtaranga_cnevigator {
    background: #334155;
}

.techtaranga_cnevigator a {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 10px;
    color: #4b5563;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .techtaranga_cnevigator a {
    background: #1e293b;
    color: #cbd5e1;
}

.techtaranga_cnevigator a:hover {
    color: var(--tt_primary_color);
}

body.dark-mode .asian-notice-box-style {
    background: #1e293b !important;
    border-color: #334155 !important;
}

body.dark-mode .asian-health-box-style {
    background: #064e3b !important;
    border-color: #047857 !important;
}

body.dark-mode .asian-cat-econ {
    background: #451a03 !important;
    border-color: #78350f !important;
}

body.dark-mode .asian-cat-tech {
    background: #082f49 !important;
    border-color: #0c4a6e !important;
}

body.dark-mode .asian-cat-life {
    background: #4c0519 !important;
    border-color: #881337 !important;
}

body.dark-mode .asian-cat-edu {
    background: #3b0764 !important;
    border-color: #581c87 !important;
}

body.dark-mode .asian-national-box-style {
    border-color: #334155 !important;
}

.techtataranga_opinion2 {
    border: 3px solid #f0dede;
    border-radius: 8px;
    padding: 24px 14px 14px 14px;
    position: relative;
    background: #ffffff;
}

body.dark-mode .techtataranga_opinion2 {
    background: #1e293b;
    border-color: #334155;
}

.techtataranga_opinion2 .opinion_title {
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: -16px;
    left: 16px;
    padding: 0 10px;
    background: #ffffff;
    color: var(--tt_primary_color);
    text-decoration: none;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .techtataranga_opinion2 .opinion_title {
    background: #1e293b;
}

/***************************************************
 @ Tabbed Widget (জনপ্রিয় & সর্বশেষ)
 *****************************************************/
.ps-most-populler.ps-most-populler-3 .nav-pills .nav-item {
    width: 50%;
    text-align: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

body.dark-mode .ps-most-populler.ps-most-populler-3 .nav-pills .nav-item {
    background: #0f172a;
    border-color: #334155;
}

.ps-most-populler.ps-most-populler-3 .nav-pills .nav-item.active,
.ps-most-populler.ps-most-populler-3 .nav-pills .nav-link.active {
    background: #ffffff !important;
    border-bottom: 2px solid var(--tt_primary_color) !important;
    color: var(--tt_primary_color) !important;
}

body.dark-mode .ps-most-populler.ps-most-populler-3 .nav-pills .nav-item.active,
body.dark-mode .ps-most-populler.ps-most-populler-3 .nav-pills .nav-link.active {
    background: #1e293b !important;
}

.ps-most-populler.ps-most-populler-3 .nav-pills .nav-link {
    font-size: 16px;
    font-weight: 700;
    color: #475569;
    padding: 8px 12px;
    border-radius: 0;
    font-family: 'Noto Serif Bengali', serif !important;
}

.ps-most-populler.ps-most-populler-3 .tab-content {
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-top: none;
    background: #ffffff;
}

body.dark-mode .ps-most-populler.ps-most-populler-3 .tab-content {
    background: #1e293b;
    border-color: #334155;
}

.techtaranga-recent-btn-1 {
    display: block;
    background: #f4f4f4;
    width: 80%;
    margin: auto;
    border-radius: 4px;
    text-align: center;
    padding: 3px 5px;
    font-size: 17px;
    font-weight: 700;
    margin-top: -16px;
    color: #1e293b;
    text-decoration: none;
    border: 1px solid #e2e2e2;
    font-family: 'Noto Serif Bengali', serif !important;
}

body.dark-mode .techtaranga-recent-btn-1 {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

/***************************************************
 @ Video Block Styles
 *****************************************************/
.techtaranga_video_2 {
    background: #011200 !important;
    border-radius: 8px;
    overflow: hidden;
}

.techtaranga_svdo {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.techtaranga_svdo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.techtaranga_svdo:hover img {
    transform: scale(1.03);
}

.techtaranga_svdo span {
    position: absolute;
    bottom: 12px;
    font-size: 12px;
    left: 14px;
    color: #ffffff;
    text-shadow: 1px 1px 4px #000;
}

.techtaranga_svdo .play_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 28px;
    transform: translate(-50%, -50%);
    color: #ffffff;
    height: 48px;
    width: 48px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.techtaranga_svdo:hover .play_icon {
    background: var(--tt_primary_color);
    border-color: var(--tt_primary_color);
}

/***************************************************
 @ Country / District Filter Bar
 *****************************************************/
.techtaranga_country_news {
    display: flex;
    background: #f1f5f9;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

body.dark-mode .techtaranga_country_news {
    background: #1e293b;
    border-color: #334155;
}

.techtaranga_country_news .techtaranga_sc {
    width: 20%;
}

@media (max-width: 767.98px) {
    .techtaranga_country_news {
        display: block;
    }

    .techtaranga_country_news .techtaranga_sc {
        width: 100%;
    }
}

.techtaranga_country_news h3 {
    font-family: 'Noto Serif Bengali', serif !important;
}

/***************************************************
 @ Clean Image Styles & No Zoom Effects (News Portal Standard)
 *****************************************************/
.prothom-songbad-post-style {
    text-decoration: none !important;
}

.prothom-songbad-post-style .ps-post-line-img,
.ps-post-line-img,
img,
.card img,
.news-item img,
.post-item img,
a img,
a:hover img,
.prothom-songbad-post-style:hover .ps-post-line-img,
.techtaranga_ps_2:hover img,
.cat-list-item:hover img,
.cat-right-list-item:hover img,
.asian-editorial-card:hover img {
    transform: none !important;
    transition: none !important;
}

.prothom-songbad-post-style h2,
.prothom-songbad-post-style h3 {
    transition: color 0.15s ease;
    font-family: 'Noto Serif Bengali', serif !important;
}

.prothom-songbad-post-style:hover h2,
.prothom-songbad-post-style:hover h3 {
    color: var(--vr-theme-color, #16a34a) !important;
}

body.dark-mode .prothom-songbad-post-style h2,
body.dark-mode .prothom-songbad-post-style h3 {
    color: #f3f4f6 !important;
}

body.dark-mode .prothom-songbad-post-style:hover h2,
body.dark-mode .prothom-songbad-post-style:hover h3 {
    color: #34d399 !important;
}

body.dark-mode .prothom-songbad-post-style p {
    color: #9ca3af !important;
}

.techtaranga_ps_2 {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.techtaranga_ps_2 img {
    transition: transform 0.3s;
}

.techtaranga_ps_2:hover img {
    transform: scale(1.04);
}

.techtaranga_ps_2 .techtaranga-ntitle-1,
.techtaranga_ps_2 .techtaranga-ntitle-2 {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    padding: 16px;
    color: #ffffff;
    font-family: 'Noto Serif Bengali', serif !important;
}

.title-2 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.title-3 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/***************************************************
 @ Container Width & Side Margins (Balanced desktop spacing & breathing room - 1460px)
 *****************************************************/
@media (min-width: 1400px) {

    .container,
    .container-xl,
    .container-xxl,
    .container-lg,
    .container-md {
        max-width: 1460px !important;
        width: 100% !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {

    .container,
    .container-xl,
    .container-lg,
    .container-md {
        max-width: 1300px !important;
    }
}

/***************************************************
 @ Minimal Image Curves (Global border-radius reduction across the site)
 *****************************************************/
img,
.rounded-2,
.rounded-3,
.rounded-4,
.rounded-5,
.rounded,
.img-fluid,
.post-item img,
.tt-sidebar-card img,
.techtaranga_ps_2 img,
.techtaranga_svdo img,
.ps-post-line-img,
.section img,
.news-item img,
.card-img,
.card-img-top {
    border-radius: 3px !important;
}

/* Maintain circular shape for avatars */
.rounded-circle,
img.rounded-circle,
.avatar,
.user-avatar,
.author-avatar img {
    border-radius: 50% !important;
}

/***************************************************
 @ Tabbed Sidebar Widget (Exact Match to Section 2 Homepage Header)
 *****************************************************/
.asian-sidebar-tabs {
    background: #ffffff;
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;
}

body.dark-mode .asian-sidebar-tabs {
    background: #1e293b;
}

.asian-sidebar-tabs .asian-tab-header {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
    padding: 0;
    list-style: none;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    border-radius: 0;
}

body.dark-mode .asian-sidebar-tabs .asian-tab-header {
    background: #0f172a;
    border-color: #334155;
}

.asian-sidebar-tabs .asian-tab-header .nav-item {
    flex: 1;
    width: 50%;
    margin: 0;
    text-align: center;
    background: #f1f5f9;
    transition: all 0.2s ease;
}

body.dark-mode .asian-sidebar-tabs .asian-tab-header .nav-item {
    background: #0f172a;
}

.asian-sidebar-tabs .asian-tab-header .nav-link {
    display: block;
    width: 100%;
    background: transparent;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    color: #475569 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 8px 12px !important;
    cursor: pointer;
    border-radius: 0 !important;
    font-family: 'Noto Serif Bengali', serif !important;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
}

body.dark-mode .asian-sidebar-tabs .asian-tab-header .nav-link {
    color: #94a3b8 !important;
}

.asian-sidebar-tabs .asian-tab-header .nav-item.active,
.asian-sidebar-tabs .asian-tab-header .nav-link.active,
.asian-sidebar-tabs .asian-tab-header .nav-item.active .nav-link {
    background: #ffffff !important;
    border-bottom: 3px solid var(--tt_primary_color, #006a4e) !important;
    color: var(--tt_primary_color, #006a4e) !important;
}

body.dark-mode .asian-sidebar-tabs .asian-tab-header .nav-item.active,
body.dark-mode .asian-sidebar-tabs .asian-tab-header .nav-link.active,
body.dark-mode .asian-sidebar-tabs .asian-tab-header .nav-item.active .nav-link {
    background: #1e293b !important;
    color: var(--tt_primary_color, #006a4e) !important;
}

.asian-sidebar-tabs .asian-tab-header .nav-link:hover:not(.active) {
    color: var(--tt_primary_color, #006a4e) !important;
}


.asian-news-list {
    display: flex;
    flex-direction: column;
    padding: 0 2px;
}

.asian-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

body.dark-mode .asian-news-item {
    border-bottom-color: #334155;
}

.asian-news-item:last-child {
    border-bottom: none;
}

/***************************************************
 @ Circular Number Badge for Sidebar List (Screenshot 1 Match)
 *****************************************************/
.asian-news-counter {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50% !important;
    background-color: #f1f3f5;
    color: #0f172a;
    font-size: 19.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Noto Serif Bengali', serif !important;
    line-height: 1;
    margin: 0;
    padding-top: 1px;
}

body.dark-mode .asian-news-counter {
    background-color: #334155;
    color: #f8fafc;
}

.asian-news-item .techtaranga-ntitle-1 {
    flex: 1;
    min-width: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.asian-news-item .techtaranga-ntitle-1 a {
    color: #0f172a;
    font-weight: 700;
}

body.dark-mode .asian-news-item .techtaranga-ntitle-1 a {
    color: #f8fafc;
}

/* Category Prefix Styling for Slider Lead */
.lead-category-prefix {
    font-weight: 900 !important;
    font-size: 26px !important;
    line-height: 1.1 !important;
    display: block;
    margin-bottom: 6px;
}

/* Slider Bottom 2 Cards Equal Height & Single Line Title */
.lead2-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    line-clamp: 1;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: 1.4em !important;
    line-height: 1.4em !important;
    margin-bottom: 4px !important;
}

.lead2-summary {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: 2.8em !important;
    line-height: 1.4em !important;
    font-size: 13px !important;
    color: #64748b !important;
}

/* Left Stacked 6 News Items Title Styling */
.lead-left-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Sidebar Ad Clean Styling - 1:1 Square Ratio Format */
.asian-sidebar-ad {
    width: 100% !important;
}

.asian-sidebar-ad.container,
.asian-sidebar-ad.container-bn {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.asian-sidebar-ad .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.asian-sidebar-ad .bn-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.asian-sidebar-ad .asian-custom-ad img,
.asian-sidebar-ad .asian-custom-ad a img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

/* Horizontal Banner Ads (Header, Main Slider Index Top, etc.) */
.asian-banner-ad {
    width: 100% !important;
}

.asian-banner-ad.container,
.asian-banner-ad.container-bn {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.asian-banner-ad .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.asian-banner-ad .bn-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.asian-banner-ad .asian-custom-ad img,
.asian-banner-ad .asian-custom-ad a img {
    width: 100% !important;
    height: auto !important;
    max-height: 140px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

/* Fixed Post Top Ad Container (Single Post Page under Featured Image) */
.asian-post-top-ad {
    margin-top: 6px !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.asian-post-top-ad.container,
.asian-post-top-ad.container-bn {
    margin-top: 6px !important;
    margin-bottom: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.asian-post-top-ad .row {
    margin: 0 !important;
}

.asian-post-top-ad .bn-content {
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.asian-post-top-ad .bn-inner {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
}

.asian-post-top-ad .asian-custom-ad,
.asian-post-top-ad .asian-google-ad {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
}

.asian-post-top-ad .asian-custom-ad img,
.asian-post-top-ad .asian-custom-ad a img {
    width: 100% !important;
    height: auto !important;
    max-height: 95px !important;
    object-fit: contain !important;
    border-radius: 4px;
    margin: 0 auto !important;
    display: block !important;
}

@media (max-width: 768px) {

    .asian-post-top-ad .asian-custom-ad img,
    .asian-post-top-ad .asian-custom-ad a img {
        max-height: 70px !important;
    }
}

/* Post Summary & Content Tight Spacing */
.post-summary {
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
    color: #1e293b !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
}

body.dark-mode .post-summary {
    color: #f1f5f9 !important;
}

/***************************************************
 @ Web Story Card Layout (Homepage Grid & Lists)
 *****************************************************/
.bgz-story-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    transition: none !important;
}

.bgz-story-card:hover {
    transform: none !important;
}

.bgz-story-ring {
    position: relative;
    padding: 3px;
    border-radius: 4px !important;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    aspect-ratio: 9 / 16;
}

.bgz-story-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 3px !important;
    overflow: hidden;
    background: #0f172a;
}

.bgz-story-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none !important;
}

.bgz-story-card:hover .bgz-story-thumb {
    transform: none !important;
}

.bgz-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.bgz-story-play-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.9);
    color: #dc2743;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.bgz-story-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1e293b;
    margin-top: 8px;
    margin-bottom: 2px;
    line-height: 1.35 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.techtaranga_video_2 .bgz-story-title {
    color: #ffffff !important;
}

.bgz-story-card:hover .bgz-story-title {
    color: var(--vr-theme-color, #059669) !important;
}

.bgz-story-views {
    font-size: 12px;
    color: #64748b;
}

.techtaranga_video_2 .bgz-story-views {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Inside Overlay Title & View Badge */
.bgz-story-views-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff !important;
    padding: 2px 7px;
    border-radius: 4px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(2px);
}

.bgz-story-bottom-content {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    z-index: 3;
}

.bgz-story-title-overlay {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.35 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Mobile Web Story Touch Slider (1 story full visible + half of next visible) */
@media (max-width: 767.98px) {
    .bgz-stories-slider-wrap {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        gap: 12px;
        margin-left: -4px !important;
        margin-right: -4px !important;
        padding-left: 6px;
        padding-right: 6px;
        scrollbar-width: none;
    }

    .bgz-stories-slider-wrap::-webkit-scrollbar {
        display: none;
    }

    .bgz-stories-slider-wrap .bgz-story-col {
        flex: 0 0 64% !important;
        max-width: 64% !important;
        width: 64% !important;
        scroll-snap-align: start;
    }
}

/* Tablet Web Story Layout */
@media (min-width: 768px) and (max-width: 991.98px) {
    .bgz-stories-slider-wrap {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        gap: 12px;
        scrollbar-width: none;
    }

    .bgz-stories-slider-wrap::-webkit-scrollbar {
        display: none;
    }

    .bgz-stories-slider-wrap .bgz-story-col {
        flex: 0 0 31% !important;
        max-width: 31% !important;
        width: 31% !important;
        scroll-snap-align: start;
    }
}

/* Disable all image hover zoom effects */
img,
a img,
.card img,
.asian-editorial-card img,
.ps-post-line-img img,
.post-item img {
    transform: none !important;
    transition: none !important;
}

img:hover,
a:hover img,
.card:hover img,
.asian-editorial-card:hover img,
.ps-post-line-img:hover img,
.post-item:hover img {
    transform: none !important;
    transition: none !important;
}

/* Global Breadcrumb Styling (Matching Single Post Page) */
.post-header-top {
    margin-top: 4px;
    margin-bottom: 12px;
}

.post-breadcrumb-nav {
    display: inline-flex;
    align-items: center;
}

.post-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    font-size: 14.5px;
    line-height: 1.4;
}

.post-breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    padding: 0;
}

.post-breadcrumb .breadcrumb-item::before {
    display: none !important;
}

.post-breadcrumb .breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-breadcrumb .breadcrumb-home:hover {
    color: #008037 !important;
}

.post-breadcrumb .home-icon {
    margin-bottom: 2px;
    fill: currentColor;
}

.post-breadcrumb .breadcrumb-sep {
    color: #cbd5e1;
    font-size: 13px;
    margin-right: 8px;
    user-select: none;
}

.post-breadcrumb .breadcrumb-category {
    display: inline-flex;
    align-items: center;
    color: #008037 !important;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 14px;
    padding: 2px 10px;
    background: rgba(0, 128, 55, 0.08) !important;
    border: 1px solid rgba(0, 128, 55, 0.2) !important;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.post-breadcrumb .breadcrumb-category span {
    color: inherit !important;
}

.post-breadcrumb .breadcrumb-category:hover,
.post-breadcrumb .breadcrumb-category:focus {
    background: #008037 !important;
    color: #ffffff !important;
    border-color: #008037 !important;
}

.post-breadcrumb .breadcrumb-category:hover span,
.post-breadcrumb .breadcrumb-category:focus span {
    color: #ffffff !important;
}

/* ==========================================================================
   Asian Custom Pager (Next / Previous Navigation)
   ========================================================================== */
.asian-custom-pager {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.asian-pager-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.asian-pager-col {
    display: flex;
    align-items: center;
}

.asian-pager-left {
    justify-content: flex-start;
}

.asian-pager-right {
    justify-content: flex-end;
}

.btn-asian-pager {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 22px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff !important;
    background-color: var(--vr-theme-color, #008037);
    border: 1px solid var(--vr-theme-color, #008037);
    border-radius: 3px;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.btn-asian-pager:hover {
    background-color: #00662c;
    border-color: #00662c;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.btn-asian-pager-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 22px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #94a3b8 !important;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    cursor: not-allowed;
    user-select: none;
    box-shadow: none;
}

.dark-mode .btn-asian-pager-disabled {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #64748b !important;
}

.pager-icon {
    flex-shrink: 0;
}

.btn-asian-pager-prev .pager-icon {
    margin-right: 6px;
}

.btn-asian-pager-next .pager-icon {
    margin-left: 6px;
}

/* ==========================================================================
   Unified Comment & Emoji Reaction Card (Asian Somoy Brand Match)
   ========================================================================== */
.unified-comment-reaction-box {
    background-color: #fff9f8;
    border: 1px solid #fee2e2;
    border-top: 4px solid #c81e1e;
    border-radius: 8px;
    padding: 24px 22px 20px;
    margin: 28px 0;
    box-shadow: 0 2px 10px rgba(200, 30, 30, 0.03);
    font-family: 'SolaimanLipi', var(--vr-font-family, sans-serif);
}

.dark-mode .unified-comment-reaction-box {
    background-color: #1a2234;
    border-color: #334155;
    border-top-color: #ef4444;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Emoji Reactions Row & Item Overrides */
.unified-comment-reaction-box .emoji-reactions,
.unified-comment-reaction-box .ucr-reactions-list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 14px 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

@media (max-width: 576px) {

    .unified-comment-reaction-box .emoji-reactions,
    .unified-comment-reaction-box .ucr-reactions-list {
        gap: 10px 12px !important;
    }
}

.unified-comment-reaction-box .reaction-container,
.unified-comment-reaction-box .ucr-reaction-col {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

.unified-comment-reaction-box .emoji-reactions .reaction,
.unified-comment-reaction-box .ucr-reaction-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    padding: 2px 4px !important;
    border-radius: 0 !important;
    width: auto !important;
    min-width: 44px !important;
    transition: none !important;
    transform: none !important;
    user-select: none !important;
}

.unified-comment-reaction-box .ucr-reaction-btn:hover {
    transform: none !important;
}

.unified-comment-reaction-box .ucr-emoji-wrapper {
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: none !important;
    transform: none !important;
    margin: 0 auto !important;
}

.dark-mode .unified-comment-reaction-box .ucr-emoji-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.unified-comment-reaction-box .ucr-reaction-btn:hover .ucr-emoji-wrapper {
    background: transparent !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.dark-mode .unified-comment-reaction-box .ucr-reaction-btn:hover .ucr-emoji-wrapper {
    background: transparent !important;
    border: none !important;
}

.unified-comment-reaction-box .ucr-reaction-btn.selected .ucr-emoji-wrapper {
    background: transparent !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.dark-mode .unified-comment-reaction-box .ucr-reaction-btn.selected .ucr-emoji-wrapper {
    background: transparent !important;
    border: none !important;
}

/* Sized & clean transparent emoji (36px, zero hover transform/jump) */
.unified-comment-reaction-box .emoji-reactions .emoji,
.unified-comment-reaction-box .emoji,
.unified-comment-reaction-box .ucr-emoji-img {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    background: transparent !important;
    transition: none !important;
    transform: none !important;
}

.unified-comment-reaction-box .ucr-reaction-btn:hover .ucr-emoji-img {
    transform: none !important;
}

.unified-comment-reaction-box .ucr-vote-percent {
    margin-top: 4px !important;
    font-family: 'SolaimanLipi', var(--vr-font-family, sans-serif) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    letter-spacing: -0.2px !important;
    display: block !important;
    line-height: 1.2 !important;
}

.dark-mode .unified-comment-reaction-box .ucr-vote-percent {
    color: #e2e8f0 !important;
}

/* Comments Section Header & Title */
.ucr-comments-section-header {
    border-top: 1px solid #fee2e2;
    padding-top: 14px;
    margin-top: 14px;
    margin-bottom: 12px;
}

.dark-mode .ucr-comments-section-header {
    border-top-color: #334155;
}

.ucr-comments-title {
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #c81e1e !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dark-mode .ucr-comments-title {
    color: #f87171 !important;
}

/* Guest Login Prompt Box */
.ucr-guest-login-box {
    background: #fff8f8;
    border: 1px dashed #fca5a5;
    border-radius: 6px;
    padding: 18px 16px;
    margin: 14px 0 16px;
    text-align: center;
}

.dark-mode .ucr-guest-login-box {
    background: #1e293b;
    border-color: #475569;
}

.ucr-guest-login-text {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.dark-mode .ucr-guest-login-text {
    color: #cbd5e1;
}

.ucr-guest-login-link {
    color: #c81e1e !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    cursor: pointer;
    transition: color 0.15s;
}

.ucr-guest-login-link:hover {
    color: #a51818 !important;
}

.dark-mode .ucr-guest-login-link {
    color: #f87171 !important;
}

/* Comment Input Area - Inline Layout */
.ucr-input-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ucr-user-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: 1.5px solid #fee2e2;
    background: #e2e8f0;
}

.dark-mode .ucr-user-avatar {
    border-color: #475569;
    background: #334155;
}

.ucr-form-container {
    flex-grow: 1;
}

.ucr-comment-form-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.ucr-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    flex-grow: 1;
    height: 42px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dark-mode .ucr-input-wrapper {
    background: #0f172a;
    border-color: #334155;
}

.ucr-input-wrapper:focus-within {
    border-color: #c81e1e;
    box-shadow: 0 0 0 3px rgba(200, 30, 30, 0.15);
}

.ucr-input-inline {
    width: 100%;
    height: 40px !important;
    border: none !important;
    background: transparent !important;
    padding: 6px 38px 6px 14px !important;
    font-size: 14.5px !important;
    color: #1e293b !important;
    outline: none !important;
    box-shadow: none !important;
}

.dark-mode .ucr-input-inline {
    color: #f1f5f9 !important;
}

.ucr-input-inline::placeholder {
    color: #94a3b8;
}

.ucr-emoji-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #94a3b8;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ucr-post-btn {
    background-color: #c81e1e !important;
    border-color: #c81e1e !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    height: 42px !important;
    padding: 0 20px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.15s ease-in-out;
}

.ucr-post-btn:hover {
    background-color: #a51818 !important;
    border-color: #a51818 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(200, 30, 30, 0.25);
}

/* Comments list inside box - Compact Clean Styling */
.ucr-comments-container {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #fee2e2;
}

.dark-mode .ucr-comments-container {
    border-top-color: #334155;
}

.unified-comment-reaction-box .comments .comment-total .label-comment {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #c81e1e !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.dark-mode .unified-comment-reaction-box .comments .comment-total .label-comment {
    color: #f87171 !important;
}

.unified-comment-reaction-box .comment-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.unified-comment-reaction-box .comment-list>li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #f8fafc !important;
    list-style: none !important;
}

.unified-comment-reaction-box .comment-list>li:last-child {
    border-bottom: none !important;
}

.dark-mode .unified-comment-reaction-box .comment-list>li {
    border-bottom-color: #1e293b !important;
}

.unified-comment-reaction-box .comment-list li .left {
    flex-shrink: 0 !important;
    width: 36px !important;
    height: 36px !important;
}

.unified-comment-reaction-box .comment-list li .left img {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    border: 1px solid #e2e8f0 !important;
    background: #f1f5f9 !important;
}

.dark-mode .unified-comment-reaction-box .comment-list li .left img {
    border-color: #334155 !important;
    background: #1e293b !important;
}

.unified-comment-reaction-box .comment-list li .right {
    flex-grow: 1 !important;
    min-width: 0 !important;
}

.unified-comment-reaction-box .comment-list li .username {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
    display: inline-block !important;
    margin-bottom: 2px !important;
}

.dark-mode .unified-comment-reaction-box .comment-list li .username {
    color: #f1f5f9 !important;
}

.unified-comment-reaction-box .comment-list li .comment {
    font-size: 14px !important;
    color: #334155 !important;
    line-height: 1.45 !important;
    margin-bottom: 5px !important;
    word-break: break-word !important;
}

.dark-mode .unified-comment-reaction-box .comment-list li .comment {
    color: #cbd5e1 !important;
}

.unified-comment-reaction-box .comment-meta {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 12px !important;
    color: #64748b !important;
}

.dark-mode .unified-comment-reaction-box .comment-meta {
    color: #94a3b8 !important;
}

.unified-comment-reaction-box .comment-meta a {
    color: #64748b !important;
    text-decoration: none !important;
    font-size: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.unified-comment-reaction-box .comment-meta a:hover {
    color: #c81e1e !important;
}

.dark-mode .unified-comment-reaction-box .comment-meta a:hover {
    color: #f87171 !important;
}

.unified-comment-reaction-box .comment-meta .btn-delete-comment {
    color: #ef4444 !important;
}

.ucr-no-comments {
    color: #64748b;
    font-size: 14.5px;
    text-align: center;
}

.dark-mode .ucr-no-comments {
    color: #94a3b8;
}

/* ===================================================
   Sidebar Widgets Styling (Heading Bar, More Link, Post Dividers)
   =================================================== */
.sidebar-widget {
    margin-bottom: 28px;
}

.sidebar-widget .heading-postcard.hp-1,
.sidebar-widget .heading-postcard {
    margin-bottom: 16px;
    position: relative;
    border-bottom: 2px solid #e2e8f0 !important;
    padding-bottom: 8px;
}

body.dark-mode .sidebar-widget .heading-postcard.hp-1,
body.dark-mode .sidebar-widget .heading-postcard {
    border-bottom-color: #334155 !important;
}

.sidebar-widget .heading-postcard h2 {
    font-size: 22px !important;
    font-weight: 700;
    margin: 0;
    font-family: 'Noto Serif Bengali', serif !important;
}

.sidebar-widget .heading-postcard h2 .hp-name {
    display: inline-flex !important;
    align-items: center !important;
}

.sidebar-widget .heading-postcard h2 .hp-name::before {
    content: "" !important;
    display: inline-block !important;
    width: 5px !important;
    height: 18px !important;
    background-color: var(--tt_primary_color, #dc2626) !important;
    margin-right: 8px !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

.sidebar-widget .indicator-hp {
    font-size: 14.5px !important;
    color: var(--tt_primary_color, #dc2626) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: transform 0.2s ease;
}

.sidebar-widget .indicator-hp:hover {
    color: #b91c1c !important;
    transform: translateX(3px);
}

.sidebar-widget .sidebar-post-item-wrap {
    padding-bottom: 8px !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid #e9ecef !important;
}

.sidebar-widget .sidebar-post-item-wrap:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Sidebar Post Item (Smaller Thumbnail, Larger 2-Line Title, Reporter Meta) */
.sidebar-widget .post-item-small {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.sidebar-widget .post-item-small .tbl-cell.left {
    display: block !important;
    flex: 0 0 92px !important;
    width: 92px !important;
    max-width: 92px !important;
    padding: 0 !important;
}

.sidebar-widget .post-item-small .tbl-cell.left .image {
    width: 92px !important;
    height: 66px !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    background-color: #f1f5f9 !important;
}

.sidebar-widget .post-item-small .tbl-cell.left .image img {
    width: 92px !important;
    height: 66px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 4px !important;
}

.sidebar-widget .post-item-small .tbl-cell.right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: 1 1 auto !important;
    padding-left: 0 !important;
    min-width: 0 !important;
}

.sidebar-widget .post-item-small .title,
.sidebar-widget .post-item-small .title a {
    font-size: 18.5px !important;
    line-height: 1.32 !important;
    font-weight: 700 !important;
    margin: 0 0 3px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color: #1a1a1a !important;
    font-family: 'Noto Serif Bengali', serif !important;
    text-decoration: none !important;
}

.sidebar-widget .post-item-small .title a:hover {
    color: var(--tt_primary_color, #dc2626) !important;
}

.sidebar-widget .post-item-small .small-post-meta {
    margin: 0 !important;
    font-size: 12.5px !important;
    color: #64748b !important;
    line-height: 1.2 !important;
}

.sidebar-widget .post-item-small .small-post-meta .post-meta-date {
    display: none !important;
}

.sidebar-widget .post-item-small .small-post-meta .a-username {
    font-size: 12.5px !important;
    color: #64748b !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.sidebar-widget .post-item-small .small-post-meta .a-username i {
    color: var(--tt_primary_color, #dc2626) !important;
    font-size: 11.5px !important;
}

body.dark-mode .sidebar-widget .sidebar-post-item-wrap {
    border-bottom-color: #334155 !important;
}

body.dark-mode .sidebar-widget .heading-postcard h2 .hp-name {
    color: #f8fafc !important;
}

body.dark-mode .sidebar-widget .indicator-hp {
    color: #ef4444 !important;
}

body.dark-mode .sidebar-widget .post-item-small .title,
body.dark-mode .sidebar-widget .post-item-small .title a {
    color: #f1f5f9 !important;
}

body.dark-mode .sidebar-widget .post-item-small .title a:hover {
    color: #f87171 !important;
}

body.dark-mode .sidebar-widget .post-item-small .small-post-meta,
body.dark-mode .sidebar-widget .post-item-small .small-post-meta .a-username {
    color: #94a3b8 !important;
}

/* ===================================================
   Sidebar Ad Space: Fill 100% Column Width
   =================================================== */
.sidebar-widget .asian-sidebar-ad,
.col-sidebar .asian-sidebar-ad,
.asian-sidebar-ad {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.sidebar-widget .asian-sidebar-ad .row,
.col-sidebar .asian-sidebar-ad .row,
.asian-sidebar-ad .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.sidebar-widget .asian-sidebar-ad .bn-content,
.col-sidebar .asian-sidebar-ad .bn-content,
.asian-sidebar-ad .bn-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sidebar-widget .asian-sidebar-ad .bn-inner,
.col-sidebar .asian-sidebar-ad .bn-inner,
.asian-sidebar-ad .bn-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 10px !important;
    margin: 0 auto !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

body.dark-mode .sidebar-widget .asian-sidebar-ad .bn-inner,
body.dark-mode .col-sidebar .asian-sidebar-ad .bn-inner,
body.dark-mode .asian-sidebar-ad .bn-inner {
    background: #1e293b !important;
    border-color: #334155 !important;
}

.asian-sidebar-ad .asian-custom-ad {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.asian-sidebar-ad .asian-custom-ad a {
    display: block !important;
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.asian-sidebar-ad .asian-custom-ad img {
    width: 100% !important;
    max-width: 350px !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 4px !important;
}

.asian-sidebar-ad .asian-google-ad {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    overflow: hidden !important;
}

.asian-sidebar-ad .asian-google-ad ins.adsbygoogle {
    display: block !important;
    margin: 0 auto !important;
}

/* Single Post & Category Layout Optimization (Main Content calc(100% - 400px) / Sidebar 400px) */
@media (min-width: 992px) {

    #postDetailsPage .col-post-content,
    #postDetailsPage .row>.col-lg-8,
    .category-page-section .category-main-col,
    .category-page-section .row>.col-lg-8 {
        width: calc(100% - 400px) !important;
        flex: 0 0 calc(100% - 400px) !important;
        max-width: calc(100% - 400px) !important;
    }

    #postDetailsPage .col-post-sidebar,
    #postDetailsPage .row>.col-lg-4,
    .category-page-section .category-sidebar-col,
    .category-page-section .row>.col-lg-4 {
        width: 400px !important;
        flex: 0 0 400px !important;
        max-width: 400px !important;
    }
}

/***************************************************
 * @ Clean Single Post Print Layout (লোগো + ডেট -> টাইটেল -> ফটো -> আর্টিকেল)
 ***************************************************/
@media print {

    /* Hide all layout wrappers, headers, sidebars, footers, ads, reactions, comments and widgets */
    header,
    footer,
    #header,
    #footer,
    nav,
    .top-bar,
    .tt_navbar,
    .nav-mobile,
    #navMobile,
    .col-post-sidebar,
    .sidebar,
    .post-header-top,
    .post-details-meta,
    .post-share-buttons,
    .post-share-wrap,
    .post-files,
    .post-tags,
    .post-next-prev,
    #postNextPrevContainer,
    .related-posts,
    .section-related-posts,
    .comments-area,
    .comment-section,
    .comments,
    #comment-result,
    .ucr-comments-container,
    .ucr-comments-section-header,
    .form-comment,
    #form_add_comment,
    .comment-box,
    .comment-list,
    .reactions-container,
    .emoji-reactions-container,
    .unified-comment-reaction-box,
    #unifiedCommentReactionBox,
    .ucr-reactions-container,
    #reactions_result,
    .emoji-reactions,
    .reactions,
    .audio-player-container,
    .ad-space,
    .banner-item,
    .asian-banner-ad,
    .asian-sidebar-ad,
    .asian-google-ad,
    .asian-custom-ad,
    .container-bn,
    .container-bn-ds,
    .container-bn-mb,
    .scrollup,
    .btn-edit-post,
    .floating-quick-access,
    .footer-top-section,
    .footer-copyright,
    .modal,
    .fb-comments,
    #div_fb_comments,
    .asian-breaking-news-box,
    .category-slider-box,
    .d-print-none,
    .d-print-none * {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* Print Only Header (লোগো, প্রতিনিধি ও প্রকাশের তারিখ) */
    .print-only-header {
        display: block !important;
        margin-bottom: 12px !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }

    .print-only-header .d-flex {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-bottom: 1.5px solid #000000 !important;
        padding-bottom: 8px !important;
    }

    .print-only-header img {
        height: 42px !important;
        width: auto !important;
        max-width: 200px !important;
        display: block !important;
    }

    .print-only-header .print-meta-text {
        font-size: 10pt !important;
        color: #333333 !important;
        line-height: 1.3 !important;
        text-align: right !important;
    }

    /* Print Watermark (প্রতিটি পৃষ্ঠার সেন্টারে হালকা অ্যাঙ্গেল লোগো জলছাপ - সব পেজে দৃশ্যমান) */
    .print-watermark {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 9999 !important;
        pointer-events: none !important;
        opacity: 0.05 !important;
        overflow: hidden !important;
    }

    .print-watermark img {
        width: 280px !important;
        max-width: 50% !important;
        height: auto !important;
        transform: rotate(-30deg) !important;
        filter: grayscale(100%) !important;
        display: block !important;
        margin: auto !important;
    }

    @page {
        margin: 0;
        size: auto;
    }

    body,
    html {
        background: #ffffff !important;
        color: #000000 !important;
        font-family: 'Noto Serif Bengali', 'SolaimanLipi', serif !important;
        font-size: 12pt !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        padding: 8mm 6mm 8mm 6mm !important;
        width: 100% !important;
    }

    .container,
    .container-fluid,
    .container-xl,
    .row,
    #postDetailsPage,
    .col-post-content,
    .post-content,
    .post-text,
    .post-summary,
    .post-image,
    .bgz-featured-post-image,
    .bgz-img-caption-box {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border: none !important;
        box-shadow: none !important;
        float: none !important;
        display: block !important;
        background: transparent !important;
        background-color: transparent !important;
    }

    .post-title {
        display: block !important;
        font-size: 19pt !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        color: #000000 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }

    .post-image,
    .bgz-featured-post-image {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        text-align: center !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }

    .post-image img,
    .bgz-featured-post-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: 280px !important;
        max-height: 320px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 !important;
        border: none !important;
    }

    .bgz-img-caption-box {
        display: flex !important;
        justify-content: space-between !important;
        font-size: 9.5pt !important;
        color: #475569 !important;
        margin-top: 4px !important;
        margin-bottom: 10px !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }

    .post-summary {
        display: block !important;
        font-size: 12.5pt !important;
        line-height: 1.6 !important;
        font-weight: 400 !important;
        color: #111111 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        text-align: justify !important;
        page-break-inside: auto !important;
        break-inside: auto !important;
        page-break-after: auto !important;
        break-after: auto !important;
    }

    .post-summary b,
    .post-summary strong {
        font-weight: 400 !important;
    }

    .post-text {
        display: block !important;
        font-size: 12pt !important;
        line-height: 1.7 !important;
        font-weight: 400 !important;
        color: #111111 !important;
        margin-top: 0 !important;
        page-break-inside: auto !important;
        break-inside: auto !important;
    }

    .post-text,
    .post-text *,
    .post-text p,
    .post-text b,
    .post-text strong,
    .post-text span,
    .post-text div,
    .post-text h1,
    .post-text h2,
    .post-text h3,
    .post-text h4,
    .post-text h5,
    .post-text h6 {
        font-weight: 400 !important;
    }

    .post-text p {
        margin-bottom: 10pt !important;
        text-align: justify !important;
        page-break-inside: auto !important;
        break-inside: auto !important;
        orphans: 2;
        widows: 2;
        font-weight: 400 !important;
    }

    .post-text img {
        max-width: 100% !important;
        max-height: 300px !important;
        height: auto !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
}

/* ==========================================================================
   📌 Post Share Buttons Styling (Unified for Top and Bottom)
   ========================================================================== */
.post-share-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
}

.post-share-left {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.post-share-right {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-left: auto;
}

.post-share-top-wrap {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .post-share-wrap {
        justify-content: flex-start;
    }

    .post-share-top-wrap {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }
}

/* 🔘 সফট লাইট-হোয়াইট ব্যাকগ্রাউন্ড ও ডার্ক আইকন বাটন */
.post-share-icon-btn,
.post-share-icon-btn:hover,
.post-share-icon-btn:focus,
.post-share-icon-btn:active {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background-color: #f1f3f5 !important;
    color: #111827 !important;
    border-radius: 6px !important;
    border: none !important;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
}

.post-share-icon-btn i,
.post-share-icon-btn svg,
.post-share-icon-btn:hover i,
.post-share-icon-btn:hover svg {
    color: #111827 !important;
    transition: none !important;
    transform: none !important;
    display: inline-block;
    line-height: 1;
}

body.dark-mode .post-share-icon-btn,
body.dark-mode .post-share-icon-btn:hover,
body.dark-mode .post-share-icon-btn:focus,
body.dark-mode .post-share-icon-btn:active {
    background-color: #334155 !important;
    color: #f8fafc !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
}

body.dark-mode .post-share-icon-btn i,
body.dark-mode .post-share-icon-btn svg,
body.dark-mode .post-share-icon-btn:hover i,
body.dark-mode .post-share-icon-btn:hover svg {
    color: #f8fafc !important;
    transition: none !important;
    transform: none !important;
}

/* 📷 ফটো কার্ড বাটন */
.btn-photocard-action,
.btn-photocard-action:hover,
.btn-photocard-action:focus,
.btn-photocard-action:active {
    background-color: #f1f3f5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 12px !important;
    height: 36px !important;
    border-radius: 6px !important;
    border: 1px solid #fee2e2 !important;
    color: #dc2626 !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.btn-photocard-action i,
.btn-photocard-action span,
.btn-photocard-action:hover i,
.btn-photocard-action:hover span {
    color: #dc2626 !important;
    transition: none !important;
    transform: none !important;
}

body.dark-mode .btn-photocard-action,
body.dark-mode .btn-photocard-action:hover,
body.dark-mode .btn-photocard-action:focus,
body.dark-mode .btn-photocard-action:active {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #ef4444 !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
}

body.dark-mode .btn-photocard-action i,
body.dark-mode .btn-photocard-action span,
body.dark-mode .btn-photocard-action:hover i,
body.dark-mode .btn-photocard-action:hover span {
    color: #ef4444 !important;
    transition: none !important;
    transform: none !important;
}

/* 📰 প্রিন্ট সংস্করণ বাটন */
.btn-print-edition-action,
.btn-print-edition-action:hover,
.btn-print-edition-action:focus,
.btn-print-edition-action:active {
    background-color: #f1f3f5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 12px !important;
    height: 36px !important;
    border-radius: 6px !important;
    border: 1px solid #bae6fd !important;
    color: #0284c7 !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.btn-print-edition-action i,
.btn-print-edition-action span,
.btn-print-edition-action:hover i,
.btn-print-edition-action:hover span {
    color: #0284c7 !important;
    transition: none !important;
    transform: none !important;
}

body.dark-mode .btn-print-edition-action,
body.dark-mode .btn-print-edition-action:hover,
body.dark-mode .btn-print-edition-action:focus,
body.dark-mode .btn-print-edition-action:active {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #38bdf8 !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
}

/* 🔗 আর্টিকেল সোর্স বাটন */
.btn-source-action,
.btn-source-action:hover,
.btn-source-action:focus,
.btn-source-action:active {
    background-color: #059669 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 0 12px !important;
    height: 36px !important;
    border-radius: 6px !important;
    border: 1px solid #059669 !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.btn-source-action span,
.btn-source-action svg,
.btn-source-action:hover span,
.btn-source-action:hover svg {
    color: #ffffff !important;
    transition: none !important;
    transform: none !important;
}

/* ==========================================================================
   💬 Clean Post Blockquote Styling
   ========================================================================== */
.post-text blockquote {
    position: relative;
    margin: 20px 0 !important;
    padding: 14px 18px 14px 20px !important;
    border-left: 4px solid var(--vr-theme-color, #dc2626) !important;
    background: #f8fafc !important;
    border-radius: 0 8px 8px 0 !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: #1e293b !important;
}

.post-text blockquote p {
    margin-bottom: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

.post-text blockquote p:not(:last-child) {
    margin-bottom: 10px !important;
}

/* ==========================================================================
   📰 In-Article Related Post (আরও পড়ুন - Sleek, Thin & Static)
   ========================================================================== */
.read_also_post {
    margin: 16px 0 !important;
    clear: both;
}

.read_also_post .rmp_container,
.read_also_post .rmp_container:hover,
.read_also_post .rmp_container:focus,
.read_also_post .rmp_container:active {
    background: #f0fdf4 !important;
    border: 1px solid #d1fae5 !important;
    border-left: 4px solid var(--vr-theme-color, #059669) !important;
    border-radius: 5px !important;
    padding: 7px 12px !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.read_also_post .rmp_link,
.read_also_post .rmp_link:hover,
.read_also_post .rmp_link:focus,
.read_also_post .rmp_link:active {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: none !important;
    transform: none !important;
}

.read_also_post .rmp_content {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.read_also_post .rmp_badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: var(--vr-theme-color, #059669) !important;
    margin-bottom: 2px !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
}

.read_also_post .rmp_title {
    font-size: 17.5px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    color: #0f172a !important;
    margin: 0 0 4px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: none !important;
}

.read_also_post .rmp_link:hover .rmp_title {
    color: var(--vr-theme-color, #059669) !important;
}

.read_also_post .rmp_meta {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 11.5px !important;
    color: #64748b !important;
    line-height: 1.2 !important;
}

.read_also_post .rmp_category {
    font-weight: 600 !important;
    color: #475569 !important;
}

.read_also_post .rmp_dot {
    color: #cbd5e1 !important;
}

.read_also_post .rmp_image_wrap {
    flex: 0 0 85px !important;
    width: 85px !important;
    height: 56px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background: #cbd5e1 !important;
}

.read_also_post .rmp_image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: none !important;
    transform: none !important;
}

@media (max-width: 576px) {
    .read_also_post .rmp_image_wrap {
        flex: 0 0 75px !important;
        width: 75px !important;
        height: 50px !important;
    }

    .read_also_post .rmp_title {
        font-size: 14.5px !important;
    }

    .read_also_post .rmp_container {
        padding: 6px 10px !important;
    }
}

body.dark-mode .read_also_post .rmp_container,
body.dark-mode .read_also_post .rmp_container:hover,
body.dark-mode .read_also_post .rmp_container:focus,
body.dark-mode .read_also_post .rmp_container:active {
    background: #1e293b !important;
    border-color: #334155 !important;
    border-left-color: var(--vr-theme-color, #059669) !important;
    transition: none !important;
}

body.dark-mode .read_also_post .rmp_title {
    color: #f8fafc !important;
}

body.dark-mode .read_also_post .rmp_meta,
body.dark-mode .read_also_post .rmp_category {
    color: #94a3b8 !important;
}

/***************************************************
 @ Featured Image Overlay Badges (Soft Brand Tone & Compact)
 *****************************************************/
.bgz-img-overlay-badge {
    position: absolute;
    top: 10px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(15, 23, 42, 0.40);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.bgz-img-overlay-badge svg {
    color: #ffffff;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.bgz-badge-left {
    left: 10px;
}

.bgz-badge-right {
    right: 10px;
}

@media (max-width: 576px) {
    .bgz-img-overlay-badge {
        top: 6px;
        font-size: 11px;
        padding: 2px 6px;
        gap: 3px;
    }

    .bgz-badge-left {
        left: 6px;
    }

    .bgz-badge-right {
        right: 6px;
    }
}

/***************************************************
 @ Featured Image Caption & Credit Badge (Single Line Truncation, Clean Plain Text)
 *****************************************************/
.bgz-img-caption-box {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    padding: 6px 12px !important;
    background: #f8fafc !important;
    border-top: 1px solid #eaedf1 !important;
    font-size: 13.5px !important;
    line-height: 1.4 !important;
    border-radius: 0 !important;
    font-family: inherit !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.bgz-caption-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    font-weight: 500 !important;
    color: #334155 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bgz-caption-credit {
    flex: 0 0 auto !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-left: auto !important;
}

.bgz-credit-label {
    color: #dc2626 !important;
    font-weight: 700 !important;
    margin-right: 3px !important;
}

@media (max-width: 576px) {
    .bgz-img-caption-box {
        padding: 5px 8px !important;
        font-size: 12px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
    }

    .bgz-caption-text {
        font-size: 12px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .bgz-caption-credit {
        font-size: 11.5px !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }
}

body.dark-mode .bgz-img-caption-box {
    background: #1e293b !important;
    border-top-color: #334155 !important;
}

body.dark-mode .bgz-caption-text {
    color: #cbd5e1 !important;
}

body.dark-mode .bgz-caption-credit {
    background: transparent !important;
    color: #94a3b8 !important;
    border: none !important;
}

body.dark-mode .bgz-credit-label {
    color: #ef4444 !important;
}

/***************************************************
 @ Single Article Title (Desktop)
 *****************************************************/
#postDetailsPage .post-title,
.post-content .post-title {
    font-size: 37px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    margin-top: 4px !important;
    margin-bottom: 18px !important;
}

/***************************************************
 @ Mobile Single Post Typography & Readability Optimization
 *****************************************************/
@media (max-width: 768px) {

    /* 1. Main Title: Reduced by 2px (29px -> 27px) for balanced mobile aesthetics */
    #postDetailsPage .post-title,
    .post-content .post-title {
        font-size: 27px !important;
        line-height: 1.4 !important;
        font-weight: 800 !important;
        margin-top: 2px !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.2px !important;
    }

    /* 2. Author Name & Published Date Meta */
    .post-details-meta .item-meta-name a {
        font-size: 16px !important;
    }

    .post-details-meta .item-meta-date {
        font-size: 13.5px !important;
    }

    /* 3. Article Summary / Lead Paragraph */
    .post-content .post-summary {
        font-size: 17.5px !important;
        line-height: 1.65 !important;
        margin-top: 12px !important;
        margin-bottom: 14px !important;
    }

    /* 4. Main Body Text: Optimized to 18.5px with comfortable 1.72 line-height */
    .post-content .post-text,
    .post-content .post-text p,
    .post-text,
    .post-text p {
        font-size: 18.5px !important;
        line-height: 1.72 !important;
        margin-bottom: 14px !important;
    }

    /* 5. In-article Blockquotes */
    .post-content .post-text blockquote,
    .post-text blockquote {
        margin: 18px 0 !important;
        padding: 10px 14px !important;
    }

    .post-content .post-text blockquote p,
    .post-text blockquote p {
        font-size: 16.5px !important;
        line-height: 1.6 !important;
    }

    /* 6. Tags List */
    .tag-list li a {
        font-size: 13.5px !important;
        padding: 4px 10px !important;
    }
}

/***************************************************
 @ Mobile Single Post Meta & Share Bar (Strictly 1 Line & Vertical Gap)
 *****************************************************/
@media (max-width: 991.98px) {
    .post-details-meta {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
    }

    .post-details-meta>div:first-child {
        width: 100% !important;
        margin-bottom: 12px !important;
        /* প্রতিনিধির নাম ও সোশ্যাল আইকনের মাঝে সুন্দর গ্যাপ */
    }

    .post-details-meta .item-meta-share {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        justify-content: center !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
        padding-bottom: 2px !important;
    }

    .post-details-meta .item-meta-share::-webkit-scrollbar {
        display: none !important;
    }

    .post-details-meta .post-share-top-wrap {
        display: inline-flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 6px !important;
        margin: 0 auto !important;
        min-width: max-content !important;
        text-align: center !important;
    }

    .post-details-meta .post-share-top-wrap::-webkit-scrollbar {
        display: none !important;
    }

    .post-details-meta .post-share-top-wrap .post-share-icon-btn,
    .post-details-meta .post-share-top-wrap .btn-photocard-action,
    .post-details-meta .post-share-top-wrap .btn-print-edition-action,
    .post-details-meta .post-share-top-wrap .btn-reading-list,
    .post-details-meta .post-share-top-wrap>div {
        flex-shrink: 0 !important;
    }

    .post-details-meta .post-share-top-wrap .post-share-icon-btn {
        width: 38px !important;
        height: 38px !important;
        border-radius: 7px !important;
    }

    .post-details-meta .post-share-top-wrap .post-share-icon-btn i,
    .post-details-meta .post-share-top-wrap .post-share-icon-btn svg {
        font-size: 16.5px !important;
    }

    .post-details-meta .post-share-top-wrap .btn-photocard-action,
    .post-details-meta .post-share-top-wrap .btn-print-edition-action {
        display: inline-flex !important;
        align-items: center !important;
        height: 38px !important;
        padding: 0 11px !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        border-radius: 7px !important;
        gap: 5px !important;
        white-space: nowrap !important;
    }

    /* Hide Print icon button on top share bar on mobile */
    .post-details-meta .post-share-top-wrap .btn-print-post {
        display: none !important;
    }

    /* Hide Photo Card, Print Edition, and Favorite (Star) button ONLY on the bottom share bar on mobile */
    .post-share-buttons .btn-photocard-action,
    .post-share-buttons .btn-print-edition-action,
    .post-share-buttons .btn-reading-list {
        display: none !important;
    }

    /* Hide Tags and Article Source button on mobile version */
    .post-tags,
    .btn-source-action {
        display: none !important;
    }

    /* Mobile: remove excessive gap above bottom share buttons */
    .post-text>br {
        display: none !important;
    }

    .post-text>p:last-of-type {
        margin-bottom: 6px !important;
    }

    /* Center and style bottom share buttons on mobile */
    .post-share-buttons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 10px !important;
        margin-bottom: 22px !important;
        width: 100% !important;
    }

    .post-share-wrap {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .post-share-left,
    .post-share-right {
        display: inline-flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 !important;
    }

    /* Slightly larger icon buttons for easy touch tapping on mobile */
    .post-share-buttons .post-share-icon-btn {
        width: 42px !important;
        height: 42px !important;
        border-radius: 8px !important;
    }

    .post-share-buttons .post-share-icon-btn i,
    .post-share-buttons .post-share-icon-btn svg {
        font-size: 17.5px !important;
    }
}

/* ==========================================================================
   @ Sticky Header Styles & Menu Separators (AsianSomoy)
   ========================================================================== */

/* Menu Vertical Separator Lines (|) */
.tt_nav-menu .nav-item {
    position: relative;
}

.tt_nav-menu .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #cbd5e1;
}

body.dark-mode .tt_nav-menu .nav-item:not(:last-child)::after {
    background-color: #334155;
}

/* Sticky Header Container & Animations */
.tt_navbar_wrapper {
    min-height: 46px;
}

@media (min-width: 992px) {
    .tt_navbar.is-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1040 !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09) !important;
        background-color: #ffffff !important;
        animation: headerSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    body.dark-mode .tt_navbar.is-sticky {
        background-color: #1e293b !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45) !important;
        border-bottom: 1px solid #334155 !important;
    }

    .tt_navbar.is-sticky .main_logo {
        display: block !important;
        margin-right: 24px !important;
    }

    .tt_navbar.is-sticky .main_logo img {
        height: 38px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    .tt_navbar.is-sticky .col-12 {
        justify-content: space-between !important;
    }

    .tt_navbar.is-sticky .tt_nav-menu .nav-item>a {
        font-size: 17.5px !important;
    }
}

/* Header Search Icon (Far Right) */
.header_sticky_search {
    display: flex;
    align-items: center;
}

.header_sticky_search .search_btn {
    width: 36px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tt_primary_color, #dc2626);
    background: #ffffff;
    transition: all 0.2s ease;
    margin-left: 12px;
}

.header_sticky_search .search_btn:hover {
    background: var(--tt_primary_color, #dc2626) !important;
    border-color: var(--tt_primary_color, #dc2626) !important;
}

.header_sticky_search .search_btn:hover i {
    color: #ffffff !important;
}

body.dark-mode .header_sticky_search .search_btn {
    background: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}

/* Mobile Sticky Nav */
.mobile_navbar_wrapper {
    min-height: 46px;
}

@media (max-width: 991.98px) {
    #mobileNavbar.is-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1040 !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1) !important;
        background-color: #ffffff !important;
        animation: headerSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    body.dark-mode #mobileNavbar.is-sticky {
        background-color: #1e293b !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45) !important;
        border-bottom: 1px solid #334155 !important;
    }
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0.8;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* News Block Border Dividers & Separators */
@media (min-width: 768px) {
    .news-separator-vertical-border {
        border-right: 1px solid #eaedf1 !important;
    }

    body.dark-mode .news-separator-vertical-border {
        border-right: 1px solid #334155 !important;
    }

    .card-item-vertical-divider {
        border-right: 1px solid #eaedf1 !important;
    }

    body.dark-mode .card-item-vertical-divider {
        border-right: 1px solid #334155 !important;
    }
}

.news-separator-horizontal-border {
    border-bottom: 1px solid #eaedf1 !important;
}

body.dark-mode .news-separator-horizontal-border {
    border-bottom: 1px solid #334155 !important;
}

/* ==========================================================================
   Homepage Dedicated Ad Rules: Thin Border, Subtle Corner Radius (4px), Clean Fit
   ========================================================================== */

/* National Section 728x90 Banner Ad */
.asian-national-fixed-ad {
    width: 100% !important;
    max-width: 728px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.asian-national-fixed-ad .container-bn,
.asian-national-fixed-ad .container,
.asian-national-fixed-ad .row,
.asian-national-fixed-ad .bn-content,
.asian-national-fixed-ad .bn-inner,
.asian-national-fixed-ad .asian-google-ad,
.asian-national-fixed-ad .asian-custom-ad {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.asian-national-fixed-ad img,
.asian-national-fixed-ad ins,
.asian-national-fixed-ad iframe {
    width: 100% !important;
    max-width: 728px !important;
    height: 90px !important;
    max-height: 90px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
}

@media (max-width: 767.98px) {
    .asian-national-fixed-ad img,
    .asian-national-fixed-ad ins,
    .asian-national-fixed-ad iframe {
        height: auto !important;
        max-height: 120px !important;
        object-fit: contain !important;
    }
}

body.dark-mode .asian-national-fixed-ad img,
body.dark-mode .asian-national-fixed-ad ins,
body.dark-mode .asian-national-fixed-ad iframe {
    border-color: #334155 !important;
}

/* Homepage Banner & Sidebar Ads */
body.page-home .asian-banner-ad,
body.page-home .asian-sidebar-ad {
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

body.page-home .asian-google-ad,
body.page-home .asian-custom-ad {
    overflow: hidden !important;
    box-sizing: border-box !important;
}

body.page-home .asian-google-ad iframe,
body.page-home .asian-google-ad ins,
body.page-home .asian-custom-ad img {
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

body.page-home.dark-mode .asian-google-ad iframe,
body.page-home.dark-mode .asian-google-ad ins,
body.page-home.dark-mode .asian-custom-ad img {
    border-color: #334155 !important;
}

/* Fixed Sidebar Ad Container & Image Sizing */
body.page-home .asian-sidebar-ad {
    width: 100% !important;
    max-width: 350px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-home .asian-sidebar-ad img,
body.page-home .asian-sidebar-ad ins,
body.page-home .asian-sidebar-ad iframe {
    max-width: 350px !important;
    max-height: 350px !important;
    object-fit: cover !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px !important;
}

/* Disable box-shadows on homepage section containers */
body.page-home .shadow-sm,
body.page-home .shadow {
    box-shadow: none !important;
}

/* ==========================================================================
   Mobile-Only 300x250 Ad Formatting (Does NOT affect desktop/computer version)
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Mobile-Only Standard 300x250 Ad Container */
    .container-bn-mb {
        width: 100% !important;
        margin-top: 16px !important;
        margin-bottom: 16px !important;
        padding: 0 !important;
        text-align: center !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .container-bn-mb .row,
    .container-bn-mb .bn-content {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border: none !important;
        background: transparent !important;
    }

    /* Single 300x250 Ad Frame - ONLY 1 BOX */
    .container-bn-mb .bn-inner {
        width: 300px !important;
        max-width: 100% !important;
        height: 250px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 4px !important;
        overflow: hidden !important;
        background: #ffffff !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    body.dark-mode .container-bn-mb .bn-inner {
        border-color: #334155 !important;
        background: #1e293b !important;
    }

    /* Remove ALL borders/shadows/outlines from nested children so there can NEVER be 2 boxes */
    .container-bn-mb .asian-google-ad,
    .container-bn-mb .asian-custom-ad,
    .container-bn-mb .asian-google-ad *,
    .container-bn-mb .asian-custom-ad *,
    .container-bn-mb img,
    .container-bn-mb ins,
    .container-bn-mb iframe,
    .container-bn-mb a {
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .container-bn-mb .asian-google-ad,
    .container-bn-mb .asian-custom-ad {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .container-bn-mb img {
        width: 100% !important;
        height: 100% !important;
        max-width: 300px !important;
        max-height: 250px !important;
        object-fit: cover !important;
        border-radius: 4px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .container-bn-mb ins.adsbygoogle,
    .container-bn-mb iframe {
        width: 100% !important;
        height: 100% !important;
        max-width: 300px !important;
        max-height: 250px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* National section container adjustments on mobile */
    .asian-national-fixed-ad {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin-top: 18px !important;
        padding-top: 12px !important;
        display: block !important;
        border: none !important;
    }

    .asian-national-fixed-ad .container-bn,
    .asian-national-fixed-ad .bn-content,
    .asian-national-fixed-ad .bn-inner,
    .asian-national-fixed-ad .asian-google-ad,
    .asian-national-fixed-ad .asian-custom-ad {
        height: auto !important;
        max-height: none !important;
    }

    /* Mobile-Only Article Item Vertical Spacing & Divider Line Gap */
    .news-separator-horizontal-border {
        padding-top: 6px !important;
        padding-bottom: 10px !important;
        margin-bottom: 8px !important;
    }

    .prothom-songbad-post-style {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .cat-health-item {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    a.prothom-songbad-post-style.border-bottom {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        margin-bottom: 4px !important;
    }
}

/* ==========================================================================
   Compact & Sleek Scroll-To-Top Button (.scrollup)
   ========================================================================== */
.scrollup {
    display: none;
    position: fixed;
    bottom: 22px;
    right: 18px;
    color: #fff !important;
    z-index: 99999;
    text-decoration: none !important;
    outline: none !important;
}

.scrollup:hover, .scrollup:active, .scrollup:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.scrollup i {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background-color: #111827 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0.88;
}

.scrollup:hover i {
    background-color: #dc2626 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35) !important;
}

@media (max-width: 768px) {
    .scrollup {
        bottom: 16px !important;
        right: 12px !important;
    }
    .scrollup i {
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 11.5px !important;
        border-radius: 5px !important;
    }
}