/* Softnexa Labs Theme - Magazine & News Layout */
*, *::before, *::after { box-sizing: border-box; }
.np-body {
    margin: 0;
    font-family: var(--font-body, 'Open Sans', sans-serif);
    color: var(--np-text, #0f172a);
    background: var(--np-page-bg, #f1f5f9);
    line-height: 1.6;
}
.np-page-body { background: transparent; }
.np-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Top Bar */
.np-topbar {
    position: relative;
    z-index: 1010;
    background: linear-gradient(135deg, var(--np-gradient-start, #1e293b) 0%, var(--np-gradient-mid, #334155) 100%);
    color: #fff;
    font-size: 12px;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.np-topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; min-height: 40px; }
.np-topbar-left, .np-topbar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.np-date {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.82); font-weight: 500;
}
.np-date svg { opacity: 0.75; flex-shrink: 0; }
.np-lang-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    font-size: 11px; font-weight: 600;
}
.np-lang-badge em {
    font-style: normal; font-size: 9px; font-weight: 800; letter-spacing: 0.06em;
    padding: 2px 6px; border-radius: 999px; background: var(--np-secondary, #3b82f6); color: #fff;
}
.np-topbar-link { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 12px; transition: color 0.2s; }
.np-topbar-link:hover { color: var(--np-secondary, #3b82f6); }
.np-topbar-menu-links { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.np-topbar-auth { font-weight: 600; }
.np-topbar-btn {
    display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 999px;
    background: #fff; color: var(--np-primary, #0f172a) !important; font-size: 12px; font-weight: 700;
    text-decoration: none; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}
.np-topbar-btn:hover { opacity: 0.95; transform: translateY(-1px); color: var(--np-primary, #0f172a) !important; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16); }

/* Top bar member profile dropdown */
.np-user-menu {
    position: relative;
    z-index: 1015;
    margin-left: 2px;
}
.np-user-menu-trigger {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 3px 12px 3px 3px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    color: #fff;
    cursor: pointer;
    font: inherit;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.np-user-menu-trigger:hover,
.np-user-menu.is-open .np-user-menu-trigger {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.np-user-menu-trigger svg { opacity: 0.75; flex-shrink: 0; transition: transform 0.2s; }
.np-user-menu.is-open .np-user-menu-trigger svg { transform: rotate(180deg); opacity: 1; }
.np-user-avatar {
    width: 28px; height: 28px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--np-secondary, #3b82f6), #3a9fd4);
    color: #fff; font-size: 11px; font-weight: 800;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}
.np-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.np-user-name {
    font-size: 12px; font-weight: 700; max-width: 100px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    color: rgba(255,255,255,0.95);
}
.np-user-dropdown {
    display: none;
    position: absolute; right: 0; top: calc(100% + 10px);
    z-index: 1020;
    min-width: 240px;
    background: #fff;
    color: #1e293b;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(15,23,42,0.18);
    overflow: hidden;
    animation: npUserDropIn 0.18s ease;
}
@keyframes npUserDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.np-user-menu.is-open .np-user-dropdown { display: block; }
.np-user-dropdown-head {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.02));
    border-bottom: 1px solid rgba(15,23,42,0.06);
}
.np-user-dropdown-head .np-user-avatar {
    width: 40px; height: 40px; font-size: 14px;
    box-shadow: none;
}
.np-user-dropdown-meta strong {
    display: block; font-size: 14px; font-weight: 700; color: #0f172a;
    max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.np-user-dropdown-meta span {
    display: block; font-size: 11px; color: #64748b; margin-top: 2px;
    max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.np-user-dropdown-body { padding: 6px; }
.np-user-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 10px;
    text-decoration: none; color: #334155;
    font-size: 13px; font-weight: 600;
    transition: background 0.15s, color 0.15s;
}
.np-user-dropdown a svg { flex-shrink: 0; opacity: 0.7; }
.np-user-dropdown a:hover {
    background: rgba(59,130,246,0.1);
    color: var(--np-secondary, #3b82f6);
}
.np-user-dropdown a:hover svg { opacity: 1; }
.np-user-dropdown-divider { height: 1px; background: rgba(15,23,42,0.06); margin: 4px 8px; }
.np-user-logout { color: #dc2626 !important; }
.np-user-logout:hover { background: rgba(220,38,38,0.08) !important; color: #dc2626 !important; }

/* Visual editor: keep profile menu interactive inside editable header */
.se-editable-section .np-user-menu,
.se-editable-section .np-user-menu-trigger,
.se-editable-section .np-user-dropdown a {
    pointer-events: auto;
}
.se-editable-section .np-user-dropdown { z-index: 1020; }

/* Social icon links (topbar + footer) */
.np-social-icons { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.np-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(255,255,255,0.08); color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.np-social-link:hover {
    transform: translateY(-2px);
    background: var(--np-secondary, #3b82f6);
    border-color: transparent;
    color: #fff;
}
.np-footer-social .np-social-link {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}
.np-footer-social .np-social-link:hover { background: var(--np-secondary, #3b82f6); }
.np-header-social { margin-left: auto; }
.np-header-band-social {
    display: flex; align-items: center; margin-left: auto;
    padding-left: 12px;
}
.np-header-band-inner .np-header-inner { gap: 16px; }
.np-header-social .np-social-link,
.np-header-band-social .np-social-link {
    background: rgba(0,0,0,0.04);
    color: var(--np-primary, #0f172a);
    border-color: rgba(0,0,0,0.08);
}
.np-header-social .np-social-link:hover,
.np-header-band-social .np-social-link:hover {
    background: var(--np-secondary, #3b82f6);
    color: #fff;
    border-color: transparent;
}
.np-social-link--facebook:hover { background: #1877f2 !important; }
.np-social-link--twitter:hover { background: #0f1419 !important; }
.np-social-link--instagram:hover { background: #e1306c !important; }
.np-social-link--youtube:hover { background: #ff0000 !important; }
.np-social-link--linkedin:hover { background: #0a66c2 !important; }
.np-social-link--tiktok:hover { background: #010101 !important; }
.np-social-icons--row .np-social-link { width: 44px; height: 44px; border-radius: 14px; }
.np-gtranslate-widget { display: inline-flex; align-items: center; min-height: 30px; vertical-align: middle; }
.np-gtranslate-widget .gt_switcher { font-size: 12px !important; font-family: inherit !important; }
.np-gtranslate-widget .gt_selected a {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}
.np-gtranslate-widget .gt_selected a:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}
.np-gtranslate-widget .gt_selected img { border-radius: 2px !important; }
.np-gtranslate-widget .gt_option {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18) !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    z-index: 10050 !important;
}
.np-gtranslate-widget .gt_option a {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
}
.np-gtranslate-widget .gt_option a span,
.np-gtranslate-widget .gt_option font {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}
.np-gtranslate-widget .gt_option a:hover { background: #f1f5f9 !important; color: var(--np-secondary, #3b82f6) !important; }
.np-gtranslate-widget .gt_option a:hover span,
.np-gtranslate-widget .gt_option a:hover font {
    color: var(--np-secondary, #3b82f6) !important;
    -webkit-text-fill-color: var(--np-secondary, #3b82f6) !important;
}

/* Header — white card on cool grey page */
.np-header {
    border-bottom: 1px solid var(--np-border, rgba(15, 23, 42, 0.08));
    padding: 14px 0;
    position: sticky;
    top: 0;
    background: var(--np-surface, rgba(255,255,255,0.97));
    backdrop-filter: blur(12px);
    z-index: 1002;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}
.np-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.np-header-band .np-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: nowrap;
}
.np-header-band .np-mobile-toggle { grid-column: 1; }
.np-header-band-logo { grid-column: 1; min-width: 0; }
.np-header-band-menu-wrap { grid-column: 2; min-width: 0; overflow: hidden; }
.np-header-band .np-header-band-search,
.np-header-band .se-header-part[data-header-part="search"] { grid-column: 3; justify-self: end; }
.np-header-band .np-header-band-menu-wrap { overflow: visible; position: relative; z-index: 1005; }
.np-header-band .np-main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--np-menu-gap, 16px);
    flex: 1;
    justify-content: center;
    overflow: visible;
    padding: 4px 0;
}
.np-header-band .np-main-nav::-webkit-scrollbar { display: none; }
.np-header-band .np-main-nav a { white-space: nowrap; flex-shrink: 0; }
.np-header-band { overflow: visible; z-index: 1000; }
.np-logo, .np-logo-link { flex-shrink: 0; display: flex; align-items: center; min-width: 0; text-decoration: none; }
.np-logo-brand { display: block; object-fit: contain; max-width: 100%; width: auto; height: auto; }
.np-logo-brand:not(.np-logo-custom-size) { max-height: 48px; }
.np-logo-custom-size { max-height: none !important; }
.np-main-nav { display: flex; gap: var(--np-menu-gap, 24px); flex-wrap: wrap; flex: 1; justify-content: center; align-items: center; }
.np-main-nav a, .np-nav-link { font-weight: var(--np-menu-font-weight, 600); font-size: var(--np-menu-font-size, 14px); text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; text-decoration: none; color: inherit; }
.np-main-nav a:hover, .np-nav-link:hover { color: var(--np-secondary, #3b82f6); }
/* Header nav dropdowns */
.np-nav-item--dropdown { position: relative; display: inline-flex; align-items: center; }
.np-nav-dropdown-trigger {
    display: inline-flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer;
    font: inherit; font-weight: var(--np-menu-font-weight, 600); font-size: var(--np-menu-font-size, 14px);
    text-transform: uppercase; letter-spacing: 0.5px; color: inherit; padding: 6px 2px; transition: color 0.2s;
}
.np-nav-dropdown-trigger:hover, .np-nav-item--dropdown.is-open .np-nav-dropdown-trigger,
.np-nav-item--dropdown:hover .np-nav-dropdown-trigger { color: var(--np-secondary, #3b82f6); }
.np-nav-chevron { transition: transform 0.22s ease; opacity: 0.7; flex-shrink: 0; }
.np-nav-item--dropdown.is-open .np-nav-chevron,
.np-nav-item--dropdown:hover .np-nav-chevron { transform: rotate(180deg); opacity: 1; }
.np-nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 240px; max-width: 300px; margin: 0; padding: 6px; list-style: none;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 16px 40px rgba(15, 23, 42, 0.12);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; z-index: 1010;
}
.np-nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(15, 23, 42, 0.1);
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.np-nav-item--dropdown.is-open .np-nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
@media (min-width: 769px) {
    .np-nav-item--dropdown.is-open .np-nav-dropdown-menu { transform: translateX(-50%) translateY(0); }
}
.np-nav-dropdown-head { margin: 0; padding: 0; }
.np-nav-dropdown-all {
    display: flex !important; align-items: center; gap: 10px;
    padding: 12px 12px !important; margin: 0;
    border-radius: 10px; text-decoration: none !important;
    background: var(--np-theme-surface-soft, color-mix(in srgb, var(--np-secondary) 10%, #fff));
    border: 1px solid var(--np-theme-border-soft, color-mix(in srgb, var(--np-secondary) 22%, transparent));
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.np-nav-dropdown-all:hover {
    background: color-mix(in srgb, var(--np-secondary) 16%, #fff);
    border-color: color-mix(in srgb, var(--np-secondary) 35%, transparent);
    color: var(--np-secondary, #3b82f6) !important;
    transform: translateY(-1px);
}
.np-nav-dropdown-all-icon {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    background: color-mix(in srgb, var(--np-secondary) 18%, transparent);
    color: var(--np-secondary, #3b82f6);
}
.np-nav-dropdown-all-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.np-nav-dropdown-all-text strong {
    display: block; font-size: 13px; font-weight: 700; text-transform: none; letter-spacing: 0; color: #0f172a;
}
.np-nav-dropdown-all-text small {
    display: block; font-size: 11px; font-weight: 500; color: #64748b; text-transform: none; letter-spacing: 0;
}
.np-nav-dropdown-all:hover .np-nav-dropdown-all-text strong { color: var(--np-secondary, #3b82f6); }
.np-nav-dropdown-all-arrow { flex-shrink: 0; opacity: 0.45; transition: opacity 0.18s, transform 0.18s; }
.np-nav-dropdown-all:hover .np-nav-dropdown-all-arrow { opacity: 1; transform: translateX(2px); }
.np-nav-dropdown-divider {
    height: 1px; margin: 6px 8px; background: rgba(15, 23, 42, 0.07); list-style: none;
}
.np-nav-dropdown-section {
    list-style: none; padding: 4px 12px 6px; margin: 0;
}
.np-nav-dropdown-section span {
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8;
}
.np-nav-dropdown-menu a.np-nav-dropdown-child,
.np-nav-dropdown-menu .np-nav-subgroup-list a {
    display: flex !important; align-items: center; gap: 10px;
    padding: 9px 12px !important; margin: 2px 0;
    font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0;
    color: #475569; text-decoration: none !important;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.np-nav-dropdown-child-dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    background: rgba(77, 178, 236, 0.45);
    transition: background 0.15s, transform 0.15s;
}
.np-nav-dropdown-menu a.np-nav-dropdown-child:hover,
.np-nav-dropdown-menu .np-nav-subgroup-list a:hover {
    background: rgba(77, 178, 236, 0.09);
    color: var(--np-secondary, #3b82f6) !important;
    padding-left: 14px !important;
}
.np-nav-dropdown-menu a.np-nav-dropdown-child:hover .np-nav-dropdown-child-dot {
    background: var(--np-secondary, #3b82f6);
    transform: scale(1.2);
}
.np-nav-subgroup-label { display: block; padding: 8px 12px 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; }
.np-nav-subgroup-list { list-style: none; margin: 0; padding: 0 0 4px; }
.np-menu-h-item--dropdown { position: relative; }
.np-menu-h-item--dropdown .np-nav-dropdown-menu { left: 0; transform: translateY(8px); }
.np-menu-h-item--dropdown .np-nav-dropdown-menu::before { left: 24px; transform: rotate(45deg); }
.np-menu-h-item--dropdown.is-open .np-nav-dropdown-menu { transform: translateY(0); }
@media (min-width: 769px) {
    .np-nav-item--dropdown:hover .np-nav-dropdown-menu,
    .np-menu-h-item--dropdown:hover .np-nav-dropdown-menu {
        opacity: 1; visibility: visible; pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    .np-menu-h-item--dropdown:hover .np-nav-dropdown-menu { transform: translateY(0); }
}
.np-header-search input { border: 1px solid var(--np-border, #e2e8f0); padding: 10px 14px; border-radius: var(--np-radius, 12px); font-size: var(--np-search-font-size, 13px); width: var(--np-search-width, 180px); height: var(--np-search-height, auto); box-sizing: border-box; background: var(--np-input-bg, #f0f4f8); color: var(--np-text, #0f172a); transition: border-color 0.2s, box-shadow 0.2s; }
.np-header-search input:focus { outline: none; border-color: var(--np-secondary, #3b82f6); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }
.np-menu-style-normal a { text-transform: none; letter-spacing: 0; }
.np-menu-style-underline a { text-transform: none; border-bottom: 2px solid transparent; }
.np-menu-style-underline a:hover { border-bottom-color: var(--np-secondary, #3b82f6); }
.np-mobile-toggle {
    display: none;
    background: var(--np-primary, #0f172a);
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    flex-shrink: 0;
    z-index: 1003;
}
.np-mobile-toggle:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16); }
.np-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
}
.np-nav-open .np-mobile-toggle { background: var(--np-secondary, #3b82f6); }

/* Trending — clean animated ticker */
.np-trending {
    position: relative;
    background: linear-gradient(180deg, #eef4fb 0%, #f4f8fc 50%, #eef4fb 100%);
    color: #1e293b;
    padding: 13px 0;
    overflow: hidden;
    border-top: 1px solid rgba(77, 178, 236, 0.18);
    border-bottom: 1px solid rgba(77, 178, 236, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.np-trending::before {
    content: none;
}
.np-trending--custom-bg {
    background: var(--np-accent, #3b82f6);
    color: #fff;
    border-top-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}
.np-trending--custom-bg::before { display: none; }
.np-trending-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 38px;
}
.np-trending-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 8px 15px 8px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(77, 178, 236, 0.25);
    box-shadow: 0 2px 8px rgba(77, 178, 236, 0.1);
}
.np-trending--custom-bg .np-trending-badge {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}
.np-trending-icon {
    display: flex;
    color: var(--np-secondary, #3b82f6);
    animation: np-trending-flame 2.2s ease-in-out infinite;
}
.np-trending--custom-bg .np-trending-icon { color: #fff; }
.np-trending-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    line-height: 1;
}
.np-trending-pulse {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--np-secondary, #3b82f6);
    opacity: 0;
    animation: np-trending-pulse 2.2s ease-out infinite;
}
.np-trending--custom-bg .np-trending-pulse { background: #fff; }
.np-trending-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.np-trending-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
}
.np-trending-marquee-track--animate {
    animation: np-trending-scroll var(--np-trending-duration, 36s) linear infinite;
}
.np-trending-viewport:hover .np-trending-marquee-track--animate {
    animation-play-state: paused;
}
.np-trending-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 20px 6px 0;
    margin-right: 20px;
    border-right: 1px solid rgba(77, 178, 236, 0.15);
    transition: color 0.25s ease, transform 0.25s ease;
}
.np-trending-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.np-trending--custom-bg .np-trending-item { border-right-color: rgba(255, 255, 255, 0.15); }
.np-trending-item:hover {
    color: var(--np-secondary, #3b82f6);
    transform: translateX(2px);
}
.np-trending--custom-bg .np-trending-item:hover { color: #fff; opacity: 0.92; }
.np-trending-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: var(--np-secondary, #3b82f6);
    background: rgba(77, 178, 236, 0.12);
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.np-trending--custom-bg .np-trending-rank {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}
.np-trending-item:hover .np-trending-rank {
    background: var(--np-secondary, #3b82f6);
    color: #fff;
    transform: scale(1.05);
}
.np-trending--custom-bg .np-trending-item:hover .np-trending-rank {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.np-trending-title { line-height: 1.35; }
.np-trending-empty {
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    white-space: nowrap;
    padding: 4px 0;
}
.np-trending--custom-bg .np-trending-empty { color: rgba(255, 255, 255, 0.85); }

@keyframes np-trending-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes np-trending-flame {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-1px) scale(1.08); opacity: 0.88; }
}
@keyframes np-trending-pulse {
    0% { transform: scale(0.6); opacity: 0.55; }
    70%, 100% { transform: scale(2.4); opacity: 0; }
}
@keyframes np-trending-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .np-trending::before,
    .np-trending-icon,
    .np-trending-pulse,
    .np-trending-marquee-track--animate {
        animation: none !important;
    }
    .np-trending-viewport {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .np-trending-viewport::-webkit-scrollbar { display: none; }
}

@media (max-width: 767px) {
    .np-trending { padding: 10px 0; }
    .np-trending-inner { gap: 12px; }
    .np-trending-badge { padding: 6px 12px 6px 10px; }
    .np-trending-label { font-size: 10px; letter-spacing: 0.06em; }
    .np-trending-item { font-size: 12px; padding-right: 16px; margin-right: 16px; }
    .np-trending-rank { width: 20px; height: 20px; font-size: 10px; }
}

/* Hero Magazine */
.np-hero-magazine { padding: 30px 0; }
.np-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.np-hero-main-link { display: block; position: relative; }
.np-thumb { overflow: hidden; border-radius: 4px; background: #f0f0f0; }
.np-thumb img, .np-post-img { width: 100%; height: 100%; object-fit: cover; }
.np-thumb-xl { height: 420px; }
.np-thumb-sm { width: 100px; min-width: 100px; height: 70px; }
.np-thumb-xs { width: 60px; min-width: 60px; height: 45px; }
.np-hero-main-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: #fff; }
.np-hero-main-content h2 { font-family: var(--font-heading); font-size: 28px; margin: 8px 0; line-height: 1.2; }
.np-hero-main-content p { font-size: 14px; opacity: 0.9; margin: 0 0 8px; }
.np-hero-side { display: flex; flex-direction: column; gap: 16px; }
.np-hero-side-item a { display: flex; gap: 12px; align-items: flex-start; }
.np-hero-side-item h3 { font-size: 14px; margin: 0 0 4px; line-height: 1.3; font-family: var(--font-heading); }
.np-cat-badge { display: inline-block; background: var(--np-secondary, #3b82f6); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.np-meta { font-size: 12px; color: #888; }

/* Section Headers */
.np-section-head { margin-bottom: 20px; }
.np-section-head-line { display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--np-primary, #0f172a); padding-bottom: 10px; }
.np-section-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.np-view-all { font-size: 13px; font-weight: 600; color: var(--np-secondary, #3b82f6); }

/* Category Filter Tabs */
.np-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.np-filter-tabs button { background: var(--np-input-bg, #f0f4f8); border: none; padding: 8px 16px; font-size: 13px; font-weight: 600; cursor: pointer; border-radius: var(--np-radius, 12px); transition: all 0.2s; color: var(--np-text-muted, #64748b); }
.np-filter-tabs button.active, .np-filter-tabs button:hover { background: var(--np-primary, #0f172a); color: #fff; }

/* Post Grids */
.np-posts-grid { display: grid; gap: 20px; }

/* Responsive columns — set via inline CSS vars from Site Editor */
.np-responsive-grid.np-posts-grid {
    grid-template-columns: repeat(var(--np-cols-desktop, 4), minmax(0, 1fr));
}
.np-responsive-grid.np-posts-masonry {
    column-gap: 20px;
    columns: var(--np-cols-desktop, 4);
}
.np-responsive-grid.np-posts-masonry .np-post-card {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* Tablet: 576px – 991px */
@media (max-width: 991px) {
    .np-responsive-grid.np-posts-grid {
        grid-template-columns: repeat(var(--np-cols-tablet, 2), minmax(0, 1fr));
    }
    .np-responsive-grid.np-posts-masonry {
        columns: var(--np-cols-tablet, 2);
    }
}

/* Mobile: ≤575px */
@media (max-width: 575px) {
    .np-responsive-grid.np-posts-grid {
        grid-template-columns: repeat(var(--np-cols-mobile, 1), minmax(0, 1fr));
    }
    .np-responsive-grid.np-posts-masonry {
        columns: var(--np-cols-mobile, 1);
    }
}
.np-category-row { padding: 30px 0; }
.np-category-filter { padding: 30px 0; background: transparent; }
.np-post-card {
    background: var(--np-surface, #fff);
    border: 1px solid var(--np-border, rgba(15, 23, 42, 0.06));
    border-radius: var(--np-radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.np-post-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.np-post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1); }
.np-post-card .np-post-card-thumb,
.np-post-card > .np-thumb,
.np-post-card-link > .np-thumb,
.ncp-post-card .ncp-post-thumb,
.ncp-post-card > a > .np-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 0;
    display: block;
    overflow: hidden;
    margin: 0;
}
.np-post-card .np-post-card-thumb img,
.np-post-card > .np-thumb img,
.np-post-card-link > .np-thumb img,
.ncp-post-card .ncp-post-thumb img,
.ncp-post-card > a > .np-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.np-post-card h3 { font-family: var(--font-heading); font-size: 15px; margin: 12px 0 6px; line-height: 1.3; }
.np-post-card-body { padding: 16px 18px 18px; }
.np-excerpt { font-size: 13px; color: var(--np-text-muted, #64748b); margin: 0 0 8px; }

/* Post List */
.np-posts-list { display: flex; flex-direction: column; gap: 20px; }
.np-post-card-small-link {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px; background: var(--np-surface, #fff);
    border: 1px solid var(--np-border, rgba(15, 23, 42, 0.06));
    border-radius: var(--np-radius-lg, 16px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.np-post-card-small-link:hover { box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); transform: translateY(-2px); }
.np-post-card-small h3 { font-family: var(--font-heading); font-size: 16px; margin: 0 0 6px; line-height: 1.3; }
.np-post-card-small p { font-size: 13px; color: var(--np-text-muted, #64748b); margin: 0 0 6px; }

/* Two Column Layout */
.np-two-column { padding: 30px 0; }
.np-two-col-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }

/* Sidebar Widgets */
.np-sidebar { display: flex; flex-direction: column; gap: 24px; }
.np-widget {
    border: 1px solid var(--np-border, rgba(15, 23, 42, 0.06));
    border-radius: var(--np-radius-lg, 16px);
    overflow: hidden;
    background: var(--np-surface, #fff);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.np-widget-title { background: var(--np-primary, #0f172a); color: var(--np-text-on-primary, #fff) !important; font-size: 13px; font-weight: 700; text-transform: uppercase; padding: 12px 16px; margin: 0; letter-spacing: 0.5px; border-radius: 0; }
.np-widget-body { padding: 16px; }
.np-widget-posts { list-style: none; padding: 0; margin: 0; }
.np-widget-posts li { padding: 8px 0; border-bottom: 1px solid var(--np-border, #e2e8f0); font-size: 13px; font-weight: 600; }
.np-widget-posts li:last-child { border-bottom: none; }
.np-widget-cards { display: flex; flex-direction: column; gap: 12px; }
.np-widget-card { display: flex; gap: 10px; align-items: center; font-size: 13px; font-weight: 600; }
.np-widget-comments { list-style: none; padding: 0; margin: 0; font-size: 13px; }
.np-widget-comments li { padding: 8px 0; border-bottom: 1px solid var(--np-border, #e2e8f0); }
.np-widget-cats { list-style: none; padding: 0; margin: 0; }
.np-widget-cats li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--np-border, #e2e8f0); font-size: 13px; }
.np-social-block--icons { display: flex; flex-direction: column; gap: 8px; }
.np-social-btn--icon {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; text-align: left; color: #fff; font-weight: 600; font-size: 13px;
    border-radius: 8px; transition: transform 0.2s, opacity 0.2s;
}
.np-social-btn--icon:hover { transform: translateX(3px); opacity: 0.92; color: #fff; }
.np-social-btn--icon svg { flex-shrink: 0; opacity: 0.95; }
.np-social-btn--fb { background: #1877f2; }
.np-social-btn--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.np-social-btn--tw { background: #0f1419; }
.np-social-btn--yt { background: #ff0000; }
.np-social-btn--li { background: #0a66c2; }
.np-social-btn--tk { background: #010101; }
.np-newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.np-newsletter-form input { padding: 10px 14px; border: 1px solid var(--np-border, #e2e8f0); border-radius: var(--np-radius, 12px); background: var(--np-input-bg, #f0f4f8); font-family: inherit; }
.np-newsletter-form button { padding: 10px 16px; background: var(--np-primary, #0f172a); color: #fff; border: none; font-weight: 700; cursor: pointer; border-radius: var(--np-radius, 12px); transition: transform 0.18s, box-shadow 0.18s; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12); }
.np-newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16); }

/* Ad Banner */
.np-ad-section { padding: 20px 0; }
.np-ad-banner { background: #f5f5f5; border: 2px dashed #ddd; text-align: center; padding: 40px; color: #999; font-size: 14px; font-weight: 600; text-transform: uppercase; }

/* Footer — auth hero gradient */
.np-footer {
    background: linear-gradient(145deg, var(--np-gradient-start, #1e293b) 0%, var(--np-gradient-mid, #334155) 52%, var(--np-gradient-end, #2563eb) 130%);
    color: #fff;
    padding: 48px 0 0;
    margin-top: 40px;
    overflow: hidden;
}
.np-footer-inner { padding-bottom: 0; }
.np-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px 40px;
    padding-bottom: 28px;
}
.np-footer-col-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: 0.02em;
}
.np-footer-about p { font-size: 14px; opacity: 0.78; line-height: 1.75; max-width: 360px; }
.np-footer-social { margin-top: 16px; }
.np-footer-links { display: flex; flex-direction: column; gap: 10px; }
.np-footer-links a {
    font-size: 14px; opacity: 0.78; transition: opacity 0.2s, color 0.2s, transform 0.2s;
    display: inline-flex; align-items: center; gap: 6px;
}
.np-footer-links a::before {
    content: '';
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--np-secondary, #3b82f6); opacity: 0.7;
}
.np-footer-links a:hover { opacity: 1; color: var(--np-secondary, #3b82f6); transform: translateX(3px); }
.np-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.65;
    background: rgba(0,0,0,0.15);
}
.np-footer-grid-wrap { width: 100%; }
.np-layout-footer-bar { padding: 0; background: transparent; margin: 0; }
.np-layout-footer-bar .np-layout-row { margin: 0; }
.np-layout-footer-bar .np-layout-cols { align-items: flex-start; }
.np-layout-footer-bar .np-layout-col { min-width: 0; padding: 0 8px; background: transparent; }
.np-footer .np-layout-builder.se-styled-section { background: transparent; --se-bg: transparent; }
.np-footer .np-layout-col.se-styled-col { background: transparent; --se-bg: transparent; }
.np-layout-footer-bar .se-layout-block-inner { color: #fff; }
.np-layout-footer-bar .np-menu-v a,
.np-layout-footer-bar .np-footer-links a { color: rgba(255,255,255,0.85); }
.np-layout-footer-bar .np-menu-v a:hover,
.np-layout-footer-bar .np-footer-links a:hover { color: var(--np-secondary, #3b82f6); }
.np-layout-footer-bar .np-footer-col-title,
.np-layout-footer-bar .np-menu-v-title { color: #fff; font-family: var(--font-heading); margin: 0 0 14px; font-size: 16px; font-weight: 700; }
.np-layout-footer-bar .np-newsletter-block input { width: 100%; padding: 10px 12px; border-radius: 6px; border: 1px solid #444; background: #333; color: #fff; }
.np-layout-footer-bar .np-newsletter-block button,
.np-layout-footer-bar .np-newsletter-btn { background: var(--np-secondary, #3b82f6); color: #fff; border: none; padding: 10px 16px; border-radius: 6px; font-weight: 700; cursor: pointer; margin-top: 8px; }
.np-layout-header-bar { border-bottom: 1px solid #eee; padding: 16px 0; background: #fff; position: sticky; top: 0; z-index: 100; }
.np-layout-header-bar .np-layout-builder { padding: 0; }
.np-footer-logo { display: block; margin-bottom: 12px; max-height: 40px; width: auto; }
.np-footer-copyright { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.np-footer-copyright.np-align-left { justify-content: flex-start; }
.np-footer-copyright.np-align-right { justify-content: flex-end; }
.np-footer-copyright-logo { opacity: 0.85; }
.np-header-band-logo { flex-shrink: 0; }
.np-logo-lockup { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.np-logo-name { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--np-primary, #0f172a); letter-spacing: -0.5px; white-space: nowrap; }
.np-footer-about .np-footer-logo-name { color: #fff; font-size: 20px; font-weight: 800; }
.np-footer-about .np-logo-lockup { margin-bottom: 12px; }
.theme-nexa-chain-press .np-header-band-search { flex-shrink: 0; position: relative; }
.theme-nexa-chain-press .np-search-mode-icon .np-search-form-wrap { display: none; width: var(--np-search-width, 180px); }
.theme-nexa-chain-press .np-search-mode-icon.np-search-open .np-search-form-wrap { display: block; position: absolute; right: 0; top: 100%; margin-top: 8px; z-index: 20; background: #fff; padding: 8px; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.theme-nexa-chain-press .np-search-icon-btn { background: transparent; border: 1px solid #ddd; border-radius: 50%; width: calc(var(--np-search-icon-size, 18px) + 16px); height: calc(var(--np-search-icon-size, 18px) + 16px); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--np-primary, #0f172a); padding: 0; }
.theme-nexa-chain-press .np-search-icon-btn svg { width: var(--np-search-icon-size, 18px); height: var(--np-search-icon-size, 18px); }
.theme-nexa-chain-press .np-search-mode-bar .np-search-icon-btn { display: none; }
.theme-nexa-chain-press .np-search-mode-bar .np-search-form-wrap { display: block !important; position: static; box-shadow: none; border: none; padding: 0; }
.theme-nexa-chain-press .np-header-part { border-bottom: 1px solid #eee; padding: 12px 0; background: #fff; }

/* Inner Pages */
.np-inner-page { padding: 30px 0; min-height: 50vh; }
.np-article-page { padding-bottom: 0; }
.np-page-body .np-related--enhanced + .np-comments,
.np-page-body .np-comments + .np-related--enhanced { margin-top: 0; }
.np-article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }
.np-article-header h1 { font-family: var(--font-heading); font-size: 36px; line-height: 1.2; margin: 12px 0; }
.np-article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; color: #888; margin-bottom: 20px; }
.np-save-post-form { display: inline-flex; margin: 0; }
.np-save-post-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 999px; border: 1px solid #e2e8f0;
    background: #fff; color: #475569; font-size: 12px; font-weight: 700;
    cursor: pointer; font-family: inherit; line-height: 1;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.np-save-post-btn svg { flex-shrink: 0; }
.np-save-post-btn:hover {
    border-color: var(--np-secondary, #3b82f6); color: var(--np-secondary, #3b82f6);
    transform: translateY(-1px); box-shadow: 0 4px 12px rgba(77,178,236,0.15);
}
.np-save-post-btn.is-saved {
    background: linear-gradient(135deg, var(--np-secondary, #3b82f6), #3a9fd4);
    border-color: transparent; color: #fff;
    box-shadow: 0 4px 14px rgba(77,178,236,0.3);
}
.np-save-post-btn.is-saved:hover { opacity: 0.92; color: #fff; }
.np-article-featured { margin-bottom: 24px; border-radius: 4px; overflow: hidden; }
.np-article-featured .np-thumb { height: 400px; }
.np-article-content { font-size: 16px; line-height: 1.8; }
.np-article-content h2 { font-family: var(--font-heading); margin-top: 28px; }
.np-article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.np-tag { background: #f0f0f0; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.np-related { padding: 40px 0; background: #fafafa; margin-top: 30px; }
.np-page-head { margin-bottom: 24px; }
.np-empty { color: #888; font-style: italic; }
.np-static-page { max-width: 800px; }

/* RTL Support */
[dir="rtl"] .np-footer-links a:hover { transform: translateX(-3px); }
[dir="rtl"] .np-header-band .np-header-inner { direction: rtl; }
[dir="rtl"] .np-topbar-inner { flex-direction: row-reverse; }
[dir="rtl"] .np-topbar-left, [dir="rtl"] .np-topbar-right { flex-direction: row-reverse; }
[dir="rtl"] .np-user-dropdown { right: auto; left: 0; }
[dir="rtl"] .np-header-inner { flex-direction: row-reverse; }
[dir="rtl"] .np-main-nav { flex-direction: row-reverse; }
[dir="rtl"] .np-hero-grid { direction: rtl; }
[dir="rtl"] .np-two-col-grid { direction: rtl; }
[dir="rtl"] .np-post-card-small-link { flex-direction: row-reverse; }
[dir="rtl"] .np-footer-grid { direction: rtl; }
[dir="rtl"] body.np-body { text-align: right; }
[dir="rtl"] .np-footer-links a::before { order: 1; }

/* Responsive */
@media (max-width: 1024px) {
    .np-hero-grid { grid-template-columns: 1fr; }
    .np-thumb-xl { height: 300px; }
}
@media (max-width: 768px) {
    .np-header-band .np-header-inner {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
    }
    .np-header-band-menu-wrap {
        grid-column: 1 / -1;
        grid-row: auto;
        position: static;
        overflow: visible;
        height: 0;
        padding: 0;
        margin: 0;
    }
    .np-header-band .np-header-band-search,
    .np-header-band .se-header-part[data-header-part="search"] { grid-column: 3; grid-row: 1; }
    .np-header-band .np-mobile-toggle { display: flex; grid-column: 1; grid-row: 1; }
    .np-header-band-logo { grid-column: 2; grid-row: 1; justify-self: start; }
    .np-header-band .np-main-nav,
    .np-header-main .np-main-nav,
    .np-header:not(.np-header-band) .np-main-nav {
        display: none;
        position: fixed;
        left: 12px;
        right: 12px;
        top: var(--np-mobile-nav-top, 72px);
        z-index: 1001;
        background: #fff;
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: min(70vh, calc(100vh - var(--np-mobile-nav-top, 72px) - 16px));
        padding: 10px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 16px;
        box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
        gap: 4px;
        animation: npMobileNavIn 0.28s ease;
    }
    @keyframes npMobileNavIn {
        from { opacity: 0; transform: translateY(-10px) scale(0.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .np-header-band .np-main-nav a,
    .np-header-main .np-main-nav a,
    .np-header:not(.np-header-band) .np-main-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 12px;
        border-bottom: none;
        white-space: normal;
        font-size: 15px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
        color: #1e293b;
        transition: background 0.15s, color 0.15s, padding-left 0.15s;
    }
    .np-header-band .np-main-nav a:hover,
    .np-header-main .np-main-nav a:hover,
    .np-header:not(.np-header-band) .np-main-nav a:hover,
    .np-header-band .np-main-nav a:focus-visible,
    .np-header-main .np-main-nav a:focus-visible,
    .np-header:not(.np-header-band) .np-main-nav a:focus-visible {
        background: rgba(77, 178, 236, 0.12);
        color: var(--np-secondary, #3b82f6);
        padding-left: 18px;
    }
    .np-nav-open .np-header-band .np-main-nav,
    .np-nav-open .np-header-main .np-main-nav,
    .np-nav-open .np-header:not(.np-header-band) .np-main-nav,
    .np-nav-open .np-main-nav { display: flex; }
    .np-nav-item--dropdown { display: block; width: 100%; }
    .np-nav-item--dropdown .np-nav-dropdown-trigger {
        width: 100%; justify-content: space-between; padding: 12px 14px; border-radius: 12px;
        text-transform: none; font-size: 15px;
    }
    .np-nav-item--dropdown .np-nav-dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
        box-shadow: none; border: none; background: transparent; padding: 0 0 8px 12px; min-width: 0; max-width: none;
        display: none;
    }
    .np-nav-item--dropdown .np-nav-dropdown-menu::before { display: none; }
    .np-nav-item--dropdown.is-open .np-nav-dropdown-menu { display: block; }
    .np-nav-dropdown-all { background: var(--np-theme-surface-soft, color-mix(in srgb, var(--np-secondary) 10%, #fff)); }
    .np-nav-dropdown-menu a.np-nav-dropdown-child,
    .np-nav-dropdown-menu .np-nav-subgroup-list a { padding: 10px 14px !important; border-radius: 10px; }
    .np-mobile-toggle { display: flex; }
    .np-header-main .np-header-inner,
    .np-header:not(.np-header-band) .np-header-inner {
        position: relative;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
    }
    .np-header-main .np-mobile-toggle { grid-column: 1; }
    .np-header-main .np-logo-link { grid-column: 2; justify-self: start; min-width: 0; }
    .np-header-main .np-main-nav { grid-column: 1 / -1; }
    .np-header { position: sticky; }
    .np-two-col-grid, .np-article-layout { grid-template-columns: 1fr; }
    .np-footer { padding: 32px 0 0; }
    .np-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        padding-bottom: 24px;
    }
    .np-footer-about { grid-column: 1 / -1; }
    .np-footer-bottom { padding: 14px 0; font-size: 12px; }
    .np-footer-social { flex-wrap: wrap; gap: 10px; }
    .np-layout-footer-bar .np-layout-cols { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
    .np-layout-footer-bar .np-layout-col:first-child { grid-column: 1 / -1; }
    .np-header-search { display: none; }
    .np-article-header h1 { font-size: 26px; }
    .np-related-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; }
    .np-related-card { flex: 0 0 min(78vw, 260px); }
    .np-related-head { flex-direction: column; }
}
@media (max-width: 480px) {
    .np-footer-grid { grid-template-columns: 1fr; }
    .np-layout-footer-bar .np-layout-cols { grid-template-columns: 1fr !important; }
    .np-logo-text { font-size: 24px; }
}

/* Legacy fixed column classes (non-responsive sections) */
.np-posts-grid.np-cols-1 { grid-template-columns: 1fr; }
.np-posts-grid.np-cols-2 { grid-template-columns: repeat(2, 1fr); }
.np-posts-grid.np-cols-3 { grid-template-columns: repeat(3, 1fr); }
.np-posts-grid.np-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Related posts enhanced */
.np-related--enhanced {
    padding: 56px 0 64px;
    margin-top: 8px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
}
.np-related-head {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.np-related-head-icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--np-secondary, #3b82f6), var(--np-primary, #0f172a));
    color: #fff; font-size: 18px; font-weight: 700;
}
.np-related-kicker {
    display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--np-secondary, #3b82f6); margin-bottom: 4px;
}
.np-related-sub { margin: 6px 0 0; font-size: 14px; color: #64748b; max-width: 520px; }
.np-related-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 8px;
}
@media (min-width: 1100px) {
    .np-related-grid {
        overflow-x: visible;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.np-related-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    min-width: 0;
    background: #fff; border-radius: 16px; overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
    animation: npRelatedIn 0.45s ease both;
    animation-delay: calc(var(--np-related-i, 0) * 0.06s);
}
@media (min-width: 1100px) {
    .np-related-card { flex: none; }
}
@keyframes npRelatedIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.np-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(77, 178, 236, 0.45);
}
.np-related-card-link { display: block; color: inherit; height: 100%; }
.np-related-thumb { aspect-ratio: 16/10; overflow: hidden; background: #f1f5f9; }
.np-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.np-related-card:hover .np-related-thumb img { transform: scale(1.04); }
.np-related-body { padding: 18px 18px 20px; }
.np-related-body h3 {
    margin: 0 0 8px; font-size: 17px; line-height: 1.35;
    font-family: var(--font-heading); color: var(--np-primary, #0f172a);
}
.np-related-body p { margin: 0 0 12px; font-size: 13px; color: #64748b; line-height: 1.55; }
.np-related-cta {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 700; color: var(--np-secondary, #3b82f6);
}

/* Internal links block in articles */
.np-internal-links { margin: 36px 0 0; padding: 24px; border-radius: 14px; background: linear-gradient(135deg, rgba(77,178,236,0.08), rgba(34,34,34,0.04)); border: 1px solid rgba(77,178,236,0.25); }
.np-internal-links-title { margin: 0 0 16px; font-size: 18px; font-family: var(--font-heading); }
.np-internal-links-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.np-internal-links-list li { display: flex; flex-direction: column; gap: 4px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.np-internal-links-list li:last-child { border-bottom: none; padding-bottom: 0; }
.np-internal-links-list a { font-weight: 700; color: var(--np-primary, #0f172a); }
.np-internal-links-list a:hover { color: var(--np-secondary, #3b82f6); }
.np-internal-links-list span { font-size: 13px; color: #64748b; }
.np-internal-links-more { margin: 16px 0 0; font-size: 14px; }
.np-internal-links-more a { font-weight: 700; color: var(--np-secondary, #3b82f6); }
.np-article-content a.np-internal-link,
.np-article-content .np-internal-links a {
    color: var(--np-secondary, #3b82f6);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.np-article-content a.np-internal-link:hover,
.np-article-content .np-internal-links a:hover {
    color: var(--np-primary, #0f172a);
}
.np-article-content a:not(.np-cat-badge) {
    color: var(--np-secondary, #3b82f6);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.np-nav-open { overflow: hidden; }
body.np-nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
    z-index: 1000;
    pointer-events: auto;
    animation: npOverlayIn 0.2s ease;
}

/* Nexa Chain — lighter overlay; keep header + toggle above backdrop */
body.np-nav-open.theme-nexa-chain-press::before,
body.theme-nexa-chain-press.np-nav-open::before {
    background: rgba(17, 17, 17, 0.45);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1190;
}

@keyframes npOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.np-nav-open .np-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 20px; }
.np-nav-open .np-mobile-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.np-nav-open .np-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }
.np-carousel { position: relative; display: flex; align-items: center; gap: 8px; }
.np-carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; flex: 1; padding: 4px 0; scrollbar-width: none; }
.np-carousel-track::-webkit-scrollbar { display: none; }
.np-carousel-slide { flex: 0 0 calc(33.333% - 14px); scroll-snap-align: start; min-width: 280px; }
.np-carousel-btn { background: var(--np-primary, #0f172a); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 20px; flex-shrink: 0; }
.np-carousel-section { padding: 30px 0; }

/* Multi column */
.np-multi-column { padding: 30px 0; }
.np-multi-col-grid { display: grid; gap: 24px; }
.np-multi-cols-2 { grid-template-columns: 1fr 1fr; }
.np-multi-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.np-multi-col-title { font-family: var(--font-heading); font-size: 16px; border-bottom: 2px solid var(--np-secondary, #3b82f6); padding-bottom: 8px; margin-bottom: 16px; }

/* Social icons component */
.np-social-section { padding: 30px 0; text-align: center; }
.np-text-center { text-align: center; }
.np-social-icons-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }
.np-social-icon { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; text-transform: uppercase; transition: transform 0.2s, opacity 0.2s; }
.np-social-icon:hover { transform: translateY(-2px); opacity: 0.9; }
.np-social-rounded .np-social-icon { padding: 10px 18px; border-radius: 8px; color: #fff; }
.np-social-circle .np-social-icon { width: 44px; height: 44px; border-radius: 50%; color: #fff; font-size: 10px; }
.np-social-square .np-social-icon { width: 44px; height: 44px; border-radius: 4px; color: #fff; font-size: 10px; }
.np-social-minimal .np-social-icon { padding: 8px 14px; border: 2px solid #eee; border-radius: 4px; color: #0f172a; }
.np-social-size-small .np-social-icon { transform: scale(0.85); }
.np-social-size-large .np-social-icon { transform: scale(1.15); }
.np-social-facebook { background: #3b5998; }
.np-social-twitter { background: #1da1f2; }
.np-social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.np-social-youtube { background: #ff0000; }
.np-social-linkedin { background: #0077b5; }
.np-social-tiktok { background: #010101; }
.np-social-minimal .np-social-facebook, .np-social-minimal .np-social-twitter,
.np-social-minimal .np-social-instagram, .np-social-minimal .np-social-youtube { background: transparent; color: #0f172a; }

/* Static HTML — always full width of its parent (page, column, or block) */
.np-static-html,
.np-static-html--fullwidth {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 0;
}
.np-static-html--designed { padding: 0; background: transparent; overflow: visible; }
.np-static-html__content {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}
.np-layout-col .np-static-html,
.se-layout-block-inner .np-static-html {
    width: 100%;
}

/* Static page design — full-width banner, content aligned to .np-container (1200px, same as trending) */
.np-sp-page { color: var(--np-text, #0f172a); width: 100%; }
.np-sp-hero {
    width: 100%;
    background: linear-gradient(145deg, var(--np-gradient-start, #1e293b) 0%, var(--np-gradient-mid, #334155) 55%, var(--np-gradient-end, #2563eb) 130%);
    color: #fff;
    padding: 48px 0 56px;
    border-radius: 0;
}
.np-sp-body { padding: 32px 0 48px; background: var(--np-page-bg, #f1f5f9); }
.np-sp-body > .np-container,
.np-sp-hero > .np-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.np-sp-hero--compact { padding: 40px 0 44px; }
.np-sp-cta--inline .np-sp-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.np-sp-cta--inline h2 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 1.25rem; color: #fff; }
.np-sp-cta--inline p { margin: 0; opacity: 0.85; font-size: 14px; }
.np-sp-cta--inline .np-sp-btn { background: #fff; color: var(--np-primary, #0f172a) !important; box-shadow: none; }
.np-sp-hero--legal { padding: 44px 0 40px; }
.np-sp-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 32px;
    align-items: center;
}
.np-sp-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 14px;
}
.np-sp-hero h1 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    line-height: 1.15;
    font-weight: 800;
}
.np-sp-lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    opacity: 0.92;
    max-width: 640px;
}
.np-sp-hero-text { margin: 16px 0 0; opacity: 1; line-height: 1.75; max-width: 560px; font-size: 15px; color: rgba(255,255,255,0.92) !important; }
.np-sp-lead { color: rgba(255,255,255,0.92) !important; }
.np-sp-updated { margin: 14px 0 0; font-size: 13px; color: rgba(255,255,255,0.78) !important; opacity: 1; }
.np-sp-hero p,
.np-sp-hero .np-sp-hero-text,
.np-sp-hero .np-sp-lead { color: rgba(255,255,255,0.92) !important; }
.se-styled-section.np-sp-hero p,
.se-styled-section .np-sp-hero p { color: rgba(255,255,255,0.92) !important; }
.np-sp-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: var(--np-radius-lg, 16px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}
.np-sp-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}
.np-sp-stat strong { font-size: 15px; font-weight: 800; }
.np-sp-stat span { font-size: 12px; opacity: 0.78; }
.np-sp-grid { display: grid; gap: 20px; }
.np-sp-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.np-sp-feature,
.np-sp-contact-card,
.np-sp-card {
    background: var(--np-surface, #fff);
    border: 1px solid var(--np-border, rgba(15,23,42,0.08));
    border-radius: var(--np-radius-lg, 16px);
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.np-sp-feature-icon,
.np-sp-contact-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: rgba(59,130,246,0.1);
    color: var(--np-secondary, #3b82f6);
    margin-bottom: 16px;
}
.np-sp-feature h2,
.np-sp-contact-card h2,
.np-sp-card h2,
.np-sp-section h2 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--np-text, #0f172a);
}
.np-sp-feature p,
.np-sp-contact-card p,
.np-sp-section p { margin: 0 0 12px; color: var(--np-text-muted, #64748b); line-height: 1.7; font-size: 14px; }
.np-sp-feature p:last-child,
.np-sp-contact-card p:last-child,
.np-sp-section p:last-child { margin-bottom: 0; }
.np-sp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.np-sp-card--gradient {
    background: linear-gradient(145deg, rgba(30,41,59,0.04), rgba(59,130,246,0.08));
    border-color: rgba(59,130,246,0.15);
}
.np-sp-checklist { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 10px; }
.np-sp-checklist li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--np-text-muted, #64748b);
}
.np-sp-checklist li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--np-secondary, #3b82f6);
}
.np-sp-link { display: inline-block; margin-top: 8px; color: var(--np-secondary, #3b82f6); font-weight: 700; font-size: 14px; word-break: break-all; }
.np-sp-link:hover { text-decoration: underline; }
.np-sp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 22px;
    background: var(--np-primary, #0f172a);
    color: #fff !important;
    font-weight: 700; font-size: 14px;
    border-radius: var(--np-radius, 12px);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
    transition: transform 0.18s, box-shadow 0.18s;
}
.np-sp-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18); color: #fff !important; }
.np-sp-btn--sm { padding: 10px 16px; font-size: 13px; margin-top: 10px; }
.np-sp-meta-list { list-style: none; padding: 0; margin: 10px 0 0; font-size: 14px; color: var(--np-text-muted, #64748b); }
.np-sp-meta-list li { padding: 6px 0; border-top: 1px solid var(--np-border, #e2e8f0); }
.np-sp-meta-list li:first-child { border-top: none; padding-top: 0; }
.np-sp-cta {
    background: linear-gradient(135deg, var(--np-primary, #0f172a), #1e3a5f);
    color: #fff;
    padding: 36px 0;
    margin-top: 8px;
}
.np-sp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.np-sp-cta h2 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 1.35rem; }
.np-sp-cta p { margin: 0; opacity: 0.85; font-size: 14px; }
.np-sp-cta .np-sp-btn { background: #fff; color: var(--np-primary, #0f172a) !important; box-shadow: none; }
.np-sp-cta .np-sp-btn:hover { color: var(--np-primary, #0f172a) !important; }
.np-sp-cta.np-sp-cta--inline {
    margin-top: 28px;
    border-radius: var(--np-radius-lg, 16px);
    padding: 32px 28px;
}
.np-sp-section-title { margin: 0 0 16px; font-family: var(--font-heading); font-size: 1.25rem; }
.np-sp-faq { margin-top: 36px; }
.np-sp-accordion { display: flex; flex-direction: column; gap: 10px; }
.np-sp-faq-item {
    background: var(--np-surface, #fff);
    border: 1px solid var(--np-border, rgba(15,23,42,0.08));
    border-radius: var(--np-radius, 12px);
    padding: 0 18px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.np-sp-faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 0;
    list-style: none;
    color: var(--np-text, #0f172a);
}
.np-sp-faq-item summary::-webkit-details-marker { display: none; }
.np-sp-faq-item p { padding: 0 0 16px; margin: 0; font-size: 14px; color: var(--np-text-muted, #64748b); line-height: 1.65; }
.np-sp-legal-wrap {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.np-sp-legal-wrap--single { grid-template-columns: 1fr; max-width: 760px; }
.np-sp-toc {
    position: sticky;
    top: 88px;
    background: var(--np-surface, #fff);
    border: 1px solid var(--np-border, rgba(15,23,42,0.08));
    border-radius: var(--np-radius-lg, 16px);
    padding: 18px 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.np-sp-toc-label {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--np-text-muted, #64748b);
}
.np-sp-toc ol { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.np-sp-toc a { font-size: 13px; font-weight: 600; color: var(--np-text-muted, #64748b); text-decoration: none; transition: color 0.15s; }
.np-sp-toc a:hover { color: var(--np-secondary, #3b82f6); }
.np-sp-legal-sections { display: flex; flex-direction: column; gap: 16px; }
.np-sp-section {
    background: var(--np-surface, #fff);
    border: 1px solid var(--np-border, rgba(15,23,42,0.08));
    border-radius: var(--np-radius-lg, 16px);
    padding: 22px 24px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    scroll-margin-top: 96px;
}
.np-sp-section-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--np-secondary, #3b82f6);
    margin-bottom: 8px;
}
.np-sp-list { margin: 10px 0 0; padding-left: 20px; color: var(--np-text-muted, #64748b); font-size: 14px; line-height: 1.7; }
.np-sp-list li { margin-bottom: 8px; }
.np-sp-section a { color: var(--np-secondary, #3b82f6); font-weight: 600; }
.np-sp-callout {
    padding: 18px 20px;
    border-radius: var(--np-radius-lg, 16px);
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.np-sp-callout--warn {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
    color: #92400e;
}
.np-sp-callout strong { display: block; margin-bottom: 6px; font-size: 15px; }
.np-sp-callout p { margin: 0; font-size: 14px; line-height: 1.65; color: inherit; opacity: 0.92; }
.np-sp-card--prose {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 28px;
}
.np-sp-card--prose h1 { font-family: var(--font-heading); font-size: 2rem; margin: 0 0 16px; }
.np-sp-card--prose h2 { font-family: var(--font-heading); font-size: 1.25rem; margin: 24px 0 10px; }
.np-sp-card--prose p, .np-sp-card--prose li { color: var(--np-text-muted, #64748b); line-height: 1.75; font-size: 15px; }
.np-sp-card--prose a { color: var(--np-secondary, #3b82f6); font-weight: 600; }

@media (max-width: 991px) {
    .np-sp-hero-grid { grid-template-columns: 1fr; }
    .np-sp-grid--3 { grid-template-columns: 1fr; }
    .np-sp-split { grid-template-columns: 1fr; }
    .np-sp-legal-wrap { grid-template-columns: 1fr; }
    .np-sp-toc { position: static; }
}
@media (max-width: 575px) {
    .np-sp-hero { padding: 32px 0 36px; }
    .np-sp-body { padding: 28px 0 36px; }
    .np-sp-cta-inner { flex-direction: column; align-items: flex-start; }
}

.np-custom-block { padding: 20px; }

/* New components */
.np-heading-block { padding: 40px 0; }
.np-heading-block.np-align-center { text-align: center; }
.np-heading-block.np-align-left { text-align: left; }
.np-heading-block.np-align-right { text-align: right; }
.np-heading-sub { font-size: 18px; color: #666; margin: 8px 0 16px; }
.np-heading-text { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.np-cta-banner { padding: 50px 0; }
.np-cta-dark { background: #0f172a; color: #fff; }
.np-cta-light { background: #f5f5f5; color: #0f172a; }
.np-cta-accent { background: var(--np-secondary, #3b82f6); color: #fff; }
.np-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.np-cta-inner h2 { margin: 0 0 8px; font-family: var(--font-heading); }
.np-cta-btn { display: inline-block; padding: 12px 28px; background: var(--np-secondary, #3b82f6); color: #fff; font-weight: 700; border-radius: 4px; white-space: nowrap; }
.np-cta-dark .np-cta-btn { background: #fff; color: #0f172a; }
.np-newsletter-block { padding: 50px 0; }
.np-nl-light { background: #f8fafc; color: var(--np-text-primary, #111); }
.np-nl-dark { background: #111; color: #fff; }
.np-nl-prefooter {
    width: 100%;
    background: linear-gradient(135deg, #111 0%, #222 50%, #333 100%);
    color: #fff;
    padding: 56px 0;
    border-top: 3px solid var(--np-secondary, #555);
}
.np-nl-prefooter .np-nl-inner { max-width: 720px; }
.np-nl-prefooter h2 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.np-nl-prefooter p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
}
.np-nl-prefooter .np-nl-form { margin-top: 22px; }
.np-nl-prefooter .np-nl-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    background: #fff;
    color: #111 !important;
    font-size: 15px;
}
.np-nl-prefooter .np-nl-form input::placeholder { color: #777; opacity: 1; }
.np-nl-prefooter .np-nl-form button {
    padding: 14px 28px;
    background: var(--np-primary, #111);
    color: #fff !important;
    border: 2px solid #fff;
    font-weight: 800;
    border-radius: 0;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}
.np-nl-prefooter .np-nl-form button:hover {
    background: #fff;
    color: #111 !important;
}
.se-prefooter-shell { width: 100%; }
.se-prefooter-shell .np-newsletter-block { margin: 0; }
.np-nl-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.np-nl-form { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.np-nl-form input { flex: 1; min-width: 200px; padding: 12px; border: 1px solid #ddd; border-radius: 4px; }
.np-nl-form button { padding: 12px 24px; background: var(--np-primary, #0f172a); color: #fff; border: none; font-weight: 700; border-radius: 4px; cursor: pointer; }
.np-icon-grid { display: grid; gap: 24px; margin-top: 24px; }
.np-icon-cols-2 { grid-template-columns: repeat(2, 1fr); }
.np-icon-cols-3 { grid-template-columns: repeat(3, 1fr); }
.np-icon-cols-4 { grid-template-columns: repeat(4, 1fr); }
.np-icon-item { text-align: center; padding: 24px 16px; border: 1px solid #eee; border-radius: 8px; }
.np-icon-symbol { font-size: 32px; display: block; margin-bottom: 12px; }
.np-icon-item h3 { font-size: 16px; margin: 0 0 8px; font-family: var(--font-heading); }
.np-icon-item p { font-size: 14px; color: #666; margin: 0; }
.np-spacer { display: flex; align-items: center; justify-content: center; }
.np-spacer-line { width: 100%; border: none; border-top: 1px solid #eee; margin: 0; }
.np-line-dashed { border-top-style: dashed; }
.np-line-dotted { border-top-style: dotted; }
.np-video-embed { padding: 30px 0; }
.np-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; }
.np-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.np-aspect-4x3 { padding-bottom: 75%; }
.np-aspect-21x9 { padding-bottom: 42.86%; }

/* Site editor highlight */
.se-editable-section.se-highlight { outline: 3px solid #3b82f6; outline-offset: 4px; transition: outline 0.3s; }

/* Comments */
.np-comments { margin-top: 48px; padding: 0 0 12px; }
.np-comments .np-container { padding-left: 20px; padding-right: 20px; }
.np-comments-shell {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, #FAFBFE 0%, #FFFFFF 28%);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.np-comments-header {
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(135deg, rgba(77, 178, 236, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
}
.np-comments-header-main { display: flex; align-items: center; gap: 14px; }
.np-comments-badge {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; background: linear-gradient(135deg, var(--np-secondary, #3b82f6), #0984E3);
    box-shadow: 0 8px 18px rgba(77, 178, 236, 0.28);
}
.np-comments-title {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin: 0;
    letter-spacing: 0.02em; text-transform: none; color: var(--np-primary, #0f172a);
}
.np-comments-sub { margin: 4px 0 0; font-size: 13px; color: #64748B; }
.np-comment-compose {
    padding: 22px 24px 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.np-comment-compose-title {
    font-family: var(--font-heading); font-size: 15px; font-weight: 700;
    margin: 0 0 16px; color: var(--np-primary, #0f172a);
}
.np-comment-form { margin: 0; }
.np-form-row {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px;
}
@media (max-width: 640px) { .np-form-row { grid-template-columns: 1fr; } }
.np-field { display: flex; flex-direction: column; gap: 6px; }
.np-field-full { margin-bottom: 14px; }
.np-field-label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #64748B; }
.np-comment-form input,
.np-comment-form textarea {
    width: 100%; padding: 12px 14px; border: 1px solid #D9E2EC; border-radius: 10px;
    font-family: inherit; font-size: 14px; color: #1E293B; background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.np-comment-form input:focus,
.np-comment-form textarea:focus {
    outline: none; border-color: var(--np-secondary, #3b82f6);
    box-shadow: 0 0 0 3px rgba(77, 178, 236, 0.15);
}
.np-comment-form textarea { resize: vertical; min-height: 112px; }
.np-comment-form-actions { display: flex; justify-content: flex-end; }
.np-btn-comment {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, var(--np-primary, #0f172a) 0%, #334155 100%);
    color: #fff; border: none; padding: 12px 22px; font-weight: 700; border-radius: 10px;
    cursor: pointer; font-size: 14px; transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}
.np-btn-comment:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18); }
.np-comment-list { padding: 8px 24px 24px; display: flex; flex-direction: column; gap: 14px; }
.np-comment-thread { display: flex; flex-direction: column; gap: 0; }
.np-comment-thread > .np-comment-card:first-child { margin-bottom: 0; }
.np-comment-card {
    padding: 18px; border-radius: 12px; border: 1px solid rgba(15, 23, 42, 0.07);
    background: #fff; transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.np-comment-card:hover { box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05); border-color: rgba(77, 178, 236, 0.18); }
.np-comment-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.np-comment-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; color: #fff;
    background: linear-gradient(135deg, var(--np-secondary, #3b82f6), #6C5CE7);
}
.np-comment-avatar--reply { width: 34px; height: 34px; font-size: 13px; background: linear-gradient(135deg, #94A3B8, #64748B); }
.np-comment-meta { min-width: 0; }
.np-comment-meta strong { display: block; font-size: 14px; font-weight: 700; color: var(--np-primary, #0f172a); line-height: 1.3; }
.np-comment-meta time { display: block; font-size: 12px; color: #94A3B8; margin-top: 2px; }
.np-comment-body p { margin: 0; font-size: 15px; line-height: 1.7; color: #334155; }
.np-comment-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.np-comment-status {
    font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 999px;
}
.np-comment-status--pending { background: #FEF3C7; color: #92400E; }
.np-comment-status--spam,
.np-comment-status--blocked { background: #FEE2E2; color: #991B1B; }
.np-comment-private-note { display: block; font-size: 11px; color: #94A3B8; margin-top: 4px; font-style: italic; }
.np-comment-card--private {
    border-style: dashed;
    background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
}
.np-comment-actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.np-comment-action {
    appearance: none; border: none; background: transparent; cursor: pointer;
    font-size: 13px; font-weight: 600; padding: 0; font-family: inherit;
}
.np-comment-action--edit { color: var(--np-secondary, #3b82f6); list-style: none; }
.np-comment-action--edit::-webkit-details-marker { display: none; }
.np-comment-action--delete { color: #DC2626; }
.np-comment-action--delete:hover { color: #B91C1C; }
.np-comment-edit { width: 100%; }
.np-comment-edit[open] .np-comment-action--edit { margin-bottom: 10px; display: inline-block; }
.np-comment-edit-form textarea {
    width: 100%; padding: 12px 14px; border: 1px solid #D9E2EC; border-radius: 10px;
    font-family: inherit; font-size: 14px; color: #1E293B; background: #fff; resize: vertical; min-height: 96px;
}
.np-comment-edit-form textarea:focus {
    outline: none; border-color: var(--np-secondary, #3b82f6);
    box-shadow: 0 0 0 3px rgba(77, 178, 236, 0.15);
}
.np-comment-edit-actions { display: flex; justify-content: flex-end; margin-top: 10px; }
.np-btn-comment--sm { padding: 9px 16px; font-size: 13px; }
.np-comment-delete-form { margin: 0; display: inline; }
.np-ai-reply {
    margin-top: 14px; padding: 14px 16px; border-radius: 10px;
    background: linear-gradient(135deg, rgba(77, 178, 236, 0.08) 0%, rgba(108, 92, 231, 0.06) 100%);
    border: 1px solid rgba(77, 178, 236, 0.16);
}
.np-ai-reply-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.np-ai-reply-badge {
    font-size: 10px; font-weight: 800; letter-spacing: 0.06em; padding: 3px 7px; border-radius: 6px;
    background: var(--np-secondary, #3b82f6); color: #fff;
}
.np-ai-reply-head strong { font-size: 13px; color: var(--np-primary, #0f172a); }
.np-ai-reply p { margin: 0; font-size: 14px; line-height: 1.65; color: #475569; }
.np-comment-reply {
    margin-top: 14px; margin-left: 18px; padding-left: 16px;
    border-left: 3px solid rgba(77, 178, 236, 0.35); background: #F8FAFC;
}
.np-comments-empty {
    text-align: center; padding: 36px 20px; border: 1px dashed #D9E2EC;
    border-radius: 12px; background: #FAFBFE;
}
.np-comments-empty-icon {
    width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--np-secondary, #3b82f6); background: rgba(77, 178, 236, 0.1);
}
.np-comments-empty h3 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 18px; color: var(--np-primary, #0f172a); }
.np-comments-empty p { margin: 0; font-size: 14px; color: #64748B; }
.np-alert { padding: 12px 14px; border-radius: 10px; margin: 0 24px 16px; font-size: 14px; }
.np-comments-shell > .np-alert:first-of-type { margin-top: 16px; }
.np-alert-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.np-alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.np-btn { background: var(--np-primary, #0f172a); color: #fff; border: none; padding: 12px 24px; font-weight: 700; border-radius: var(--np-radius, 12px); cursor: pointer; transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15); }
.np-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18); opacity: 0.96; }
.np-row-layout { padding: 30px 0; }
.np-row-cols { align-items: start; }
.np-row-col { padding: 12px; border-radius: 4px; }
.np-col-empty { padding: 24px; text-align: center; color: #888; border: 2px dashed #ddd; border-radius: 8px; font-size: 13px; }
.np-layout-builder { padding: 20px 0; }
.np-layout-col-empty { padding: 20px; text-align: center; color: #999; border: 2px dashed #ccc; border-radius: 6px; font-size: 12px; min-height: 48px; }
.se-layout-block-inner { display: block; width: 100%; }
.se-layout-block { margin-bottom: 8px; }
.se-styled-col { min-height: 24px; }

/* Styled sections (Site Editor style tab) */
.se-styled-section {
    background: var(--se-bg, transparent);
    color: var(--se-text, inherit);
    padding-top: var(--se-padding-top, var(--se-padding, 0));
    padding-right: var(--se-padding-right, var(--se-padding, 0));
    padding-bottom: var(--se-padding-bottom, var(--se-padding, 0));
    padding-left: var(--se-padding-left, var(--se-padding, 0));
    margin-top: var(--se-margin-top, var(--se-margin, 0));
    margin-right: var(--se-margin-right, var(--se-margin, 0));
    margin-bottom: var(--se-margin-bottom, var(--se-margin, 0));
    margin-left: var(--se-margin-left, var(--se-margin, 0));
    border-radius: var(--se-radius, 0);
    border: var(--se-border-width, 0) solid var(--se-border-color, transparent);
    font-size: var(--se-font-size, inherit);
    font-weight: var(--se-font-weight, inherit);
    font-family: var(--se-font-family, inherit);
    line-height: var(--se-line-height, inherit);
    text-align: var(--se-text-align, inherit);
}
.se-styled-section h1, .se-styled-section h2, .se-styled-section h3, .se-styled-section h4,
.se-styled-section .np-section-title, .se-styled-section .np-heading-title {
    color: var(--se-heading, inherit);
}
.se-styled-section p,
.se-styled-section li,
.se-styled-section .np-sp-body p,
.se-styled-section .np-widget-text {
    color: var(--se-paragraph, var(--se-text, inherit));
}
.se-styled-section .np-widget-title {
    color: var(--np-text-on-primary, #fff) !important;
}

/* Horizontal menu */
.np-menu-h { padding: 8px 0; }
.np-menu-h-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 20px; align-items: center; }
.np-menu-align-center .np-menu-h-list { justify-content: center; }
.np-menu-align-right .np-menu-h-list { justify-content: flex-end; }
.np-menu-h-link { font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--se-link, var(--np-primary, #0f172a)); text-decoration: none; transition: color 0.2s; padding: 6px 0; }
.np-menu-style-underline .np-menu-h-link:hover { color: var(--se-link-hover, var(--np-secondary, #3b82f6)); border-bottom: 2px solid var(--se-link-hover, var(--np-secondary, #3b82f6)); }
.np-menu-style-pill .np-menu-h-link { padding: 8px 16px; border-radius: 999px; }
.np-menu-style-pill .np-menu-h-link:hover { background: var(--se-link-hover, var(--np-secondary, #3b82f6)); color: #fff; }
.np-menu-style-boxed .np-menu-h-link { padding: 8px 14px; border: 1px solid #ddd; border-radius: 4px; }
.np-menu-style-boxed .np-menu-h-link:hover { border-color: var(--se-link-hover, #3b82f6); color: var(--se-link-hover, #3b82f6); }
.np-menu-style-minimal .np-menu-h-link { text-transform: none; font-weight: 500; }
.np-menu-style-minimal .np-menu-h-link:hover { color: var(--se-link-hover, #3b82f6); }

/* Vertical menu */
.np-menu-v-list { list-style: none; margin: 0; padding: 0; }
.np-menu-v-link { display: block; padding: 8px 0; color: var(--se-link, #444); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.np-menu-v-link:hover { color: var(--se-link-hover, var(--np-secondary, #3b82f6)); padding-left: 6px; }
.np-menu-style-spaced .np-menu-v-link { padding: 12px 0; border-bottom: 1px solid #eee; }
.np-menu-style-bordered .np-menu-v-link { padding: 10px 12px; border-left: 3px solid transparent; }
.np-menu-style-bordered .np-menu-v-link:hover { border-left-color: var(--se-link-hover, #3b82f6); background: #f8f8f8; }
.np-menu-v-title { margin: 0 0 12px; font-family: var(--font-heading); }

/* Search block */
.np-search-block { padding: 8px 0; }
.np-search-form { display: flex; gap: 8px; align-items: stretch; }
.np-search-input { flex: 1; padding: 10px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: inherit; }
.np-search-btn { padding: 10px 20px; background: var(--se-btn-bg, var(--np-secondary, #3b82f6)); color: var(--se-btn-text, #fff); border: none; border-radius: 4px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.np-search-btn:hover { background: var(--se-btn-hover-bg, var(--np-primary, #0f172a)); }
.np-search-pill .np-search-input { border-radius: 999px; padding-left: 18px; }
.np-search-pill .np-search-btn { border-radius: 999px; }
.np-search-minimal .np-search-input { border: none; border-bottom: 2px solid #0f172a; border-radius: 0; background: transparent; }
.np-search-minimal .np-search-btn { background: transparent; color: var(--np-primary, #0f172a); padding-left: 8px; }
.np-search-boxed .np-search-form { padding: 8px; background: #f5f5f5; border-radius: 8px; }
.np-search-hero .np-search-form { flex-direction: column; max-width: 520px; margin: 0 auto; }
.np-search-hero .np-search-input { padding: 16px 20px; font-size: 16px; border-radius: 8px; }
.np-search-hero .np-search-btn { padding: 14px; font-size: 15px; border-radius: 8px; }

/* Logo block */
.np-logo-block { padding: 8px 0; }

/* Component default spacing — overridden when Site Editor sets padding/margin (.se-has-spacing) */
.se-styled-section:not(.se-has-spacing).np-inner-page { padding-top: 30px; padding-bottom: 30px; }
.se-styled-section:not(.se-has-spacing).np-heading-block { padding-top: 40px; padding-bottom: 40px; }
.se-styled-section:not(.se-has-spacing).np-cta-banner { padding-top: 50px; padding-bottom: 50px; }
.se-styled-section:not(.se-has-spacing).np-newsletter-block { padding-top: 50px; padding-bottom: 50px; }
.se-styled-section:not(.se-has-spacing).np-social-section { padding-top: 30px; padding-bottom: 30px; }
.se-styled-section:not(.se-has-spacing).np-static-html { padding-top: 0; padding-bottom: 0; }
.se-styled-section:not(.se-has-spacing).np-video-embed { padding-top: 30px; padding-bottom: 30px; }
.se-styled-section:not(.se-has-spacing).np-row-layout { padding-top: 30px; padding-bottom: 30px; }
.se-styled-section:not(.se-has-spacing).np-layout-builder { padding-top: 20px; padding-bottom: 20px; }
.se-styled-section:not(.se-has-spacing).np-ad-section { padding-top: 20px; padding-bottom: 20px; }
.se-styled-section:not(.se-has-spacing).np-icon-grid-section { padding-top: 30px; padding-bottom: 30px; }
.se-styled-section:not(.se-has-spacing).np-search-block { padding-top: 8px; padding-bottom: 8px; }
.se-styled-section:not(.se-has-spacing).np-logo-block { padding-top: 8px; padding-bottom: 8px; }
.se-styled-section:not(.se-has-spacing).np-menu-h { padding-top: 8px; padding-bottom: 8px; }
.se-styled-section:not(.se-has-spacing).np-image-block { padding-top: 8px; padding-bottom: 8px; }
/* Flex alignment — reliable for block-level images at any width */
.np-image-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}
.np-image-block.np-image-align-left { align-items: flex-start; }
.np-image-block.np-image-align-center { align-items: center; }
.np-image-block.np-image-align-right { align-items: flex-end; }
.np-image-block .np-image-block-img,
.np-image-block .np-image-link {
    width: var(--np-image-width, auto);
    max-width: 100%;
    height: var(--np-image-height, auto);
    object-fit: var(--np-image-object-fit, contain);
    flex-shrink: 0;
}
.np-image-block .np-image-link { display: block; text-decoration: none; }

.se-styled-section a.np-heading-link,
.se-styled-section a.np-text-link,
.se-styled-section .np-paragraph-text a,
.se-styled-section .np-heading-text a {
    color: var(--se-link, var(--np-secondary, #3b82f6));
    text-decoration: underline;
    text-underline-offset: 2px;
}
.se-styled-section a.np-heading-link:hover,
.se-styled-section a.np-text-link:hover,
.se-styled-section .np-paragraph-text a:hover,
.se-styled-section .np-heading-text a:hover {
    color: var(--se-link-hover, var(--np-primary, #0f172a));
}
.np-paragraph-link-line { margin-top: 0.75rem; }
.np-image-block .np-image-block-img { box-sizing: border-box; display: block; }
.se-styled-section:not(.se-has-spacing).np-paragraph { padding-top: 12px; padding-bottom: 12px; }
.se-styled-section:not(.se-has-spacing).np-heading-only { padding-top: 16px; padding-bottom: 16px; }
.np-logo-align-center { text-align: center; }
.np-logo-align-right { text-align: right; }
.np-logo-link { text-decoration: none; color: inherit; }
.np-logo-text { font-family: var(--font-heading); font-size: 32px; font-weight: 900; color: var(--np-primary, #0f172a); letter-spacing: -1px; }
.np-logo-tagline { margin: 4px 0 0; font-size: 13px; color: #888; }
.np-logo-img { max-width: 100%; }
.np-logo-brand { display: block; object-fit: contain; max-width: 100%; }
.np-logo-brand:not(.np-logo-custom-size) { max-height: 48px; width: auto; height: auto; }
.np-logo-custom-size { max-height: none !important; }
.np-header .np-logo-brand:not(.np-logo-custom-size) { max-height: 48px; }
.np-menu-empty { font-size: 12px; color: #999; font-style: italic; }

@media (max-width: 768px) {
    .np-carousel-slide { flex: 0 0 85%; }
    .np-multi-cols-2, .np-multi-cols-3 { grid-template-columns: 1fr; }
}

/* ─── Premium header / footer polish ─── */
.np-topbar {
    background: linear-gradient(180deg, #0b1220 0%, #111827 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.np-topbar-inner { min-height: 42px; padding: 6px 0; }
.np-topbar-left { gap: 14px; }
.np-topbar-right { gap: 10px; }
.np-topbar-right::before {
    content: '';
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
    margin-right: 4px;
    display: none;
}
.np-topbar-social + .np-topbar-link::before {
    content: '';
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 4px;
}

/* GTranslate dropdown (top bar) */
.np-gtranslate-widget {
    display: inline-flex !important;
    align-items: center;
    min-height: 30px;
    position: relative;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
    clip: auto !important;
}

/* Main header band */
.np-header {
    padding: 16px 0;
    background: var(--np-surface, rgba(255, 255, 255, 0.97));
    border-bottom: 1px solid var(--np-border, rgba(15, 23, 42, 0.08));
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}
.np-header-band .np-main-nav a {
    position: relative;
    padding: 8px 2px;
    color: #1e293b;
    font-size: 13px;
    letter-spacing: 0.06em;
}
.np-header-band .np-main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--np-secondary, #3b82f6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    border-radius: 2px;
}
.np-header-band .np-main-nav a:hover { color: var(--np-secondary, #3b82f6); }
.np-header-band .np-main-nav a:hover::after { transform: scaleX(1); }
.np-logo-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.np-header-search .np-search-form-wrap,
.np-header-search form {
    position: relative;
    display: flex;
    align-items: center;
}
.np-header-search input[type="search"] {
    width: var(--np-search-width, 200px);
    padding: 10px 14px 10px 38px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: #f8fafc;
    font-size: 13px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.np-header-search input[type="search"]:focus {
    outline: none;
    border-color: var(--np-secondary, #3b82f6);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(77, 178, 236, 0.15);
}
.np-header-band-search::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Ccircle cx='11' cy='11' r='7' stroke-width='2'/%3E%3Cpath stroke-width='2' d='M20 20l-3-3'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
    z-index: 1;
}
.np-header-band-search.np-search-mode-icon::before,
.np-header-band-search.np-search-mode-bar::before {
    display: none !important;
    content: none !important;
}
.np-header-band-search .np-search-form-wrap { position: relative; }
.np-header-band-search.np-search-mode-bar:not(:has(.np-search-bar-form)) .np-search-form-wrap::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Ccircle cx='11' cy='11' r='7' stroke-width='2'/%3E%3Cpath stroke-width='2' d='M20 20l-3-3'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* Footer — auth hero gradient */
.np-footer {
    background: linear-gradient(145deg, var(--np-gradient-start, #1e293b) 0%, var(--np-gradient-mid, #334155) 52%, var(--np-gradient-end, #2563eb) 130%);
    color: rgba(255, 255, 255, 0.92);
    margin-top: 48px;
    padding-top: 52px;
}
.np-footer .np-section-title,
.np-layout-footer-bar > .np-container > .np-section-title {
    display: none !important;
}
.np-footer-col-title,
.np-layout-footer-bar .np-footer-col-title,
.np-layout-footer-bar .np-menu-v-title {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px !important;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--np-secondary, #3b82f6);
    display: inline-block;
    opacity: 1 !important;
}
.np-footer-about-text,
.np-layout-footer-bar .np-footer-about-text,
.np-layout-footer-bar .np-footer-about p {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}
.np-footer-about .np-footer-logo-name,
.np-footer-about .np-logo-name {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    font-size: 1.25rem;
}
.np-layout-footer-bar .np-menu-v-link,
.np-layout-footer-bar .np-footer-links a,
.np-layout-footer-bar .np-footer-categories a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    border: none;
}
.np-layout-footer-bar .np-menu-v-link:hover,
.np-layout-footer-bar .np-footer-links a:hover {
    color: #fff !important;
    padding-left: 4px;
}
.np-layout-footer-bar .np-footer-links a::before {
    background: var(--np-secondary, #3b82f6);
    opacity: 1;
}
.np-footer-bottom,
.np-footer-copyright {
    color: rgba(255, 255, 255, 0.55) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0 !important;
    margin-top: 8px;
}
.np-footer-copyright p { margin: 0; color: rgba(255, 255, 255, 0.55); font-size: 13px; }

[dir="rtl"] .np-header-band .np-main-nav a::after { transform-origin: center; }
[dir="rtl"] .np-layout-footer-bar .np-menu-v-link:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .np-footer-links a:hover { transform: translateX(-3px); }

@media (max-width: 768px) {
    .np-topbar-right::before { display: none; }
    .np-header { padding: 12px 0; }
    .np-topbar-menu-links { display: none; }
    .np-user-name { display: none; }
    .np-user-menu-trigger { padding-right: 8px; }
}

/* Share bar */
.np-share-bar {
    display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
    margin: 28px 0 8px; padding: 16px 18px;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}
.np-share-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; }
.np-share-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.np-share-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08);
    background: #fff; color: #334155; cursor: pointer;
    transition: transform 0.2s, background 0.2s, color 0.2s;
}
.np-share-btn:hover { transform: translateY(-2px); color: #fff; border-color: transparent; }
.np-share-btn--facebook:hover { background: #1877f2; }
.np-share-btn--twitter:hover { background: #0f1419; }
.np-share-btn--linkedin:hover { background: #0a66c2; }
.np-share-btn--whatsapp:hover { background: #25d366; }
.np-share-btn--email:hover { background: #64748b; }
.np-share-btn--copy:hover { background: var(--np-secondary, #3b82f6); }
.np-share-btn.is-copied { background: #10b981 !important; color: #fff !important; border-color: transparent; }

/* ============================================================
   All Categories Hub
   ============================================================ */
.np-cats-hub {
    padding: 44px 0 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--np-secondary) 12%, transparent), transparent 70%),
        linear-gradient(180deg, color-mix(in srgb, var(--np-secondary) 5%, var(--np-page-bg, #f8fafc)) 0%, var(--np-surface, #fff) 280px);
}
.np-cats-hub__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px 32px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.np-cats-hub__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--np-secondary, #3b82f6);
    margin-bottom: 10px;
}
.np-cats-hub__eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--np-secondary, #3b82f6), transparent);
}
.np-cats-hub__title {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--np-text, #0f172a);
}
.np-cats-hub__subtitle {
    margin: 0;
    max-width: 52ch;
    font-size: 16px;
    line-height: 1.65;
    color: #64748b;
}
.np-cats-hub__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.np-cats-hub__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.np-cats-hub__metric strong {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: var(--np-text, #0f172a);
}
.np-cats-hub__metric span {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}
.np-cats-hub__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: 28px;
}
.np-cats-hub__search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 280px;
    max-width: 420px;
    padding: 0 16px;
    height: 48px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.np-cats-hub__search:focus-within {
    border-color: var(--np-secondary, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.np-cats-hub__search svg { flex-shrink: 0; color: #94a3b8; }
.np-cats-hub__search input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--np-text, #0f172a);
    outline: none;
}
.np-cats-hub__search input::placeholder { color: #94a3b8; }
.np-cats-hub__result-count {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}
.np-cats-hub__grid.np-responsive-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(var(--np-cols-desktop, 3), minmax(0, 1fr));
}
@media (max-width: 991px) {
    .np-cats-hub__grid.np-responsive-grid {
        grid-template-columns: repeat(var(--np-cols-tablet, 2), minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .np-cats-hub__grid.np-responsive-grid {
        grid-template-columns: repeat(var(--np-cols-mobile, 1), minmax(0, 1fr));
    }
    .np-cats-hub { padding-top: 28px; }
    .np-cats-hub__hero { margin-bottom: 24px; }
}
.np-cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: npCatCardIn 0.5s ease both;
}
.np-cat-card:nth-child(2) { animation-delay: 0.05s; }
.np-cat-card:nth-child(3) { animation-delay: 0.1s; }
.np-cat-card:nth-child(4) { animation-delay: 0.15s; }
.np-cat-card:nth-child(5) { animation-delay: 0.2s; }
.np-cat-card:nth-child(6) { animation-delay: 0.25s; }
@keyframes npCatCardIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.np-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
    border-color: rgba(15, 23, 42, 0.12);
}
.np-cat-card__surface {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}
.np-cat-card__visual {
    position: relative;
    height: 148px;
    overflow: hidden;
    background: var(--cat-soft, #f1f5f9);
}
.np-cat-card__gradient {
    position: absolute;
    inset: 0;
    background: var(--np-theme-gradient, linear-gradient(135deg, var(--np-primary) 0%, var(--np-secondary) 100%));
    opacity: 0.94;
}
.np-cat-card__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.55;
    transition: transform 0.45s ease, opacity 0.3s ease;
}
.np-cat-card:hover .np-cat-card__photo {
    transform: scale(1.06);
    opacity: 0.65;
}
.np-cat-card__glyph {
    position: absolute;
    left: 22px;
    bottom: 16px;
    z-index: 2;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.22);
    user-select: none;
    pointer-events: none;
}
.np-cat-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.np-cat-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    padding: 20px 22px 22px;
}
.np-cat-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--np-text, #0f172a);
    transition: color 0.2s;
}
.np-cat-card:hover .np-cat-card__title { color: var(--cat-text, var(--np-secondary, #3b82f6)); }
.np-cat-card__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.np-cat-card__desc--muted { color: #94a3b8; font-style: italic; }
.np-cat-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--cat-text, var(--np-secondary, #3b82f6));
    transition: gap 0.2s ease;
}
.np-cat-card__cta svg { transition: transform 0.2s ease; }
.np-cat-card:hover .np-cat-card__cta { gap: 12px; }
.np-cat-card:hover .np-cat-card__cta svg { transform: translateX(3px); }
.np-cat-card__subs {
    padding: 0 18px 18px;
    margin-top: -4px;
}
.np-cat-card__subs-label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}
.np-cat-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.np-cat-card__chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.np-cat-card__chip:hover {
    color: var(--cat-text, var(--np-secondary, #3b82f6));
    background: var(--cat-soft, #eff6ff);
    border-color: rgba(59, 130, 246, 0.2);
}
.np-cat-card__chip--more {
    color: #94a3b8;
    background: transparent;
    border: 1px dashed #e2e8f0;
    cursor: default;
}
.np-cats-hub__empty,
.np-cats-hub__no-match {
    text-align: center;
    padding: 56px 24px;
    border-radius: 18px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #64748b;
}
.np-cats-hub__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
}
.np-cats-hub__empty h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #334155;
}
.np-cats-hub__empty p { margin: 0; font-size: 14px; }
.np-cats-hub__no-match { margin-top: 8px; font-size: 14px; font-weight: 600; }

/* Legacy aliases (editor previews) */
.np-all-categories-grid,
.np-all-categories-page { padding: 0; background: transparent; }
.np-categories-grid { display: grid; gap: 24px; }
.np-empty-state { text-align: center; padding: 56px 20px; color: #64748b; }

/* ============================================================
   Nexa Chain Press — TagDiv Chained News PRO aesthetic
   ============================================================ */
.theme-nexa-chain-press.ncp-body {
    background: #fff;
    color: var(--np-text);
    font-family: var(--font-body);
}

.theme-nexa-chain-press .np-container {
    max-width: 1200px;
}

/* —— Top utility bar —— */
.theme-nexa-chain-press .ncp-topbar {
    background: linear-gradient(90deg, var(--np-primary, #111) 0%, color-mix(in srgb, var(--np-primary, #111) 88%, var(--np-secondary, #467299)) 100%);
    border-bottom: 2px solid var(--np-secondary, #467299);
    font-size: 11px;
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1010;
}

.theme-nexa-chain-press .ncp-topbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    pointer-events: none;
}

.theme-nexa-chain-press .ncp-topbar .np-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 34px;
}

.theme-nexa-chain-press .ncp-topbar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.theme-nexa-chain-press .ncp-topbar .np-topbar-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-size: 10px;
    transition: color 0.2s;
}

.theme-nexa-chain-press .ncp-topbar .np-topbar-link:hover {
    color: var(--np-secondary, #555555);
}

.theme-nexa-chain-press .ncp-topbar-datetime,
.np-presentation-nexa-chain-press .ncp-topbar-datetime {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
}

.theme-nexa-chain-press .ncp-topbar-datetime svg,
.np-presentation-nexa-chain-press .ncp-topbar-datetime svg {
    opacity: 0.85;
    flex-shrink: 0;
}

.theme-nexa-chain-press .ncp-topbar-datetime time,
.np-presentation-nexa-chain-press .ncp-topbar-datetime time {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.theme-nexa-chain-press .ncp-topbar .np-social-links a:hover {
    background: var(--np-secondary, #555555);
    border-color: var(--np-secondary, #555555);
    color: #fff;
}

.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget select,
.theme-nexa-chain-press .ncp-topbar .goog-te-combo {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* GTranslate — selected trigger only (not dropdown options inside .gt_switcher) */
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_selected a,
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_selected a span,
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_selected font,
.theme-nexa-chain-press .np-topbar .np-gtranslate-widget .gt_selected a,
.theme-nexa-chain-press .np-topbar .np-gtranslate-widget .gt_selected a span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_selected a:hover,
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_selected a:hover span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Language list — dark text on white panel (overrides top bar color:inherit) */
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22) !important;
    max-height: 240px !important;
    height: auto !important;
    overflow-y: auto !important;
}

.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option a,
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option a span,
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option font {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}

.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option a:hover,
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option a:hover span,
.theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option a:hover font {
    color: var(--np-secondary, #467299) !important;
    -webkit-text-fill-color: var(--np-secondary, #467299) !important;
    background: color-mix(in srgb, var(--np-secondary, #467299) 10%, #fff) !important;
}

.theme-nexa-chain-press .ncp-topbar .ncp-topbar-register {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: var(--np-primary, #111);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--np-primary) 35%, transparent);
}

.theme-nexa-chain-press .ncp-topbar .ncp-topbar-register:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #fff !important;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--np-primary) 45%, transparent);
}

/* —— Main header —— */
.theme-nexa-chain-press .ncp-header {
    background: #fff;
    border-bottom: 1px solid var(--np-border);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
}

.theme-nexa-chain-press .ncp-header .se-header-part {
    position: relative;
    overflow: visible;
}

.theme-nexa-chain-press .ncp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 64px;
    padding: 10px 0;
}

.theme-nexa-chain-press .ncp-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.theme-nexa-chain-press .ncp-logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.theme-nexa-chain-press .ncp-logo-lockup--text-only img {
    display: none !important;
}

.theme-nexa-chain-press .ncp-logo-lockup--icon-only .ncp-logo-text,
.theme-nexa-chain-press .ncp-logo-lockup--icon-only .np-logo-text {
    display: none !important;
}

.theme-nexa-chain-press .ncp-header-logo .np-logo-lockup img {
    display: block;
    object-fit: contain;
}

.theme-nexa-chain-press .ncp-logo-text {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1;
}

.theme-nexa-chain-press .ncp-header-nav {
    flex: 1;
    justify-self: center;
    min-width: 0;
}

.theme-nexa-chain-press .ncp-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.theme-nexa-chain-press .ncp-header-actions-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.theme-nexa-chain-press .ncp-btn-subscribe,
.theme-nexa-chain-press .ncp-btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--np-primary, #111);
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 18px;
    line-height: 1;
    border: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--np-primary) 35%, transparent);
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.theme-nexa-chain-press .ncp-btn-subscribe:hover,
.theme-nexa-chain-press .ncp-btn-register:hover {
    background: var(--np-secondary, #467299);
    color: #fff !important;
    filter: none;
    transform: translateY(-1px);
}

.theme-nexa-chain-press .ncp-header-search {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.theme-nexa-chain-press .ncp-header-search-bar.np-search-bar-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: var(--np-search-width, 180px);
}

.theme-nexa-chain-press .ncp-header-search-bar.np-search-bar-form input[type="search"] {
    flex: 1;
    min-width: 0;
    width: auto;
    border: 1px solid var(--np-border, #e2e8f0);
    border-right: none;
    border-radius: 0;
    padding: 8px 12px;
    font-size: 12px;
    height: 36px;
    box-sizing: border-box;
    background: #fff;
    color: var(--np-text-primary, #111) !important;
}

.theme-nexa-chain-press .ncp-header-search-bar.np-search-bar-form .np-search-bar-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--np-primary, #111);
    border-radius: 0;
    background: var(--np-primary, #111);
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
    height: 36px;
    box-sizing: border-box;
}

.theme-nexa-chain-press .ncp-header-search-bar.np-search-bar-form .np-search-bar-submit:hover {
    background: var(--np-secondary, #467299);
    border-color: var(--np-secondary, #467299);
}

.theme-nexa-chain-press .ncp-header-search.np-search-mode-icon .np-search-form-wrap,
.theme-nexa-chain-press .ncp-header-search.np-search-mode-icon .np-search-form-inline {
    display: none !important;
}

.theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline,
.theme-nexa-chain-press .ncp-header .se-header-part.np-header-auth-inline {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline .ncp-sign-in,
.theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline .np-header-sign-in {
    line-height: 1;
    padding: 8px 0;
    white-space: nowrap;
}

.theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline .ncp-btn-register,
.theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline .np-header-register {
    padding: 9px 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline .np-header-auth-divider {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: rgba(17, 17, 17, 0.14);
    flex-shrink: 0;
}

/* Full-screen search overlay with backdrop blur */
.theme-nexa-chain-press .ncp-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.theme-nexa-chain-press .ncp-search-overlay[hidden] {
    display: none !important;
}

.theme-nexa-chain-press .ncp-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 18, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.theme-nexa-chain-press .ncp-search-modal {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    padding: 36px 32px 32px;
    animation: ncp-search-in 0.28s ease;
}

@keyframes ncp-search-in {
    from { opacity: 0; transform: translateY(-12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.theme-nexa-chain-press .ncp-search-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #555;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-nexa-chain-press .ncp-search-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #111;
}

.theme-nexa-chain-press .ncp-search-modal-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
}

.theme-nexa-chain-press .ncp-search-modal-field {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.theme-nexa-chain-press .ncp-search-modal-form input[type="search"] {
    flex: 1;
    border: 1px solid var(--np-border);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 17px;
    background: #fff;
    min-width: 0;
}

.theme-nexa-chain-press .ncp-search-modal-form input[type="search"]:focus {
    outline: none;
    border-color: var(--ncp-accent, #467299);
    box-shadow: 0 0 0 3px rgba(70, 114, 153, 0.15);
}

.theme-nexa-chain-press .ncp-search-modal-submit {
    border: none;
    border-radius: 10px;
    background: var(--ncp-accent, #467299);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 22px;
    cursor: pointer;
    white-space: nowrap;
}

.theme-nexa-chain-press .ncp-search-modal-submit:hover {
    filter: brightness(1.06);
}

body.ncp-search-open {
    overflow: hidden;
}

.theme-nexa-chain-press .ncp-footer-empty {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

.ncp-hot {
    font-style: normal;
}

.ncp-side-title {
    text-transform: none;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 6px 0 4px;
}

.ncp-recent-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    text-decoration: none;
    color: inherit;
}

.ncp-recent-text {
    flex: 1;
    min-width: 0;
}

.ncp-recent-item h4 {
    text-transform: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 6px;
}

.ncp-thumb-recent {
    width: 72px;
    min-width: 72px;
    height: 72px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Inner pages — blog, article, category */
.theme-nexa-chain-press .np-inner-page {
    padding: 32px 0 48px;
}

.theme-nexa-chain-press .np-page-head .np-section-title,
.theme-nexa-chain-press .np-inner-page > .np-container > .np-section-title {
    display: inline-block;
    background: var(--ncp-label-bg, #111);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    margin: 0 0 24px;
    border: none;
}

.theme-nexa-chain-press .np-article-page .np-article-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: #111;
    margin: 12px 0 16px;
}

.theme-nexa-chain-press .np-article-page .np-cat-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--np-text-muted);
    text-decoration: none;
}

.theme-nexa-chain-press .np-article-content {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.75;
    color: #333;
}

.theme-nexa-chain-press .np-article-content h2,
.theme-nexa-chain-press .np-article-content h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
}

.theme-nexa-chain-press .ncp-list-card {
    border-bottom: 1px solid var(--np-border);
    margin: 0;
}

.theme-nexa-chain-press .ncp-list-card-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
}

.theme-nexa-chain-press .ncp-list-card-text {
    flex: 1;
    min-width: 0;
}

.theme-nexa-chain-press .ncp-list-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 4px 0 8px;
    text-transform: none;
}

.theme-nexa-chain-press .ncp-list-excerpt {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 8px;
}

.theme-nexa-chain-press .ncp-thumb-list {
    width: 100px;
    min-width: 100px;
    height: 72px;
    overflow: hidden;
}

.theme-nexa-chain-press .np-sidebar {
    border-left: 1px solid var(--np-border);
    padding-left: 24px;
}

.theme-nexa-chain-press .np-sidebar .np-widget-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--np-primary, #111);
    color: var(--np-text-on-primary, #fff) !important;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .theme-nexa-chain-press .ncp-header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px 12px;
        min-height: 52px;
        padding: 8px 0;
    }

    .theme-nexa-chain-press .ncp-header-left {
        display: contents;
    }

    .theme-nexa-chain-press .ncp-mobile-toggle {
        display: flex;
        grid-column: 1;
        grid-row: 1;
    }

    .theme-nexa-chain-press .ncp-header-logo {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .theme-nexa-chain-press .ncp-header-actions {
        grid-column: 3;
        grid-row: 1;
        gap: 10px;
    }

    .theme-nexa-chain-press .ncp-header-nav {
        grid-column: 1 / -1;
        order: 4;
        height: auto;
        overflow: visible;
    }

    .theme-nexa-chain-press .ncp-btn-subscribe {
        padding: 8px 12px;
        font-size: 10px;
    }
}

.theme-nexa-chain-press .ncp-header .np-logo-text,
.theme-nexa-chain-press .ncp-header .np-nav-link,
.theme-nexa-chain-press .ncp-header .np-nav-dropdown-trigger {
    color: #111;
}

.theme-nexa-chain-press .ncp-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.theme-nexa-chain-press .ncp-header-nav {
    justify-self: center;
}

@media (min-width: 769px) {
    .theme-nexa-chain-press .ncp-header .np-main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 18px;
    }
}

.theme-nexa-chain-press .ncp-header .np-nav-link,
.theme-nexa-chain-press .ncp-header .np-nav-dropdown-trigger {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 0;
}

.theme-nexa-chain-press .ncp-header .np-nav-link:hover,
.theme-nexa-chain-press .ncp-header .np-nav-dropdown-trigger:hover {
    color: #555;
}

.theme-nexa-chain-press .ncp-sign-in,
.theme-nexa-chain-press .ncp-header .np-header-sign-in {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111 !important;
    text-decoration: none;
    white-space: nowrap;
}

.theme-nexa-chain-press .ncp-sign-in:hover {
    opacity: 0.7;
}

.theme-nexa-chain-press .ncp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .theme-nexa-chain-press .np-mobile-toggle,
    .theme-nexa-chain-press .ncp-mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        margin: 0;
        background: #ffffff !important;
        border: 2px solid #111111 !important;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        cursor: pointer;
        position: relative;
        z-index: 1205;
        flex-shrink: 0;
    }

    .theme-nexa-chain-press .np-mobile-toggle span,
    .theme-nexa-chain-press .ncp-mobile-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: #111111 !important;
        border-radius: 0;
        margin: 0 !important;
        opacity: 1 !important;
    }

    body.np-nav-open.theme-nexa-chain-press .np-mobile-toggle,
    body.np-nav-open.theme-nexa-chain-press .ncp-mobile-toggle {
        background: #111111 !important;
        border-color: #111111 !important;
    }

    body.np-nav-open.theme-nexa-chain-press .np-mobile-toggle span,
    body.np-nav-open.theme-nexa-chain-press .ncp-mobile-toggle span {
        background: #ffffff !important;
    }

    body.np-nav-open.theme-nexa-chain-press .ncp-header,
    body.np-nav-open.theme-nexa-chain-press .np-header-band {
        z-index: 1200 !important;
    }
}

.theme-nexa-chain-press .ncp-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    margin: 5px 0;
}

/* Trending bar visible on Nexa Chain Press — full skin in theme block below */
.theme-nexa-chain-press .np-trending { border-bottom: none; }

/* —— Section labels (black boxes) —— */
.ncp-label {
    display: inline-block;
    background: var(--ncp-label-bg, var(--np-primary, #111));
    color: var(--ncp-label-text, #fff);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    line-height: 1.2;
}

.ncp-label--block {
    display: block;
    width: fit-content;
    margin-bottom: 16px;
}

.ncp-module {
    background: #fff;
    padding: 28px 0 36px;
}

.ncp-module-head {
    margin-bottom: 22px;
}

.ncp-section {
    padding: 0;
}

/* —— Today's Picks hero module —— */
.ncp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) 260px;
    gap: 28px;
    align-items: start;
}

.ncp-hero-main-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ncp-hero-main .ncp-thumb-xl {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 14px;
}

.ncp-hero-main .ncp-thumb-xl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncp-cat-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--np-secondary, #467299);
    margin-bottom: 8px;
}

.ncp-cat-tag--sm {
    font-size: 10px;
    margin-bottom: 4px;
}

.ncp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--np-primary, #111);
}

.ncp-byline {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--np-text-muted, #767676);
    margin-bottom: 10px;
}

.ncp-hero-excerpt {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--np-text-muted, #444);
    margin: 0;
}

.ncp-hero-excerpt--below {
    margin-top: 20px;
    max-width: 72ch;
    padding-top: 4px;
    border-top: 1px solid var(--np-border);
}

.ncp-hero-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid var(--np-border);
    padding-left: 24px;
}

.ncp-hero-side-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ncp-thumb-md {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 10px;
}

.ncp-side-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    margin: 0;
    color: var(--np-primary, #111);
}

.ncp-recent-sidebar {
    border-left: 1px solid var(--np-border);
    padding-left: 20px;
}

.ncp-recent-list {
    display: flex;
    flex-direction: column;
}

.ncp-recent-item {
    border-bottom: 1px solid var(--np-border);
}

.ncp-recent-item:last-child {
    border-bottom: none;
}

.ncp-recent-item a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: inherit;
}

.ncp-recent-item h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0 0 6px;
    color: var(--np-primary, #111);
}

.ncp-recent-item .ncp-byline {
    margin: 0;
    font-size: 10px;
}

/* —— Trending row —— */
.ncp-trending-block {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--np-border);
}

.ncp-trending-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ncp-trending-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ncp-thumb-trend {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 10px;
}

.ncp-trending-card h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
    color: var(--np-primary, #111);
}

/* —— Important strip —— */
.ncp-important-list {
    display: flex;
    flex-direction: column;
}

.ncp-important-item a {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--np-border);
}

.ncp-important-item:last-child a {
    border-bottom: none;
}

.ncp-important-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--np-secondary, #467299);
    min-width: 40px;
}

.ncp-important-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    margin: 0 0 6px;
    color: var(--np-primary, #111);
}

.ncp-important-body p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--np-text-muted);
    margin: 0;
}

.ncp-important-arrow {
    margin-left: auto;
    font-size: 20px;
    color: var(--np-secondary, #467299);
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
}

.ncp-important-item a:hover .ncp-important-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* —— More from categories (4 columns) —— */
.ncp-cat-columns {
    display: grid;
    gap: 24px;
}

.ncp-cat-columns--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ncp-cat-columns--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ncp-cat-columns--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.np-category-columns-empty {
    padding: 32px 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    background: #f8fafc;
}

.ncp-cat-lead a,
.ncp-cat-sub a {
    text-decoration: none;
    color: inherit;
}

.ncp-cat-lead-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 12px;
}

.ncp-cat-lead-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncp-label--overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
}

.ncp-cat-lead-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.ncp-cat-sub {
    border-top: 1px solid var(--np-border);
    padding-top: 12px;
    margin-top: 12px;
}

.ncp-cat-sub h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.ncp-cat-sub a:hover h4 {
    color: #555;
}

/* —— Footer —— */
.theme-nexa-chain-press .ncp-footer,
.theme-nexa-chain-press .np-footer {
    background: #111;
    color: #aaa;
    border-top: none;
    margin-top: 0;
    padding-top: 48px;
}

.theme-nexa-chain-press .ncp-footer-block {
    padding: 0 0 24px;
}

.ncp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.ncp-footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-bottom: 16px;
}

.ncp-footer-about {
    font-size: 14px;
    line-height: 1.65;
    color: #999;
    margin: 0 0 18px;
    max-width: 360px;
}

.theme-nexa-chain-press .ncp-footer .np-social-links a {
    color: #888;
}

.ncp-footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}

.ncp-footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ncp-footer-col a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.ncp-footer-col a:hover {
    color: #fff;
}

.ncp-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    padding: 20px 0;
    border-top: 1px solid #333;
    font-size: 12px;
}

.ncp-footer-legal a {
    color: #888;
    text-decoration: none;
}

.ncp-footer-legal span {
    color: #555;
}

.ncp-footer-copy {
    padding-bottom: 24px;
}

.ncp-footer-copy p {
    margin: 0;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.ncp-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: #4eb7f5;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ncp-back-to-top:hover {
    filter: brightness(1.05);
}

.ncp-cat-lead-title {
    font-weight: 900;
    text-transform: none;
}

.ncp-cat-sub h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45;
}

.theme-nexa-chain-press .ncp-page-body {
    background: #fff;
}

.ncp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ncp-empty {
    text-align: center;
    color: var(--np-text-muted);
    padding: 32px;
}

.theme-nexa-chain-press .ncp-post-card {
    border: 1px solid var(--np-border);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}
.theme-nexa-chain-press .ncp-post-card > a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.theme-nexa-chain-press .ncp-post-card .ncp-post-thumb,
.theme-nexa-chain-press .ncp-post-card .np-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0;
}
.theme-nexa-chain-press .ncp-post-card-body {
    padding: 14px 16px 16px;
}

.theme-nexa-chain-press .ncp-post-card-body h3 {
    text-transform: none;
}

.theme-nexa-chain-press .ncp-card-excerpt {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    line-height: 1.55;
    color: #555;
}

.theme-nexa-chain-press .ncp-cat-desc {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 12px 0 24px;
    max-width: 720px;
}

@media (max-width: 1100px) {
    .ncp-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ncp-recent-sidebar {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid var(--np-border);
        padding-left: 0;
        padding-top: 24px;
    }

    .ncp-trending-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ncp-cat-columns--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .theme-nexa-chain-press .ncp-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .theme-nexa-chain-press .ncp-mobile-toggle {
        display: flex;
    }

    .theme-nexa-chain-press .ncp-header-nav {
        grid-column: 1 / -1;
        height: auto;
        overflow: visible;
    }

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

    .ncp-hero-side {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--np-border);
        padding-top: 24px;
    }

    .ncp-trending-row,
    .ncp-cat-columns--2,
    .ncp-cat-columns--3,
    .ncp-cat-columns--4 {
        grid-template-columns: 1fr;
    }

    .ncp-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ========== Nexa Chain Press — theme-native UI skins ========== */
.theme-nexa-chain-press .np-trending--nexa-chain-press:not(.np-trending--custom-bg) {
    background: var(--np-primary, #111111);
    color: #fff;
    border-top: 3px solid var(--np-secondary, #467299);
    border-bottom: none;
    padding: 10px 0;
}
.theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-badge {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}
.theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-label {
    display: inline-block;
    background: var(--ncp-label-bg, var(--np-primary, #111));
    color: var(--ncp-label-text, #fff);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 7px 14px;
    line-height: 1.2;
    border: 2px solid #fff;
    outline: 1px solid var(--np-secondary, #467299);
}
.theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-item {
    color: rgba(255, 255, 255, 0.92);
    border-right-color: rgba(255, 255, 255, 0.14);
}
.theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-item:hover {
    color: #fff;
}
.theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-rank {
    border-radius: 0;
    width: 24px;
    height: 24px;
    background: var(--np-primary, #111);
    color: #fff;
    font-weight: 800;
}
.theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-item:hover .np-trending-rank {
    background: var(--np-secondary, #467299);
    color: #fff;
}
.theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-empty {
    color: rgba(255, 255, 255, 0.75);
}

.theme-nexa-chain-press .np-nav-dropdown-menu {
    border-radius: 0;
    border: 2px solid var(--np-primary, #111);
    box-shadow: 6px 6px 0 color-mix(in srgb, var(--np-primary) 20%, transparent);
}
.theme-nexa-chain-press .np-nav-dropdown-menu::before {
    display: none;
}
.theme-nexa-chain-press .np-nav-dropdown-all {
    border-radius: 0;
    background: var(--np-theme-gradient-soft, linear-gradient(135deg, var(--np-primary) 0%, var(--np-secondary) 100%));
    border: none;
}
.theme-nexa-chain-press .np-nav-dropdown-all:hover {
    background: var(--np-theme-gradient, linear-gradient(135deg, var(--np-primary) 0%, var(--np-secondary) 100%));
    color: #fff !important;
}
.theme-nexa-chain-press .np-nav-dropdown-all-text strong,
.theme-nexa-chain-press .np-nav-dropdown-all-text small {
    color: #fff;
}
.theme-nexa-chain-press .np-nav-dropdown-all:hover .np-nav-dropdown-all-text strong {
    color: #fff;
}
.theme-nexa-chain-press .np-nav-dropdown-all-icon {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.theme-nexa-chain-press .np-nav-dropdown-all-arrow {
    color: #fff;
    opacity: 0.85;
}
.theme-nexa-chain-press .np-nav-dropdown-menu a.np-nav-dropdown-child,
.theme-nexa-chain-press .np-nav-dropdown-menu .np-nav-subgroup-list a {
    border-radius: 0;
}
.theme-nexa-chain-press .np-nav-dropdown-menu a.np-nav-dropdown-child:hover,
.theme-nexa-chain-press .np-nav-dropdown-menu .np-nav-subgroup-list a:hover {
    background: color-mix(in srgb, var(--np-secondary) 12%, #fff);
    color: var(--np-primary, #111) !important;
}
.theme-nexa-chain-press .np-nav-dropdown-child-dot {
    border-radius: 0;
    width: 5px;
    height: 5px;
    background: var(--np-secondary, #467299);
}

.theme-nexa-chain-press .np-cats-hub {
    background: linear-gradient(180deg, color-mix(in srgb, var(--np-primary) 4%, #fff) 0%, var(--np-surface, #fff) 240px);
}
.theme-nexa-chain-press .np-cats-hub__eyebrow {
    color: var(--np-primary, #111);
}
.theme-nexa-chain-press .np-cats-hub__eyebrow::before {
    background: linear-gradient(90deg, var(--np-primary, #111), transparent);
}
.theme-nexa-chain-press .np-cats-hub__metric,
.theme-nexa-chain-press .np-cats-hub__search,
.theme-nexa-chain-press .np-cat-card {
    border-radius: 0;
}
.theme-nexa-chain-press .np-cats-hub__search:focus-within {
    border-color: var(--np-primary, #111);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--np-secondary) 30%, transparent);
}
.theme-nexa-chain-press .np-cats-hub__metric strong {
    color: var(--np-primary, #111);
}
.theme-nexa-chain-press .np-cat-card__badge {
    border-radius: 0;
}
.theme-nexa-chain-press .np-cat-card__chip {
    border-radius: 0;
}
.theme-nexa-chain-press .np-cat-card__cta {
    color: var(--np-primary, #111);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
}
.theme-nexa-chain-press .np-cat-card:hover .np-cat-card__title {
    color: var(--np-secondary, #467299);
}

/* ============================================================
   Nexa Chain Press — Mobile & tablet responsive polish
   ============================================================ */

.ncp-trending-row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ncp-trending-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ncp-trending-row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ncp-trending-row--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ncp-trending-row--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

@media (max-width: 991px) {
    .theme-nexa-chain-press .np-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ncp-trending-row,
    .ncp-trending-row--3,
    .ncp-trending-row--4,
    .ncp-trending-row--5,
    .ncp-trending-row--6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .ncp-module {
        padding: 22px 0 28px;
    }

    .ncp-hero-title {
        font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    }

    .ncp-important-num {
        font-size: 1.65rem;
        min-width: 36px;
    }

    .ncp-important-body h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .theme-nexa-chain-press .np-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Top bar — centered stack on mobile */
    .theme-nexa-chain-press .ncp-topbar {
        padding: 8px 0;
        font-size: 10px;
    }

    .theme-nexa-chain-press .ncp-topbar .np-topbar-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: auto;
        gap: 8px;
        padding: 4px 0;
    }

    .theme-nexa-chain-press .ncp-topbar-datetime,
    .theme-nexa-chain-press .ncp-topbar-utils,
    .theme-nexa-chain-press .np-topbar-left,
    .theme-nexa-chain-press .np-topbar-right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .theme-nexa-chain-press .ncp-topbar-links {
        display: none;
    }

    .theme-nexa-chain-press .ncp-topbar-datetime {
        font-size: 10px;
        gap: 6px;
        max-width: 100%;
    }

    .theme-nexa-chain-press .ncp-topbar-datetime time {
        white-space: normal;
        text-align: center;
        line-height: 1.35;
    }

    .theme-nexa-chain-press .ncp-topbar-utils .np-social-links {
        justify-content: center;
    }

    .theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget {
        justify-content: center;
        position: relative;
        z-index: 10070;
    }

    .theme-nexa-chain-press .ncp-topbar .np-gtranslate-widget .gt_option {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        min-width: 180px !important;
        max-height: 240px !important;
        height: auto !important;
        width: max-content !important;
    }

    /* Mobile nav — content lives in body drawer (theme.js); keep header slot collapsed */
    .theme-nexa-chain-press .ncp-header-nav {
        grid-column: 1 / -1;
        width: 100%;
        height: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body.np-nav-open .theme-nexa-chain-press .ncp-header-nav {
        height: 0 !important;
    }

    .theme-nexa-chain-press .ncp-header {
        padding: 0;
    }

    .theme-nexa-chain-press .ncp-header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "toggle logo actions";
        align-items: center;
        min-height: 48px;
        padding: 6px 0;
        gap: 8px 10px;
    }

    .theme-nexa-chain-press .ncp-header-left {
        display: contents;
    }

    .theme-nexa-chain-press .ncp-mobile-toggle {
        grid-area: toggle;
    }

    .theme-nexa-chain-press .ncp-header-logo {
        grid-area: logo;
        justify-self: center;
        text-align: center;
        min-width: 0;
        max-width: 100%;
    }

    .theme-nexa-chain-press .ncp-header-actions {
        grid-area: actions;
        justify-self: end;
    }

    .theme-nexa-chain-press .ncp-logo-text {
        font-size: clamp(1rem, 4.8vw, 1.35rem);
        letter-spacing: -0.02em;
        line-height: 1.1;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .theme-nexa-chain-press .ncp-header-actions {
        gap: 8px;
        flex-shrink: 0;
    }

    .theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline,
    .theme-nexa-chain-press .ncp-header .se-header-part.np-header-auth-inline {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .theme-nexa-chain-press .ncp-sign-in,
    .theme-nexa-chain-press .ncp-header-actions-inner .np-header-sign-in {
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .theme-nexa-chain-press .ncp-btn-subscribe,
    .theme-nexa-chain-press .ncp-btn-register,
    .theme-nexa-chain-press .np-header-register {
        padding: 7px 12px;
        font-size: 9px;
        letter-spacing: 0.08em;
    }

    .theme-nexa-chain-press .ncp-header-search.np-header-search {
        display: inline-flex !important;
    }

    body:not(.np-nav-open) .theme-nexa-chain-press .np-header-band-menu-wrap,
    body:not(.np-nav-open) .theme-nexa-chain-press .ncp-header-nav {
        height: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body.theme-nexa-chain-press.np-nav-open .ncp-header .np-main-nav,
    body.np-nav-open.theme-nexa-chain-press .ncp-header .np-main-nav {
        border-radius: 0;
        border: 2px solid var(--np-primary, #111);
        box-shadow: 6px 6px 0 color-mix(in srgb, var(--np-primary) 18%, transparent);
    }

    body.theme-nexa-chain-press.np-nav-open .ncp-header .np-main-nav a,
    body.np-nav-open.theme-nexa-chain-press .ncp-header .np-main-nav a {
        border-radius: 0;
        font-size: 14px;
    }

    .theme-nexa-chain-press .ncp-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        border: 2px solid #111111;
        border-radius: 0;
        background: #ffffff;
        position: relative;
        z-index: 1205;
    }

    .theme-nexa-chain-press .ncp-mobile-toggle span {
        width: 20px;
        margin: 3px 0;
        background: #111111;
    }

    .theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .theme-nexa-chain-press .np-trending--nexa-chain-press .np-trending-item {
        font-size: 11px;
        padding-right: 12px;
        margin-right: 12px;
    }

    .ncp-module {
        padding: 18px 0 24px;
    }

    .ncp-module-head {
        margin-bottom: 16px;
    }

    .ncp-hero-grid {
        gap: 20px;
    }

    .ncp-hero-main .ncp-thumb-xl {
        margin-bottom: 12px;
    }

    .ncp-hero-title {
        font-size: clamp(1.25rem, 5.5vw, 1.65rem);
        margin-bottom: 8px;
    }

    .ncp-hero-excerpt,
    .ncp-hero-excerpt--below {
        font-size: 14px;
        line-height: 1.6;
    }

    .ncp-hero-excerpt--below {
        margin-top: 16px;
    }

    .ncp-side-title {
        font-size: 0.95rem;
    }

    .ncp-recent-link {
        gap: 10px;
        padding: 12px 0;
    }

    .ncp-thumb-recent {
        width: 64px;
        min-width: 64px;
        height: 64px;
    }

    .ncp-recent-item h4,
    .ncp-recent-link .ncp-recent-item h4 {
        font-size: 13px;
    }

    .ncp-trending-row,
    .ncp-trending-row--2,
    .ncp-trending-row--3,
    .ncp-trending-row--4,
    .ncp-trending-row--5,
    .ncp-trending-row--6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ncp-trending-card h4 {
        font-size: 12px;
        line-height: 1.35;
    }

    .ncp-trending-block {
        margin-top: 24px;
        padding-top: 20px;
    }

    .ncp-important-item a {
        gap: 12px;
        padding: 16px 0;
    }

    .ncp-important-num {
        font-size: 1.5rem;
        min-width: 32px;
    }

    .ncp-important-body h3 {
        font-size: 0.95rem;
    }

    .ncp-important-body p {
        font-size: 13px;
    }

    .ncp-important-arrow {
        display: none;
    }

    .theme-nexa-chain-press .ncp-list-card-link {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }

    .theme-nexa-chain-press .ncp-thumb-list {
        width: 100%;
        min-width: 0;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .theme-nexa-chain-press .ncp-list-card h3 {
        font-size: 0.95rem;
    }

    .ncp-cat-columns--2,
    .ncp-cat-columns--3,
    .ncp-cat-columns--4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ncp-cat-lead-title {
        font-size: 0.95rem;
    }

    .theme-nexa-chain-press .np-inner-page {
        padding: 20px 0 32px;
    }

    .theme-nexa-chain-press .np-sidebar {
        border-left: none;
        padding-left: 0;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--np-border);
    }

    .theme-nexa-chain-press .np-two-col-grid,
    .theme-nexa-chain-press .np-article-layout {
        grid-template-columns: 1fr;
    }

    .theme-nexa-chain-press .ncp-footer,
    .theme-nexa-chain-press .np-footer {
        padding-top: 32px;
    }

    .ncp-footer-grid {
        gap: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .ncp-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ncp-footer-col {
        align-items: center;
        text-align: center;
    }

    .theme-nexa-chain-press .ncp-footer .np-social-links,
    .theme-nexa-chain-press .ncp-footer-block .np-social-links {
        justify-content: center;
    }

    .ncp-footer-about {
        max-width: 100%;
        text-align: center;
    }

    .ncp-footer-logo {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .ncp-footer-about {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .ncp-footer-legal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 16px 0;
    }

    .ncp-footer-legal span {
        display: none;
    }

    .ncp-back-to-top {
        right: 14px;
        bottom: 14px;
        width: 36px;
        height: 36px;
    }
    .ncp-footer-copy-wrap {
        text-align: center;
    }

    .ncp-footer-copy-wrap .np-footer-bottom,
    .ncp-footer-copy-wrap .np-footer-copyright {
        justify-content: center;
        text-align: center;
    }

    .ncp-footer-copy-wrap .np-footer-copyright p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .theme-nexa-chain-press .np-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .theme-nexa-chain-press .ncp-topbar-datetime svg {
        display: none;
    }

    .ncp-trending-row,
    .ncp-trending-row--2,
    .ncp-trending-row--3,
    .ncp-trending-row--4,
    .ncp-trending-row--5,
    .ncp-trending-row--6 {
        grid-template-columns: 1fr;
    }

    .ncp-hero-title {
        font-size: 1.2rem;
    }

    .ncp-important-num {
        font-size: 1.35rem;
    }

    .theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline .ncp-btn-register,
    .theme-nexa-chain-press .ncp-header-actions-inner.np-header-auth-inline .np-header-register {
        padding: 8px 12px;
    }
}

/* Mobile nav stack — overlay below header/toggle, drawer on body */
@media (max-width: 768px) {
    body.np-nav-open.theme-nexa-chain-press .ncp-topbar {
        z-index: 1195;
        position: relative;
    }

    body.np-nav-open.theme-nexa-chain-press .ncp-header,
    body.np-nav-open.theme-nexa-chain-press .np-header-band {
        z-index: 1205 !important;
    }
}

/* ═══ Mobile drawer (body portal — theme.js) ═══ */
.np-mobile-drawer {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--np-mobile-nav-top, 56px);
    bottom: 0;
    z-index: 1202;
    background: #fff;
    flex-direction: column;
    overflow: hidden;
    border-top: 2px solid var(--np-primary, #111);
    animation: npMobileDrawerIn 0.22s ease;
}

body.np-nav-open .np-mobile-drawer {
    display: flex;
}

@keyframes npMobileDrawerIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.np-mobile-drawer__toolbar {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

.np-mobile-drawer__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    grid-column: 1;
    padding: 8px 12px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.np-mobile-drawer__back svg {
    flex-shrink: 0;
}

.np-mobile-drawer__title {
    grid-column: 2;
    margin: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.55);
}

.np-mobile-drawer:not(.np-mobile-drawer--subview) .np-mobile-drawer__toolbar {
    display: none;
}

.np-mobile-drawer__viewport {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Nav inside drawer — centered, full-width tap targets */
.np-mobile-drawer .np-main-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 24px !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    gap: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    animation: none !important;
}

.np-mobile-drawer .np-main-nav > .np-nav-link,
.np-mobile-drawer .np-main-nav > a,
.np-mobile-drawer .np-main-nav > .np-nav-item--dropdown > .np-nav-dropdown-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px !important;
    padding: 14px 24px !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06) !important;
    border-radius: 0 !important;
    white-space: normal !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    color: #111 !important;
    background: transparent !important;
    box-sizing: border-box;
    gap: 8px;
}

.np-mobile-drawer .np-main-nav > .np-nav-link:hover,
.np-mobile-drawer .np-main-nav > a:hover,
.np-mobile-drawer .np-main-nav > .np-nav-item--dropdown > .np-nav-dropdown-trigger:hover {
    background: rgba(17, 17, 17, 0.04) !important;
    color: #111 !important;
}

.np-mobile-drawer .np-main-nav a::after {
    display: none !important;
}

.np-mobile-drawer .np-nav-item--dropdown {
    display: block !important;
    width: 100% !important;
    position: static !important;
}

/* Submenus hidden in root view; shown in subview panel */
.np-mobile-drawer:not(.np-mobile-drawer--subview) .np-nav-dropdown-menu {
    display: none !important;
}

.np-mobile-drawer .np-nav-item--dropdown > .np-nav-dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 0 16px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    list-style: none;
}

.np-mobile-drawer .np-nav-dropdown-menu::before {
    display: none !important;
}

.np-mobile-drawer .np-nav-dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.np-mobile-drawer .np-nav-dropdown-menu a,
.np-mobile-drawer .np-nav-dropdown-menu .np-nav-dropdown-all {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    padding: 12px 24px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.04) !important;
    text-transform: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    min-height: 48px !important;
    box-sizing: border-box;
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.np-mobile-drawer .np-nav-dropdown-menu a:hover,
.np-mobile-drawer .np-nav-dropdown-menu .np-nav-dropdown-all:hover {
    background: rgba(17, 17, 17, 0.04) !important;
    color: #111 !important;
}

.np-mobile-drawer .np-nav-dropdown-all-text strong,
.np-mobile-drawer .np-nav-dropdown-all-text small {
    color: #111 !important;
}

.np-mobile-drawer .np-nav-dropdown-all-icon {
    background: rgba(17, 17, 17, 0.08) !important;
    color: #111 !important;
}

.np-mobile-drawer .np-nav-dropdown-section span,
.np-mobile-drawer .np-nav-subgroup-label {
    display: block;
    padding: 10px 24px 6px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.45);
}

.np-mobile-drawer .np-nav-dropdown-divider {
    display: none;
}

.np-mobile-drawer .np-nav-subgroup-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.np-mobile-drawer .np-nav-dropdown-child-dot {
    display: none;
}

/* Subview — hide root items, show only active dropdown panel */
.np-mobile-drawer--subview .np-main-nav > *:not(.np-mobile-subview-active) {
    display: none !important;
}

.np-mobile-drawer--subview .np-mobile-subview-active > .np-nav-dropdown-trigger {
    display: none !important;
}

.np-mobile-drawer--subview .np-mobile-subview-active > .np-nav-dropdown-menu {
    display: block !important;
    padding-top: 8px !important;
}

/* Nexa Chain — hide in-header nav on mobile (drawer holds content) */
@media (max-width: 768px) {
    body:not(.np-nav-open) .theme-nexa-chain-press .ncp-header .np-main-nav:not(.np-main-nav--in-drawer) {
        display: none !important;
    }

    body.np-nav-open .theme-nexa-chain-press .ncp-header .np-main-nav:not(.np-main-nav--in-drawer) {
        display: none !important;
    }

    .theme-nexa-chain-press .ncp-header-nav,
    .theme-nexa-chain-press .np-header-band-menu-wrap {
        height: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .theme-nexa-chain-press .ncp-header .np-header-band .np-main-nav a,
    .theme-nexa-chain-press .ncp-header .np-main-nav a {
        white-space: normal !important;
    }
}
