:root {
    --np-primary: #0b4d6d;
    --np-accent: #d71920;
    --np-dark: #10202b;
    --np-text: #17212b;
    --np-muted: #66727d;
    --np-border: #e4e9ed;
    --np-surface: #ffffff;
    --np-background: #f5f7f9;
    --np-radius: 14px;
    --np-shadow: 0 10px 30px rgba(16, 32, 43, .08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--np-background);
    color: var(--np-text);
    font-family: SolaimanLipiNormal, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body img {
    max-width: 100%;
}

.np-site-header a,
.np-homepage a,
.footer-area a,
.footer-scrool a {
    text-decoration: none;
}

/* Header */
.np-site-header {
    position: relative;
    z-index: 1000;
    background: var(--np-surface);
}

.np-topbar {
    border-bottom: 1px solid var(--np-border);
    background: #f8fafb;
    color: #45525d;
    font-size: 14px;
}

.np-topbar-inner,
.np-brandbar-inner,
.np-nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.np-topbar-inner {
    min-height: 38px;
    gap: 24px;
}

.np-topbar-info,
.np-topbar-links,
.np-social-links {
    display: flex;
    align-items: center;
}

.np-topbar-info {
    gap: 18px;
    white-space: nowrap;
}

.np-topbar-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.np-topbar-info i {
    color: var(--np-accent);
    font-size: 16px;
}

.np-topbar-links {
    gap: 16px;
}

.np-epaper-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--np-primary);
    font-weight: 700;
}

.np-social-links {
    gap: 7px;
}

.np-social-links a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--np-border);
    border-radius: 50%;
    background: #fff;
    color: var(--np-primary);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.np-social-links a:hover {
    transform: translateY(-2px);
    background: var(--np-primary);
    color: #fff;
}

.np-brandbar {
    background: var(--np-surface);
}

.np-brandbar-inner {
    min-height: 98px;
    gap: 24px;
}

.np-brand-logo {
    display: inline-flex;
    align-items: center;
    max-width: 280px;
}

.np-brand-logo img {
    display: block;
    max-height: 70px;
    width: auto;
}

.np-brand-message {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid var(--np-border);
    border-radius: 999px;
    color: var(--np-muted);
    font-size: 15px;
}

.np-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--np-accent);
    box-shadow: 0 0 0 5px rgba(215, 25, 32, .12);
}

.np-main-nav {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--np-primary);
    box-shadow: 0 6px 18px rgba(11, 45, 63, .16);
}

.np-main-nav.sticky {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
}

.np-nav-shell {
    min-height: 54px;
    gap: 12px;
}

.np-nav-content {
    flex: 1 1 auto;
    min-width: 0;
}

.np-nav-list,
.np-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.np-nav-list {
    display: flex;
    align-items: stretch;
    overflow: visible;
}

.np-nav-list > li {
    position: relative;
    flex: 0 0 auto;
}

.np-nav-link-row {
    display: flex;
    align-items: stretch;
}

.np-nav-list > li > a,
.np-nav-link-row > a,
.np-nav-epaper {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    color: rgba(255,255,255,.95);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.np-nav-list > li.active > a,
.np-nav-list > li:hover > a,
.np-nav-list > li:hover .np-nav-link-row > a,
.np-nav-link-row > a:hover,
.np-nav-epaper:hover {
    background: rgba(0,0,0,.18);
    color: #fff;
}

.np-nav-list > li.active > a {
    background: var(--np-accent);
}

.np-submenu-toggle {
    min-width: 30px;
    padding: 0 8px 0 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.85);
    cursor: pointer;
}

.np-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 0 0 12px 12px;
    background: #0b3f59;
    box-shadow: var(--np-shadow);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.np-has-submenu:hover > .np-submenu,
.np-has-submenu:focus-within > .np-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.np-submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 7px;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    transition: background .2s ease, padding-left .2s ease;
}

.np-submenu a:hover {
    padding-left: 16px;
    background: rgba(255,255,255,.1);
    color: #fff;
}

.np-nav-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.np-nav-epaper {
    padding-inline: 12px;
}

