:root {
    --nw-brand: #992556;
    --nw-brand-dark: #74183f;
    --nw-ink: #181818;
    --nw-text: #2a2a2a;
    --nw-muted: #737373;
    --nw-line: #e6e6e6;
    --nw-soft: #f6f6f6;
    --nw-shell: 1120px;
    --nw-radius: 8px;
    --nw-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --nw-reading: Georgia, "Times New Roman", Times, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #fff;
    color: var(--nw-text);
    font-family: var(--nw-ui);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.nw-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--nw-brand); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
figure { margin: 0; }

.screen-reader-text,
.nw-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.nw-skip-link:focus {
    clip: auto;
    width: auto;
    height: auto;
    z-index: 99999;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    border: 1px solid var(--nw-line);
}
.nw-shell {
    width: min(calc(100% - 32px), var(--nw-shell));
    margin-inline: auto;
}

/* Header */
.nw-site-header { background: #fff; border-bottom: 1px solid var(--nw-line); }
.nw-topbar { background: #191919; color: #eee; font-size: 12px; }
.nw-topbar-inner {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.nw-topbar-tagline { color: #bfbfbf; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nw-brand-row {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nw-brand { min-width: 0; }
.nw-brand .custom-logo-link { display: block; line-height: 0; }
.nw-brand .custom-logo { width: auto; max-width: 280px; max-height: 62px; }
.nw-site-title { font-size: 34px; line-height: 1; font-weight: 800; letter-spacing: -1.5px; color: var(--nw-brand); }
.nw-header-actions { display: flex; align-items: center; gap: 6px; }
.nw-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--nw-line);
    border-radius: 50%;
    background: #fff;
    color: var(--nw-ink);
}
.nw-icon-button:hover { border-color: #c9c9c9; background: #fafafa; }
.nw-icon-search {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}
.nw-icon-search::after {
    content: "";
    width: 7px;
    height: 2px;
    background: currentColor;
    position: absolute;
    right: -6px;
    bottom: -3px;
    transform: rotate(45deg);
    transform-origin: left center;
}
.nw-menu-toggle { display: none; }
.nw-menu-bars { display: grid; gap: 4px; }
.nw-menu-bars i { display: block; width: 18px; height: 2px; background: currentColor; }
.nw-search-panel { border-top: 1px solid var(--nw-line); background: #fff; }
.nw-search-panel .nw-shell { padding-block: 14px; }
.nw-search-form { display: flex; gap: 8px; width: 100%; }
.nw-search-form label { flex: 1 1 auto; }
.nw-search-field {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    outline: 0;
}
.nw-search-field:focus { border-color: var(--nw-brand); box-shadow: 0 0 0 2px color-mix(in srgb, var(--nw-brand) 12%, transparent); }
.nw-search-submit,
.nw-button {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 4px;
    background: var(--nw-brand);
    color: #fff;
    font-weight: 700;
}
.nw-search-submit:hover,
.nw-button:hover { background: var(--nw-brand-dark); color: #fff; }

.nw-primary-nav { background: var(--nw-brand); color: #fff; }
.nw-nav-shell { overflow: visible; }
.nw-nav-list {
    list-style: none;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
}
.nw-nav-list > li { position: relative; margin: 0; }
.nw-nav-list > li > a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .25px;
}
.nw-nav-list > li.current-menu-item > a,
.nw-nav-list > li.current-category-ancestor > a,
.nw-nav-list > li > a:hover { background: rgba(0,0,0,.18); color: #fff; }
.nw-nav-list .sub-menu {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--nw-line);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    display: none;
}
.nw-nav-list li:hover > .sub-menu,
.nw-nav-list li:focus-within > .sub-menu { display: block; }
.nw-nav-list .sub-menu a { display: block; padding: 10px 14px; color: var(--nw-text); font-size: 14px; }
.nw-nav-list .sub-menu a:hover { background: var(--nw-soft); color: var(--nw-brand); }

.nw-breaking { border-bottom: 1px solid var(--nw-line); background: #fff; }
.nw-breaking-inner { display: flex; align-items: center; min-height: 42px; overflow: hidden; }
.nw-breaking-label {
    flex: 0 0 auto;
    margin-right: 14px;
    padding: 4px 8px;
    border-radius: 3px;
    background: var(--nw-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.nw-breaking-track { display: flex; gap: 28px; overflow: hidden; white-space: nowrap; font-size: 13px; }
.nw-breaking-track a { position: relative; }
.nw-breaking-track a + a::before { content: "•"; position: absolute; left: -17px; color: #bbb; }
.nw-header-banner { padding-block: 14px; }
.nw-header-banner .widget { margin: 0; text-align: center; }

/* Mobile drawer */
.nw-mobile-drawer,
.nw-drawer-backdrop { display: none; }

/* Layout */
.nw-main { padding: 28px 0 48px; }
.nw-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    align-items: start;
}
.nw-content-column { min-width: 0; }
.nw-sidebar { min-width: 0; }
.nw-sidebar .widget {
    margin: 0 0 24px;
    padding: 0;
    background: #fff;
}
.nw-sidebar .widget-title {
    position: relative;
    margin: 0 0 12px;
    padding: 0 0 10px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--nw-ink);
}
.nw-sidebar .widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--nw-brand);
}
.nw-sidebar .widget img,
.nw-sidebar .widget iframe { display: block; width: 100%; max-width: 100%; height: auto; }
.nw-sidebar .widget iframe { aspect-ratio: 16 / 9; }
.nw-sidebar .widget ul { list-style: none; padding: 0; margin: 0; }
.nw-sidebar .widget li { padding: 10px 0; border-bottom: 1px solid var(--nw-line); }
.nw-sidebar .widget_text,
.nw-sidebar .textwidget { overflow-wrap: anywhere; }
.nw-sidebar select,
.nw-sidebar input:not([type="submit"]) { width: 100%; max-width: 100%; }

/* Hero */
.nw-hero { margin-bottom: 34px; }
.nw-hero-carousel { position: relative; }
.nw-hero-track { position: relative; min-height: 460px; background: #111; overflow: hidden; border-radius: var(--nw-radius); }
.nw-hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.nw-hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.nw-hero-slide:not(.is-active) .nw-hero-copy { display: none; }
.nw-hero-media,
.nw-hero-media img,
.nw-image-placeholder { display: block; width: 100%; height: 100%; }
.nw-hero-media img { object-fit: cover; }
.nw-image-placeholder { min-height: 180px; background: linear-gradient(135deg,#ececec,#d9d9d9); }
.nw-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.02) 12%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.88) 100%); }
.nw-hero-copy { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 28px; max-width: 720px; color: #fff; }
.nw-hero-copy h2 { margin: 7px 0 8px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -.7px; }
.nw-hero-copy h2 a { color: #fff; }
.nw-hero-copy h2 a:hover { color: #fff; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.nw-hero-excerpt { max-width: 620px; margin: 0; color: rgba(255,255,255,.86); font-size: 15px; }
.nw-kicker {
    display: inline-block;
    color: var(--nw-brand);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .45px;
}
.nw-kicker-light { color: #fff; background: var(--nw-brand); padding: 5px 7px; border-radius: 3px; }
.nw-hero-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}
.nw-hero-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--nw-line);
    background: #fff;
    color: var(--nw-ink);
    font-size: 24px;
    line-height: 1;
}
.nw-hero-dots { display: flex; align-items: center; gap: 7px; }
.nw-hero-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #c8c8c8; }
.nw-hero-dot.is-active { width: 24px; border-radius: 8px; background: var(--nw-brand); }

/* Sections & cards */
.nw-section { margin: 0 0 34px; }
.nw-section-header {
    position: relative;
    margin: 0 0 16px;
    padding: 0 0 11px;
    border-bottom: 1px solid var(--nw-line);
}
.nw-section-header::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 48px; height: 3px; background: var(--nw-brand); }
.nw-section-header h1,
.nw-section-header h2 { margin: 0; color: var(--nw-ink); font-size: 22px; line-height: 1.2; letter-spacing: -.25px; }
.nw-section-header-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nw-section-header-row > a { color: var(--nw-brand); font-size: 13px; font-weight: 700; }
.nw-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.nw-card { min-width: 0; }
.nw-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 6px; background: #eee; }
.nw-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.nw-card:hover .nw-card-media img { transform: scale(1.025); }
.nw-card-body { padding-top: 10px; }
.nw-card-body h3 { margin: 5px 0 6px; font-size: 17px; line-height: 1.3; letter-spacing: -.15px; }
.nw-card-body h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.nw-card-body time { color: var(--nw-muted); font-size: 11px; }

/* Latest list */
.nw-news-list { display: block; }
.nw-list-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--nw-line);
}
.nw-list-card:first-child { padding-top: 0; }
.nw-list-thumb { display: block; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 6px; background: #eee; }
.nw-list-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.nw-list-card:hover .nw-list-thumb img { transform: scale(1.02); }
.nw-list-copy h2 { margin: 5px 0 7px; font-size: 21px; line-height: 1.27; letter-spacing: -.2px; }
.nw-list-copy h2 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.nw-list-copy > p { margin: 0 0 10px; color: #555; font-size: 14px; line-height: 1.55; }
.nw-list-meta { display: flex; align-items: center; gap: 7px; color: var(--nw-muted); font-size: 11px; }

/* Archive */
.nw-archive-header { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--nw-line); }
.nw-archive-header h1 { margin: 0; color: var(--nw-ink); font-size: 32px; line-height: 1.15; letter-spacing: -.5px; }
.nw-archive-description { max-width: 700px; margin-top: 10px; color: var(--nw-muted); }
.nw-archive-description p { margin: 0; }
.nw-eyebrow { display: block; margin-bottom: 7px; color: var(--nw-brand); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.nw-pagination { margin-top: 28px; }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.page-numbers { min-width: 38px; height: 38px; padding: 0 10px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--nw-line); border-radius: 4px; font-size: 13px; }
.page-numbers.current { background: var(--nw-brand); border-color: var(--nw-brand); color: #fff; }

/* Single article */
.nw-single-main { padding-top: 30px; }
.nw-single-layout { grid-template-columns: minmax(0, 1fr) 300px; }
.nw-article { min-width: 0; }
.nw-article-header { margin-bottom: 22px; }
.nw-breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; color: var(--nw-muted); font-size: 12px; }
.nw-breadcrumb a:hover { color: var(--nw-brand); }
.nw-article-header h1 { max-width: 820px; margin: 0; color: var(--nw-ink); font-size: clamp(34px, 4.3vw, 48px); line-height: 1.1; letter-spacing: -1px; }
.nw-article-deck { max-width: 760px; margin: 14px 0 0; color: #595959; font-family: var(--nw-reading); font-size: 19px; line-height: 1.5; }
.nw-article-meta-row {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--nw-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}
.nw-meta { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; color: var(--nw-muted); font-size: 12px; }
.nw-meta-author a { color: var(--nw-brand); font-weight: 700; }
.nw-reading-time { margin-top: 3px; color: #999; font-size: 11px; }
.nw-share { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.nw-share a,
.nw-copy-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--nw-line);
    border-radius: 50%;
    background: #fff;
    color: var(--nw-ink);
    font-size: 11px;
    font-weight: 800;
    text-transform: lowercase;
}
.nw-share a:hover,
.nw-copy-link:hover { border-color: var(--nw-brand); color: var(--nw-brand); }
.nw-copy-link.is-copied { background: var(--nw-brand); border-color: var(--nw-brand); color: #fff; }
.nw-featured-image { margin: 0 0 24px; }
.nw-featured-image img { display: block; width: 100%; height: auto; border-radius: 7px; }
.nw-featured-image figcaption { margin-top: 8px; color: var(--nw-muted); font-size: 12px; line-height: 1.45; }
.nw-article-body {
    width: min(100%, 690px);
    margin-inline: auto;
    color: #242424;
    font-family: var(--nw-reading);
    font-size: 19px;
    line-height: 1.82;
}
.nw-article-body > :first-child { margin-top: 0; }
.nw-article-body p { margin: 0 0 1.35em; }
.nw-article-body h2,
.nw-article-body h3,
.nw-article-body h4 { color: var(--nw-ink); font-family: var(--nw-ui); line-height: 1.25; letter-spacing: -.3px; }
.nw-article-body h2 { margin: 1.7em 0 .65em; font-size: 27px; }
.nw-article-body h3 { margin: 1.5em 0 .6em; font-size: 22px; }
.nw-article-body a { color: var(--nw-brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.nw-article-body blockquote {
    margin: 1.5em 0;
    padding: 0 0 0 20px;
    border-left: 4px solid var(--nw-brand);
    color: #444;
    font-size: 1.08em;
    font-style: italic;
}
.nw-article-body ul,
.nw-article-body ol { padding-left: 1.35em; }
.nw-article-body li { margin-bottom: .55em; }
.nw-article-body figure { margin: 1.5em 0; }
.nw-article-body figcaption { color: var(--nw-muted); font-family: var(--nw-ui); font-size: 12px; line-height: 1.45; }
.nw-article-body img { border-radius: 4px; }
.nw-article-body iframe,
.nw-article-body video { max-width: 100%; }
.nw-article-body table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; font-family: var(--nw-ui); font-size: 14px; }
.nw-article-body th,
.nw-article-body td { padding: 10px; border: 1px solid var(--nw-line); text-align: left; }
.nw-tags {
    width: min(100%, 690px);
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--nw-line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 12px;
}
.nw-tags a { padding: 6px 9px; border: 1px solid var(--nw-line); border-radius: 999px; color: #555; }
.nw-tags a:hover { border-color: var(--nw-brand); color: var(--nw-brand); }
.nw-after-article { width: min(100%, 690px); margin: 28px auto 0; }
.nw-related { margin-top: 42px; }

/* Comments */
.nw-comments { width: min(100%, 690px); margin: 42px auto 0; padding-top: 24px; border-top: 1px solid var(--nw-line); }
.nw-comments h2 { margin: 0 0 18px; font-size: 22px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .comment { margin-bottom: 20px; }
.comment-body { padding: 14px 0; border-bottom: 1px solid var(--nw-line); }
.comment-author img { border-radius: 50%; vertical-align: middle; margin-right: 8px; }
.comment-meta { font-size: 12px; color: var(--nw-muted); }
.comment-content { margin-top: 10px; }
.comment-form label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 700; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { width: 100%; border: 1px solid #ccc; border-radius: 4px; padding: 10px; }
.comment-form .submit { border: 0; border-radius: 4px; background: var(--nw-brand); color: #fff; padding: 10px 18px; font-weight: 700; }

/* Pages */
.nw-page-shell { max-width: 860px; }
.nw-page-header h1 { margin: 0 0 22px; color: var(--nw-ink); font-size: 42px; line-height: 1.1; letter-spacing: -.8px; }
.nw-not-found { max-width: 720px; padding: 60px 0 90px; text-align: center; }
.nw-error-code { display: block; color: var(--nw-brand); font-size: 90px; font-weight: 900; line-height: 1; }
.nw-not-found h1 { margin: 12px 0 8px; font-size: 34px; }
.nw-not-found p { margin: 0 auto 24px; color: var(--nw-muted); }
.nw-not-found .nw-search-form { max-width: 520px; margin: 0 auto 18px; }
.nw-not-found .nw-button { display: inline-flex; align-items: center; }
.nw-empty { padding: 30px 0; color: var(--nw-muted); }
.nw-empty h2 { color: var(--nw-ink); }

/* Footer */
.nw-site-footer { margin-top: 34px; background: #171717; color: #cfcfcf; }
.nw-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 34px;
}
.nw-footer-brand .custom-logo { max-width: 220px; max-height: 56px; width: auto; filter: brightness(0) invert(1); }
.nw-footer-brand strong { color: #fff; font-size: 28px; }
.nw-footer-brand p { max-width: 320px; color: #aaa; font-size: 13px; }
.nw-site-footer .widget { margin: 0; }
.nw-site-footer .widget-title { margin: 0 0 12px; color: #fff; font-size: 15px; }
.nw-site-footer ul { list-style: none; margin: 0; padding: 0; }
.nw-site-footer li { margin-bottom: 7px; font-size: 13px; }
.nw-site-footer a:hover { color: #fff; }
.nw-footer-bottom { border-top: 1px solid #333; }
.nw-footer-bottom-inner { min-height: 56px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; font-size: 12px; color: #9a9a9a; }
.nw-footer-menu { margin: 0 0 0 auto; padding: 0; display: flex; gap: 14px; list-style: none; }

@media (max-width: 980px) {
    .nw-layout,
    .nw-single-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 22px; }
    .nw-hero-track { min-height: 420px; }
    .nw-card-grid { gap: 14px; }
    .nw-list-card { grid-template-columns: 205px minmax(0,1fr); }
    .nw-footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); }
}

@media (max-width: 760px) {
    .nw-shell { width: min(calc(100% - 28px), var(--nw-shell)); }
    .nw-topbar { display: none; }
    .nw-brand-row { min-height: 62px; gap: 10px; }
    .nw-brand .custom-logo { max-width: 170px; max-height: 42px; }
    .nw-site-title { font-size: 27px; }
    .nw-search-toggle { display: none; }
    .nw-menu-toggle { display: inline-flex; color: var(--nw-brand); }

    .nw-primary-nav { overflow-x: auto; scrollbar-width: none; }
    .nw-primary-nav::-webkit-scrollbar { display: none; }
    .nw-nav-shell { width: 100%; padding-left: 14px; overflow: visible; }
    .nw-nav-list { width: max-content; min-width: 100%; }
    .nw-nav-list > li > a { min-height: 40px; padding: 0 10px; font-size: 11px; }
    .nw-nav-list .sub-menu { display: none !important; }

    .nw-mobile-drawer {
        display: block;
        position: fixed;
        z-index: 1001;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(88vw, 350px);
        padding: 0 18px 26px;
        overflow-y: auto;
        background: #fff;
        box-shadow: -12px 0 32px rgba(0,0,0,.18);
    }
    .nw-mobile-drawer[hidden] { display: none; }
    .nw-drawer-backdrop {
        display: block;
        position: fixed;
        z-index: 1000;
        inset: 0;
        background: rgba(0,0,0,.42);
    }
    .nw-drawer-backdrop[hidden] { display: none; }
    .nw-mobile-drawer-head { min-height: 64px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--nw-line); color: var(--nw-brand); }
    .nw-mobile-close { width: 38px; height: 38px; border: 0; background: transparent; font-size: 28px; color: var(--nw-ink); }
    .nw-mobile-nav-list { list-style: none; margin: 0; padding: 8px 0 16px; }
    .nw-mobile-nav-list li { border-bottom: 1px solid var(--nw-line); }
    .nw-mobile-nav-list a { display: block; padding: 13px 4px; font-size: 14px; font-weight: 750; }
    .nw-mobile-nav-list .sub-menu { list-style: none; margin: 0; padding: 0 0 6px 14px; }
    .nw-mobile-nav-list .sub-menu li { border: 0; }
    .nw-mobile-nav-list .sub-menu a { padding: 8px 4px; font-size: 13px; font-weight: 500; color: #555; }
    .nw-mobile-search { margin-top: 12px; }

    .nw-breaking-inner { min-height: 38px; }
    .nw-breaking-label { margin-right: 10px; font-size: 10px; }
    .nw-breaking-track { font-size: 12px; gap: 24px; }

    .nw-main { padding: 18px 0 34px; }
    .nw-layout,
    .nw-single-layout { display: block; }
    .nw-sidebar { margin-top: 34px; }
    .nw-sidebar .widget { margin-bottom: 20px; }

    .nw-hero { margin-inline: -14px; margin-bottom: 28px; }
    .nw-hero-track { min-height: 58vw; max-height: 340px; border-radius: 0; }
    .nw-hero-copy { left: 16px; right: 16px; bottom: 16px; }
    .nw-hero-copy h2 { margin-top: 6px; font-size: clamp(24px, 7vw, 32px); line-height: 1.13; letter-spacing: -.45px; }
    .nw-hero-excerpt { display: none; }
    .nw-hero-controls { margin-top: 10px; }
    .nw-hero-arrow { display: none; }
    .nw-kicker-light { font-size: 10px; }

    .nw-section { margin-bottom: 28px; }
    .nw-section-header { margin-bottom: 13px; }
    .nw-section-header h1,
    .nw-section-header h2 { font-size: 19px; }
    .nw-card-grid { grid-template-columns: repeat(3, minmax(210px, 1fr)); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none; }
    .nw-card-grid::-webkit-scrollbar { display: none; }
    .nw-card { scroll-snap-align: start; }
    .nw-card-body h3 { font-size: 15px; }

    .nw-list-card { grid-template-columns: 110px minmax(0,1fr); gap: 13px; padding: 14px 0; }
    .nw-list-thumb { border-radius: 4px; }
    .nw-list-copy h2 { margin: 4px 0 6px; font-size: 15px; line-height: 1.3; }
    .nw-list-copy > p { display: none; }
    .nw-list-meta { font-size: 10px; gap: 5px; }
    .nw-list-meta span:last-child { display: none; }
    .nw-kicker { font-size: 9.5px; }

    .nw-archive-header { margin-bottom: 18px; }
    .nw-archive-header h1 { font-size: 28px; }

    .nw-single-main { padding-top: 18px; }
    .nw-breadcrumb { margin-bottom: 10px; font-size: 11px; }
    .nw-article-header h1 { font-size: clamp(29px, 8vw, 36px); line-height: 1.13; letter-spacing: -.6px; }
    .nw-article-deck { margin-top: 10px; font-size: 17px; line-height: 1.5; }
    .nw-article-meta-row { align-items: flex-start; flex-direction: column; gap: 12px; margin-top: 14px; }
    .nw-share { width: 100%; }
    .nw-featured-image { margin-inline: -14px; }
    .nw-featured-image img { border-radius: 0; width: 100%; }
    .nw-featured-image figcaption { padding-inline: 14px; }
    .nw-article-body { width: 100%; font-size: 18.5px; line-height: 1.78; }
    .nw-article-body h2 { font-size: 24px; }
    .nw-article-body h3 { font-size: 20px; }
    .nw-tags,
    .nw-after-article,
    .nw-comments { width: 100%; }
    .nw-related { margin-top: 34px; }

    .nw-page-header h1 { font-size: 32px; }
    .nw-error-code { font-size: 68px; }
    .nw-not-found h1 { font-size: 28px; }

    .nw-footer-grid { grid-template-columns: 1fr; gap: 22px; padding-top: 34px; }
    .nw-footer-bottom-inner { padding-block: 14px; align-items: flex-start; flex-direction: column; gap: 8px; }
    .nw-footer-menu { margin-left: 0; flex-wrap: wrap; }
}

@media (max-width: 420px) {
    .nw-shell { width: calc(100% - 24px); }
    .nw-hero { margin-inline: -12px; }
    .nw-hero-track { min-height: 64vw; }
    .nw-featured-image { margin-inline: -12px; }
    .nw-featured-image figcaption { padding-inline: 12px; }
    .nw-card-grid { grid-template-columns: repeat(3, minmax(190px, 1fr)); }
    .nw-list-card { grid-template-columns: 102px minmax(0,1fr); gap: 12px; }
}

/* Homepage editorial: Sorotan */
@media (min-width: 761px) {
    .nw-spotlight .nw-card-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 18px 22px;
        overflow: visible;
    }

    .nw-spotlight .nw-card:first-child {
        grid-row: 1 / 3;
    }

    .nw-spotlight .nw-card:first-child .nw-card-media {
        aspect-ratio: 16 / 9;
    }

    .nw-spotlight .nw-card:first-child .nw-card-body h3 {
        font-size: 24px;
        line-height: 1.22;
    }

    .nw-spotlight .nw-card:not(:first-child) {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 13px;
        align-items: start;
        padding-bottom: 17px;
        border-bottom: 1px solid #e7e7e7;
    }

    .nw-spotlight .nw-card:not(:first-child) .nw-card-media {
        aspect-ratio: 4 / 3;
        border-radius: 4px;
    }

    .nw-spotlight .nw-card:not(:first-child) .nw-card-body {
        padding-top: 0;
    }

    .nw-spotlight .nw-card:not(:first-child) .nw-card-body h3 {
        margin-top: 4px;
        font-size: 16px;
        line-height: 1.3;
    }
}

@media (max-width: 760px) {
    .nw-spotlight .nw-card-grid {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: visible;
        padding-bottom: 0;
    }

    .nw-spotlight .nw-card:first-child {
        margin-bottom: 18px;
    }

    .nw-spotlight .nw-card:first-child .nw-card-media {
        aspect-ratio: 16 / 9;
    }

    .nw-spotlight .nw-card:first-child .nw-card-body h3 {
        font-size: 19px;
    }

    .nw-spotlight .nw-card:not(:first-child) {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 13px;
        padding: 14px 0;
        border-top: 1px solid #e8e8e8;
    }

    .nw-spotlight .nw-card:not(:first-child) .nw-card-media {
        aspect-ratio: 4 / 3;
    }

    .nw-spotlight .nw-card:not(:first-child) .nw-card-body {
        padding-top: 0;
    }
}

/* Header banner bawah navigasi */
.nw-header-banner {
    padding: 18px 0;
}

.nw-header-banner .widget {
    margin: 0;
    text-align: center;
}

.nw-header-banner img {
    display: block;
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
}

.nw-header-banner iframe,
.nw-header-banner video {
    max-width: 100%;
}

@media (max-width: 760px) {
    .nw-header-banner {
        padding: 10px 0 14px;
    }

    .nw-header-banner img {
        border-radius: 0;
    }
}

/* Homepage editorial: Berita Terkini */
.nw-latest .nw-list-card {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 17px;
    padding: 16px 0;
}

.nw-latest .nw-list-thumb {
    border-radius: 4px;
}

.nw-latest .nw-list-copy h2 {
    margin: 4px 0 6px;
    font-size: 19px;
    line-height: 1.28;
}

.nw-latest .nw-list-copy > p {
    margin-bottom: 8px;
    font-size: 13.5px;
    line-height: 1.5;
}

.nw-latest .nw-kicker {
    font-size: 10px;
}

.nw-latest .nw-list-meta {
    font-size: 10.5px;
}

@media (max-width: 760px) {
    .nw-latest .nw-list-card {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 12px;
        padding: 14px 0;
    }

    .nw-latest .nw-list-copy h2 {
        margin: 3px 0 5px;
        font-size: 15px;
        line-height: 1.3;
    }

    .nw-latest .nw-list-copy > p {
        display: none;
    }
}

/* Sidebar kanan editorial */
.nw-sidebar-right,
.nw-sidebar-single {
    width: 100%;
    max-width: 300px;
}

.nw-sidebar-right .widget,
.nw-sidebar-single .widget {
    width: 100%;
    margin-bottom: 26px;
    overflow: hidden;
}

.nw-sidebar-right .widget > a,
.nw-sidebar-right .widget figure,
.nw-sidebar-right .widget .wp-block-image,
.nw-sidebar-single .widget > a,
.nw-sidebar-single .widget figure,
.nw-sidebar-single .widget .wp-block-image {
    display: block;
    margin: 0;
}

.nw-sidebar-right .widget img,
.nw-sidebar-single .widget img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.nw-sidebar-right .widget-title,
.nw-sidebar-single .widget-title {
    margin-bottom: 14px;
    font-size: 17px;
}

.nw-sidebar-right .textwidget > *:first-child,
.nw-sidebar-single .textwidget > *:first-child {
    margin-top: 0;
}

.nw-sidebar-right .textwidget > *:last-child,
.nw-sidebar-single .textwidget > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .nw-sidebar-right,
.nw-sidebar-single {
        width: 100%;
        max-width: none;
        margin-top: 30px;
    }

    .nw-sidebar-right .widget img,
.nw-sidebar-single .widget img {
        max-width: 100%;
    }
}

/* Baca Juga di dalam artikel */
.nw-baca-juga {
    margin: 26px 0;
    padding: 14px;
    border: 1px solid #dddddd;
    background: #f7f7f7;
}

.nw-baca-juga-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nw-ink);
}

.nw-baca-juga-link {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: var(--nw-ink);
}

.nw-baca-juga-thumb {
    display: block;
    width: 70px;
    height: 58px;
    overflow: hidden;
}

.nw-baca-juga-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nw-baca-juga-title {
    font-family: var(--nw-font-ui);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.nw-baca-juga-link:hover .nw-baca-juga-title {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .nw-baca-juga {
        margin: 22px 0;
        padding: 12px;
    }

    .nw-baca-juga-link {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .nw-baca-juga-thumb {
        width: 76px;
        height: 62px;
    }
}

/* Kredit artikel lama Nawala */
.nw-article-credits {
    width: min(100%, 680px);
    margin: 26px auto 18px;
    padding-top: 16px;
    border-top: 1px solid var(--nw-line);
    color: #555;
    font-size: 13px;
    line-height: 1.55;
}

.nw-article-credits p {
    margin: 4px 0;
}

.nw-article-credits strong {
    color: var(--nw-ink);
}

.nw-article-credits a {
    color: var(--nw-brand);
}

@media (max-width: 760px) {
    .nw-article-credits {
        margin-top: 22px;
        font-size: 12.5px;
    }
}

/* Halaman Penulis */
.nw-author-header {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--nw-line);
}

.nw-author-avatar img {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
}

.nw-author-info h1 {
    margin: 3px 0 8px;
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -.4px;
    color: var(--nw-ink);
}

.nw-author-bio {
    max-width: 620px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.nw-author-bio p {
    margin: 0;
}

@media (max-width: 760px) {
    .nw-author-header {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 26px;
        padding-bottom: 20px;
    }

    .nw-author-avatar img {
        width: 72px;
        height: 72px;
    }

    .nw-author-info h1 {
        font-size: 25px;
    }

    .nw-author-bio {
        grid-column: 1 / -1;
        font-size: 13.5px;
    }
}

/* Refinement header editorial */
@media (min-width: 761px) {
    .nw-brand-row {
        min-height: 76px;
    }

    .nw-brand .custom-logo {
        max-width: 250px;
        max-height: 54px;
    }

    .nw-nav-list > li > a {
        min-height: 42px;
        padding-inline: 13px;
        font-size: 12px;
        letter-spacing: .2px;
    }

    .nw-breaking-inner {
        min-height: 38px;
    }

    .nw-header-banner {
        padding-block: 12px;
    }
}

/* Refinement footer editorial */
.nw-site-footer {
    margin-top: 44px;
    border-top: 4px solid var(--nw-brand);
}

.nw-footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
    padding-top: 38px;
    padding-bottom: 32px;
}

.nw-footer-brand p {
    margin-top: 14px;
    line-height: 1.65;
}

.nw-site-footer .widget-title {
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.nw-site-footer li {
    margin-bottom: 9px;
    line-height: 1.45;
}

.nw-site-footer a {
    color: #c9c9c9;
}

.nw-site-footer a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nw-footer-bottom-inner {
    min-height: 52px;
}

@media (max-width: 760px) {
    .nw-site-footer {
        margin-top: 32px;
    }

    .nw-footer-grid {
        gap: 24px;
        padding-top: 30px;
        padding-bottom: 26px;
    }

    .nw-footer-brand {
        padding-bottom: 4px;
    }
}

@media (max-width: 760px) {
    .nw-related .nw-card-grid {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .nw-related .nw-card {
        width: 100%;
    }
}

/* Sidebar artikel: Terbaru & Trending */
.nw-article-sidebar-module {
    margin-bottom: 32px;
}

.nw-article-sidebar-module .widget-title {
    margin-bottom: 8px;
}

.nw-sidebar-news-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--nw-line);
}

.nw-sidebar-news-thumb {
    display: block;
    width: 82px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee;
}

.nw-sidebar-news-thumb img,
.nw-sidebar-news-thumb .nw-image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nw-sidebar-news-item h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.nw-sidebar-news-item h3 a:hover {
    color: var(--nw-brand);
}

@media (max-width: 760px) {
    .nw-article-sidebar-module {
        margin-bottom: 28px;
    }

    .nw-sidebar-news-item {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 13px;
    }

    .nw-sidebar-news-thumb {
        width: 105px;
    }

    .nw-sidebar-news-item h3 {
        font-size: 15px;
    }
}

/* Homepage: blok kategori */
.nw-home-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 30px;
    margin-top: 8px;
}

.nw-home-category-grid .nw-section {
    margin-bottom: 0;
}

.nw-category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 18px;
}

.nw-category-lead-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 5px;
    background: #eee;
}

.nw-category-lead-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nw-category-lead h3 {
    margin: 10px 0 6px;
    font-size: 19px;
    line-height: 1.28;
}

.nw-category-lead p {
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.nw-category-list article {
    padding: 0 0 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--nw-line);
}

.nw-category-list article:last-child {
    margin-bottom: 0;
}

.nw-category-list h3 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.35;
}

.nw-category-list time {
    color: var(--nw-muted);
    font-size: 10.5px;
}

@media (max-width: 760px) {
    .nw-home-category-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 2px;
    }

    .nw-category-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nw-category-lead h3 {
        font-size: 18px;
    }

    .nw-category-list h3 {
        font-size: 15px;
    }
}

/* Statistik artikel: waktu baca + jumlah pembaca */
.nw-article-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--nw-muted);
    font-size: 12px;
}

.nw-stats-sep {
    color: #aaa;
}

.nw-view-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nw-view-count svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

@media (max-width: 760px) {
    .nw-article-stats {
        margin-top: 10px;
        font-size: 11px;
        gap: 6px;
    }

    .nw-view-count svg {
        width: 14px;
        height: 14px;
    }
}

/* Footer Nawalamedia editorial */
.nw-site-footer {
    background: #171717;
    color: #d2d2d2;
    border-top: 4px solid var(--nw-brand);
}

.nw-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 38px;
}

.nw-footer-brand strong {
    color: #fff;
    font-size: 22px;
}

.nw-footer-brand p {
    margin-top: 14px;
    line-height: 1.7;
    color: #bdbdbd;
    font-size: 14px;
}

.nw-footer-note {
    font-size: 13px;
}

.nw-site-footer .widget-title {
    color: #fff;
    margin: 0 0 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.nw-footer-menu-list,
.nw-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nw-footer-menu-list li,
.nw-footer-menu li {
    margin-bottom: 9px;
}

.nw-footer-menu-list a,
.nw-footer-menu a {
    color: #cfcfcf;
    font-size: 14px;
}

.nw-footer-menu-list a:hover,
.nw-footer-menu a:hover {
    color: #fff;
}

.nw-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}

.nw-footer-bottom-inner {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #aaa;
    font-size: 13px;
}

@media (max-width: 760px) {
    .nw-footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 32px;
    }

    .nw-footer-bottom-inner {
        padding-block: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}