.np-search-toggle,
.np-mobile-menu-button {
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.np-search-toggle {
    width: 48px;
    height: 54px;
    font-size: 22px;
}

.np-search-toggle:hover,
.np-search-toggle.active {
    background: rgba(0,0,0,.18);
}

.np-mobile-menu-button {
    display: none;
    align-items: center;
    gap: 7px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    font-size: 16px;
}

.np-mobile-menu-button i {
    font-size: 21px;
}

.np-search-panel {
    display: none;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    padding: 11px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.np-search-panel.open {
    display: flex;
}

.np-search-panel > i {
    color: var(--np-muted);
    font-size: 21px;
}

.np-search-panel input {
    flex: 1;
    height: 42px;
    min-width: 0;
    padding: 0 6px;
    border: 0;
    outline: 0;
    color: var(--np-text);
    font-size: 16px;
    font-family: inherit;
}

.np-search-panel button {
    height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: var(--np-accent);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

/* Homepage */
.np-homepage {
    min-height: 50vh;
    overflow: hidden;
}

.np-homepage .container,
.np-site-header .container,
.footer-area .container {
    max-width: 1240px;
}

.np-ad-wrap {
    padding: 22px 0;
    text-align: center;
    background: #fff;
}

.np-ad-top {
    padding-top: 20px;
    padding-bottom: 20px;
}

.np-ad-wrap img,
.np-ad-wrap iframe,
.np-ad-wrap ins {
    max-width: 100% !important;
}

.np-breaking {
    padding: 14px 0 0;
}

.np-breaking-inner {
    display: flex;
    align-items: stretch;
    min-height: 46px;
    overflow: hidden;
    border: 1px solid var(--np-border);
    border-radius: 10px;
    background: var(--np-surface);
    box-shadow: 0 5px 16px rgba(16, 32, 43, .05);
}

.np-breaking-label {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    padding: 0 18px;
    background: var(--np-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.np-breaking-track {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.np-breaking-track::before,
.np-breaking-track::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    width: 44px;
    height: 100%;
    pointer-events: none;
}

.np-breaking-track::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.np-breaking-track::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.np-breaking-items {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    min-width: max-content;
    height: 46px;
    padding-left: 100%;
    animation: npTicker 38s linear infinite;
}

.np-breaking-items:hover {
    animation-play-state: paused;
}

.np-breaking-items a,
.np-breaking-items span {
    position: relative;
    color: var(--np-text);
    font-size: 16px;
    white-space: nowrap;
}

.np-breaking-items a::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--np-accent);
    transform: translateY(-50%);
}

@keyframes npTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.np-hero-section {
    padding: 22px 0 10px;
}

.np-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .82fr) 330px;
    gap: 18px;
    align-items: stretch;
}

.np-hero-main,
.np-hero-secondary,
.np-news-panel {
    min-width: 0;
}

.np-lead-card,
.np-secondary-card,
.np-story-card,
.np-category-block,
.np-news-panel {
    background: var(--np-surface);
    box-shadow: var(--np-shadow);
}

.np-lead-card,
.np-secondary-card,
.np-story-card,
.np-category-block,
.np-news-panel,
.np-video-media,
.np-photo-card {
    overflow: hidden;
    border-radius: var(--np-radius);
}

.np-lead-card,
.np-lead-media {
    height: 100%;
    min-height: 518px;
}

.np-lead-media,
.np-secondary-media,
.np-video-media,
.np-photo-card > a {
    position: relative;
    display: block;
    overflow: hidden;
}

.np-lead-media img,
.np-secondary-media img,
.np-story-image img,
.np-category-lead-image img,
.np-compact-image img,
.np-rank-image img,
.np-video-media img,
.np-video-small-media img,
.np-photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.np-lead-media:hover img,
.np-secondary-media:hover img,
.np-story-card:hover .np-story-image img,
.np-category-lead:hover .np-category-lead-image img,
.np-compact-story:hover .np-compact-image img,
.np-video-media:hover img,
.np-video-small:hover img,
.np-photo-card:hover img {
    transform: scale(1.035);
}

.np-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 24, .05) 30%, rgba(8, 18, 24, .88) 100%);
}

.np-lead-content {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: 32px;
    color: #fff;
}

.np-category-badge,
.np-story-category,
.np-section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-weight: 700;
}

.np-category-badge {
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--np-accent);
    color: #fff;
    font-size: 14px;
}

.np-category-badge-small {
    margin-bottom: 7px;
    padding: 3px 8px;
    font-size: 12px;
}

.np-lead-content h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 2.35vw, 42px);
    line-height: 1.22;
    font-weight: 700;
}

.np-lead-content p {
    max-width: 760px;
    margin: 0 0 12px;
    color: rgba(255,255,255,.9);
    font-size: 17px;
    line-height: 1.55;
}

.np-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--np-muted);
    font-size: 13px;
    line-height: 1.4;
}

.np-lead-content .np-meta {
    color: rgba(255,255,255,.82);
}

.np-hero-secondary {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.np-secondary-card,
.np-secondary-media {
    min-height: 120px;
    height: 100%;
}

.np-secondary-content {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: 15px;
    color: #fff;
}

.np-secondary-content h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.np-news-panel {
    height: 100%;
    min-height: 518px;
    border: 1px solid var(--np-border);
}

.np-panel-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--np-border);
    background: #f8fafb;
}

.np-tab-button {
    height: 50px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--np-muted);
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.np-tab-button.active {
    border-bottom-color: var(--np-accent);
    background: #fff;
    color: var(--np-text);
}

.np-tab-pane {
    display: none;
    max-height: 468px;
    overflow: auto;
    scrollbar-width: thin;
}

.np-tab-pane.active {
    display: block;
}

.np-rank-item {
    display: grid;
    grid-template-columns: 26px 76px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--np-border);
}

.np-rank-item:last-child {
    border-bottom: 0;
}

.np-rank-number {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--np-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.np-rank-image {
    width: 76px;
    height: 54px;
    overflow: hidden;
    border-radius: 7px;
    background: #eef1f3;
}

.np-rank-title {
    color: var(--np-text);
    font-size: 15px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.np-rank-title:hover {
    color: var(--np-accent);
}

.np-panel-empty,
.np-empty-state {
    padding: 28px;
    color: var(--np-muted);
    text-align: center;
}

.np-section {
    padding: 42px 0 0;
}

.np-section-heading,
.np-category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.np-section-heading {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--np-border);
}

.np-section-heading > div {
    position: relative;
}

.np-section-kicker {
    margin-bottom: 3px;
    color: var(--np-accent);
    font-size: 13px;
    letter-spacing: .04em;
}

.np-section-heading h2,
.np-category-heading h2 {
    margin: 0;
    color: var(--np-text);
    font-weight: 700;
}

.np-section-heading h2 {
    font-size: 28px;
}

.np-category-heading h2 {
    font-size: 24px;
}

.np-category-heading h2 a {
    color: var(--np-text);
}

.np-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--np-primary);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.np-more-link i {
    transition: transform .2s ease;
}

.np-more-link:hover {
    color: var(--np-accent);
}

.np-more-link:hover i {
    transform: translateX(3px);
}

.np-latest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.np-story-card {
    border: 1px solid var(--np-border);
    transition: transform .25s ease, box-shadow .25s ease;
}

.np-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(16, 32, 43, .12);
}

.np-story-image {
    display: block;
    height: 176px;
    overflow: hidden;
    background: #eef1f3;
}

.np-story-body {
    padding: 15px;
}

.np-story-category {
    margin-bottom: 7px;
    color: var(--np-accent);
    font-size: 13px;
}

.np-story-body h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.38;
}

.np-story-body h3 a,
.np-category-lead h3 a,
.np-compact-story h4 a {
    color: var(--np-text);
}

.np-story-body h3 a:hover,
.np-category-lead h3 a:hover,
.np-compact-story h4 a:hover {
    color: var(--np-accent);
}

.np-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.np-category-block {
    padding: 20px;
    border: 1px solid var(--np-border);
}

.np-category-heading {
    margin: -20px -20px 18px;
    padding: 16px 20px 13px;
    border-bottom: 1px solid var(--np-border);
}

.np-category-heading h2 {
    position: relative;
    padding-left: 13px;
}

.np-category-heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    border-radius: 5px;
    background: var(--np-accent);
}

.np-category-lead {
    display: grid;
    grid-template-columns: minmax(180px, .95fr) minmax(0, 1.05fr);
    gap: 16px;
    align-items: stretch;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--np-border);
}

.np-category-lead-image {
    display: block;
    min-height: 190px;
    overflow: hidden;
    border-radius: 10px;
    background: #eef1f3;
}

.np-category-lead-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.np-category-lead h3 {
    margin: 0 0 9px;
    font-size: 22px;
    line-height: 1.35;
}

.np-category-lead p {
    margin: 0 0 12px;
    color: var(--np-muted);
    font-size: 15px;
    line-height: 1.55;
}

.np-category-lead .np-meta {
    margin-top: auto;
}

.np-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
}

.np-compact-story {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--np-border);
}

.np-compact-story:nth-last-child(-n+2) {
    border-bottom: 0;
}

.np-compact-image {
    width: 92px;
    height: 66px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #eef1f3;
}

.np-compact-story h4 {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video */
.np-video-section {
    margin-top: 42px;
    padding: 42px 0;
    background: var(--np-dark);
}

.np-section-heading-dark {
    border-bottom-color: rgba(255,255,255,.15);
}

.np-section-heading-dark h2 {
    color: #fff;
}

.np-more-link-light {
    color: rgba(255,255,255,.9);
}

.np-more-link-light:hover {
    color: #fff;
}

.np-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(350px, .8fr);
    gap: 20px;
}

.np-video-feature,
.np-video-media {
    min-height: 460px;
    height: 100%;
}

.np-video-media h3 {
    position: absolute;
    z-index: 2;
    inset: auto 28px 24px;
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.35;
}

.np-play-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: rgba(215, 25, 32, .92);
    color: #fff;
    font-size: 29px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, background .25s ease;
}

.np-video-media:hover .np-play-button,
.np-video-small:hover .np-play-button {
    background: var(--np-accent);
    transform: translate(-50%, -50%) scale(1.08);
}

.np-video-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.np-video-small {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
}

.np-video-small > a {
    display: block;
}

.np-video-small-media {
    position: relative;
    height: 126px;
    display: block;
    overflow: hidden;
}

.np-play-button-small {
    width: 42px;
    height: 42px;
    border-width: 2px;
    font-size: 18px;
}

.np-video-small h4 {
    margin: 0;
    padding: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Photo gallery */
.np-photo-section {
    padding-bottom: 42px;
}

.np-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 15px;
}

.np-photo-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.np-photo-card,
.np-photo-card > a {
    min-height: 100%;
}

.np-photo-card h3 {
    position: absolute;
    z-index: 2;
    inset: auto 16px 14px;
    margin: 0;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
}

.np-photo-card-featured h3 {
    inset: auto 24px 22px;
    font-size: 27px;
}

.np-photo-icon {
    position: absolute;
    z-index: 3;
    top: 13px;
    right: 13px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 20px;
}

/* Modern footer overrides */
.footer-area {
    margin-top: 48px !important;
    padding: 46px 0 92px !important;
    background: #0d1f2a !important;
    color: rgba(255,255,255,.78);
}

.footer-area .footer-border {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-area img {
    max-height: 68px;
    width: auto;
}

.footerMenu-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: flex-end;
}

.footerMenu-wrpp,
.footerMenu-wrpp ul,
.footer-menu2 ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.footerMenu-wrpp a,
.footer-menu2 a {
    color: rgba(255,255,255,.8) !important;
}

.footerMenu-wrpp a:hover,
.footer-menu2 a:hover {
    color: #fff !important;
}

.editorial_content {
    padding-top: 28px;
}

.footer-title {
    margin-bottom: 13px !important;
    color: #fff !important;
    font-size: 20px !important;
}

.footer-contentLeft,
.footer-contentRight,
.footer-menu2 {
    color: rgba(255,255,255,.72) !important;
    font-size: 15px;
    line-height: 1.65;
}

.footer-contentLeft p,
.footer-contentRight p {
    margin-bottom: 5px;
}

.copy_right_section {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.copy-right,
.design-developed,
.design-developed a {
    color: rgba(255,255,255,.62) !important;
}

.scrollToTop {
    position: fixed !important;
    right: 22px !important;
    bottom: 76px !important;
    z-index: 1200;
    width: 46px;
    height: 46px;
}

.scrollToTop i {
    position: static !important;
    width: 46px !important;
    height: 46px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 50% !important;
    background: var(--np-primary) !important;
    line-height: 1 !important;
    font-size: 22px !important;
}

.footer-scrool {
    z-index: 1150 !important;
    height: 48px !important;
    display: flex !important;
    align-items: stretch !important;
    background: #7e0000 !important;
    box-shadow: 0 -4px 18px rgba(0,0,0,.15);
}

.footer-scrool-1 {
    min-width: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #560000 !important;
}

.footer-scrool-1 span {
    color: #fff !important;
    font-weight: 700;
}

.footer-scrool-2 {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.footer-scrool-2 a {
    margin-right: 30px;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .np-hero-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(310px, .8fr);
    }

    .np-news-panel {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .np-tab-pane {
        max-height: 360px;
    }

    .np-rank-item {
        grid-template-columns: 28px 82px minmax(0, 1fr);
    }

    .np-latest-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .np-latest-grid .np-story-card:nth-child(4) {
        display: none;
    }

    .np-category-lead {
        grid-template-columns: 1fr;
    }

    .np-category-lead-image {
        min-height: 230px;
    }

    .np-category-list {
        grid-template-columns: 1fr;
    }

    .np-compact-story:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--np-border);
    }

    .np-compact-story:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 991px) {
    .np-brandbar-inner {
        min-height: 82px;
    }

    .np-brand-logo img {
        max-height: 58px;
    }

    .np-mobile-menu-button {
        display: inline-flex;
    }

    .np-nav-shell {
        min-height: 58px;
    }

    .np-nav-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        background: #0b3f59;
        box-shadow: var(--np-shadow);
    }

    .np-nav-content.open {
        display: block;
    }

    .np-nav-list {
        display: block;
        padding: 8px 15px 14px;
    }

    .np-nav-list > li {
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .np-nav-list > li:last-child {
        border-bottom: 0;
    }

    .np-nav-list > li > a,
    .np-nav-link-row > a {
        min-height: 48px;
        flex: 1;
        padding: 0 12px;
    }

    .np-nav-list > li.active > a {
        border-radius: 7px;
    }

    .np-submenu-toggle {
        width: 50px;
        padding: 0;
        font-size: 16px;
    }

    .np-submenu {
        position: static;
        width: auto;
        display: none;
        padding: 0 0 10px 18px;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .np-has-submenu.submenu-open > .np-submenu {
        display: block;
    }

    .np-has-submenu:hover > .np-submenu:not(.force-open) {
        display: none;
    }

    .np-has-submenu.submenu-open:hover > .np-submenu {
        display: block;
    }

    .np-nav-epaper {
        display: none;
    }

    .np-search-panel {
        position: absolute;
        left: 15px;
        right: 15px;
        top: calc(100% + 8px);
        margin: 0;
    }

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

    .np-lead-card,
    .np-lead-media {
        min-height: 500px;
    }

    .np-hero-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, 190px);
    }

    .np-news-panel {
        grid-column: auto;
    }

    .np-category-grid {
        grid-template-columns: 1fr;
    }

    .np-category-lead {
        grid-template-columns: minmax(250px, .9fr) minmax(0, 1.1fr);
    }

    .np-category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .np-video-grid {
        grid-template-columns: 1fr;
    }

    .np-video-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .np-video-small-media {
        height: 120px;
    }

    .np-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .np-photo-card-featured {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .np-topbar-inner {
        min-height: 42px;
    }

    .np-topbar-info {
        gap: 10px;
    }

    .np-topbar-info > span:first-child,
    .np-topbar-info > span:nth-child(3),
    .np-topbar-links .np-epaper-link {
        display: none;
    }

    .np-topbar-links {
        margin-left: auto;
    }

    .np-social-links a {
        width: 26px;
        height: 26px;
    }

    .np-brandbar-inner {
        min-height: 72px;
        justify-content: center;
    }

    .np-brand-logo img {
        max-height: 52px;
    }

    .np-brand-message {
        display: none;
    }

    .np-nav-shell {
        min-height: 54px;
    }

    .np-mobile-menu-button {
        height: 40px;
    }

    .np-search-toggle {
        width: 44px;
        height: 46px;
    }

    .np-ad-wrap {
        padding: 14px 0;
    }

    .np-breaking {
        padding-top: 10px;
    }

    .np-breaking-label {
        padding: 0 12px;
        font-size: 14px;
    }

    .np-breaking-items a,
    .np-breaking-items span {
        font-size: 15px;
    }

    .np-hero-section {
        padding-top: 14px;
    }

    .np-hero-grid {
        gap: 14px;
    }

    .np-lead-card,
    .np-lead-media {
        min-height: 410px;
    }

    .np-lead-content {
        padding: 22px;
    }

    .np-lead-content h1 {
        font-size: 28px;
    }

    .np-lead-content p {
        display: none;
    }

    .np-hero-secondary {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 180px);
    }

    .np-news-panel {
        min-height: 0;
    }

    .np-section {
        padding-top: 32px;
    }

    .np-section-heading h2 {
        font-size: 24px;
    }

    .np-section-heading,
    .np-category-heading {
        align-items: center;
    }

    .np-latest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .np-latest-grid .np-story-card:nth-child(4) {
        display: block;
    }

    .np-story-image {
        height: 150px;
    }

    .np-story-body {
        padding: 12px;
    }

    .np-story-body h3 {
        font-size: 17px;
    }

    .np-category-block {
        padding: 16px;
    }

    .np-category-heading {
        margin: -16px -16px 16px;
        padding: 14px 16px 12px;
    }

    .np-category-heading h2 {
        font-size: 22px;
    }

    .np-category-lead {
        grid-template-columns: 1fr;
    }

    .np-category-lead-image {
        min-height: 230px;
    }

    .np-category-list {
        grid-template-columns: 1fr;
    }

    .np-compact-story:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--np-border);
    }

    .np-compact-story:last-child {
        border-bottom: 0;
    }

    .np-video-section {
        margin-top: 32px;
        padding: 32px 0;
    }

    .np-video-feature,
    .np-video-media {
        min-height: 360px;
    }

    .np-video-media h3 {
        inset: auto 18px 18px;
        font-size: 23px;
    }

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

    .np-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 165px;
    }

    .np-photo-card-featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .footerMenu-content {
        justify-content: flex-start;
        margin-top: 22px;
    }

    .footer-area {
        padding-bottom: 88px !important;
    }

    .footer-scrool-1 {
        min-width: 120px;
    }
}

@media (max-width: 479px) {
    .np-topbar-info {
        font-size: 13px;
    }

    .np-social-links a:nth-child(n+4) {
        display: none;
    }

    .np-lead-card,
    .np-lead-media {
        min-height: 365px;
    }

    .np-lead-content {
        padding: 18px;
    }

    .np-lead-content h1 {
        font-size: 24px;
    }

    .np-secondary-content h2 {
        font-size: 17px;
    }

    .np-rank-item {
        grid-template-columns: 24px 68px minmax(0, 1fr);
        padding: 10px;
    }

    .np-rank-image {
        width: 68px;
        height: 50px;
    }

    .np-latest-grid {
        grid-template-columns: 1fr;
    }

    .np-story-image {
        height: 205px;
    }

    .np-category-lead-image {
        min-height: 205px;
    }

    .np-compact-story {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .np-compact-image {
        width: 86px;
        height: 62px;
    }

    .np-video-feature,
    .np-video-media {
        min-height: 300px;
    }

    .np-video-list {
        grid-template-columns: 1fr;
    }

    .np-video-small > a {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
        align-items: center;
    }

    .np-video-small-media {
        height: 92px;
    }

    .np-photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .np-photo-card-featured {
        grid-column: auto;
        grid-row: auto;
    }

    .np-photo-card-featured h3 {
        inset: auto 16px 14px;
        font-size: 21px;
    }

    .footer-scrool-1 {
        min-width: 102px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Structured footer */
.np-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr 1fr 1.15fr;
    gap: 34px;
}

.np-footer-brand p {
    max-width: 320px;
    margin: 18px 0;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.7;
}

.np-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.np-footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    color: rgba(255,255,255,.85);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.np-footer-social a:hover {
    transform: translateY(-2px);
    border-color: var(--np-accent);
    background: var(--np-accent);
    color: #fff;
}

.np-footer-column h3 {
    position: relative;
    margin: 0 0 17px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 20px;
}

.np-footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    border-radius: 3px;
    background: var(--np-accent);
}

.np-footer-links,
.np-footer-utility {
    margin: 0;
    padding: 0;
    list-style: none;
}

.np-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
}

.np-footer-links a,
.np-footer-utility a {
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

.np-footer-links a:hover,
.np-footer-utility a:hover {
    color: #fff;
}

.np-footer-details p {
    margin: 0 0 9px;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.55;
}

.np-footer-details strong {
    color: rgba(255,255,255,.9);
}

.np-footer-details i {
    width: 20px;
    color: var(--np-accent);
    font-size: 17px;
}

.np-footer-utility {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-top: 16px;
}

.np-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.np-footer-bottom p {
    margin: 0;
}

.np-footer-bottom a {
    color: rgba(255,255,255,.8);
}

.np-footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .np-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .np-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .np-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================================
   NEWS 11 — ADVANCED EDITORIAL HERO V2
   ========================================================= */

.np-hero-section {
    padding: 20px 0 14px;
}

.np-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    grid-template-areas:
        "featured sidebar"
        "highlights sidebar";
    gap: 16px 18px;
    align-items: stretch;
}

.np-hero-main {
    grid-area: featured;
}

.np-hero-secondary {
    grid-area: highlights;
}

.np-news-panel {
    grid-area: sidebar;
}

/* Main featured story */
.np-lead-card,
.np-lead-media {
    width: 100%;
    height: 340px;
    min-height: 340px;
}

.np-lead-card {
    border: 1px solid var(--np-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 32, 43, .09);
}

.np-lead-media {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, .85fr);
    overflow: hidden;
    background: #fff;
}

.np-lead-media > img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
}

/* Gradient শুধু ছবির উপরে থাকবে */
.np-lead-media > .np-card-shade {
    inset: 0 38% 0 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 25, .08) 45%,
            rgba(7, 18, 25, .38) 100%
        );
}

/* Headline content */
.np-lead-content {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px;
    color: var(--np-text);
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(215, 25, 32, .08),
            transparent 44%
        ),
        linear-gradient(145deg, #ffffff, #f8fafb);
}

.np-lead-content::before {
    content: "প্রধান সংবাদ";
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--np-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.np-lead-content::after {
    content: "";
    position: absolute;
    top: 26px;
    right: 25px;
    width: 34px;
    height: 4px;
    border-radius: 20px;
    background: var(--np-accent);
}

.np-lead-content .np-category-badge {
    margin-bottom: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(11, 77, 109, .1);
    color: var(--np-primary);
    font-size: 13px;
}

.np-lead-content h1 {
    margin: 0 0 12px;
    color: var(--np-text);
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.28;
    font-weight: 700;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.np-lead-content p {
    margin: 0 0 15px;
    color: var(--np-muted);
    font-size: 15px;
    line-height: 1.58;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.np-lead-content .np-meta {
    color: var(--np-muted);
    font-size: 13px;
}

/* Four compact featured stories */
.np-hero-secondary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 158px;
    gap: 12px;
}

.np-secondary-card,
.np-secondary-media {
    width: 100%;
    height: 158px;
    min-height: 158px;
}

.np-secondary-card {
    border: 1px solid var(--np-border);
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(16, 32, 43, .07);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.np-secondary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(16, 32, 43, .13);
}

.np-secondary-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 75%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(7, 17, 24, .92)
    );
}

.np-secondary-content {
    z-index: 3;
    padding: 13px;
}

.np-secondary-content .np-category-badge {
    margin-bottom: 6px;
    padding: 3px 8px;
    border-radius: 20px;
    background: var(--np-accent);
    font-size: 11px;
}

.np-secondary-content h2 {
    color: #fff;
    font-size: 16px;
    line-height: 1.32;
    -webkit-line-clamp: 2;
}

/* Latest and trending sidebar */
.np-news-panel {
    height: 514px;
    min-height: 514px;
    overflow: hidden;
    border: 1px solid var(--np-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 32, 43, .08);
}

.np-panel-tabs {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
}

.np-tab-button {
    height: 50px;
}

.np-tab-button.active {
    border-bottom-color: var(--np-accent);
    color: var(--np-primary);
}

.np-tab-pane {
    max-height: 464px;
}

.np-rank-item {
    transition: background .2s ease;
}

.np-rank-item:hover {
    background: #f5f8fa;
}

.np-rank-number {
    background: var(--np-primary);
}

.np-rank-item:first-child .np-rank-number {
    background: var(--np-accent);
}

/* Tablet */
@media (max-width: 1199px) {
    .np-hero-grid {
        grid-template-columns: minmax(0, 1fr) 310px;
        grid-template-areas:
            "featured sidebar"
            "highlights highlights";
    }

    .np-lead-card,
    .np-lead-media,
    .np-lead-media > img {
        height: 320px;
        min-height: 320px;
    }

    .np-lead-media {
        grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr);
    }

    .np-lead-content {
        padding: 23px;
    }

    .np-lead-content h1 {
        font-size: 27px;
    }

    .np-news-panel {
        height: 320px;
        min-height: 320px;
    }

    .np-tab-pane {
        max-height: 270px;
    }
}

/* Small tablet */
@media (max-width: 991px) {
    .np-hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "featured"
            "highlights"
            "sidebar";
    }

    .np-lead-card,
    .np-lead-media,
    .np-lead-media > img {
        height: 310px;
        min-height: 310px;
    }

    .np-lead-media {
        grid-template-columns: 55% 45%;
    }

    .np-lead-media > .np-card-shade {
        inset: 0 45% 0 0;
    }

    .np-hero-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, 165px);
    }

    .np-secondary-card,
    .np-secondary-media {
        height: 165px;
        min-height: 165px;
    }

    .np-news-panel {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .np-tab-pane {
        max-height: 390px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .np-hero-section {
        padding-top: 14px;
    }

    .np-lead-card,
    .np-lead-media {
        height: auto;
        min-height: 0;
    }

    .np-lead-media {
        display: block;
    }

    .np-lead-media > img {
        width: 100%;
        height: 225px;
        min-height: 225px;
    }

    .np-lead-media > .np-card-shade {
        display: none;
    }

    .np-lead-content {
        display: block;
        padding: 20px;
    }

    .np-lead-content::after {
        top: 22px;
        right: 20px;
    }

    .np-lead-content h1 {
        margin-bottom: 10px;
        font-size: 25px;
        -webkit-line-clamp: 3;
    }

    .np-lead-content p {
        display: -webkit-box;
        margin-bottom: 12px;
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .np-hero-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, 155px);
        gap: 10px;
    }

    .np-secondary-card,
    .np-secondary-media {
        height: 155px;
        min-height: 155px;
    }

    .np-secondary-content {
        padding: 11px;
    }

    .np-secondary-content h2 {
        font-size: 15px;
    }
}

/* Very small mobile */
@media (max-width: 479px) {
    .np-lead-media > img {
        height: 205px;
        min-height: 205px;
    }

    .np-lead-content {
        padding: 18px;
    }

    .np-lead-content h1 {
        font-size: 23px;
    }

    .np-hero-secondary {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 170px);
    }

    .np-secondary-card,
    .np-secondary-media {
        height: 170px;
        min-height: 170px;
    }
}