/* =========================================================
   New Vision Spot -- theme stylesheet
   Design tokens from the active Novamira direction
   "New Vision Spot Editorial"
   ========================================================= */

/* ---- Self-hosted fonts (never Google Fonts <link>) ---- */
@font-face {
	font-family: 'Plus Jakarta Sans';
	src: url('../fonts/jakarta-variable.woff2') format('woff2-variations');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/playfair-variable.woff2') format('woff2-variations');
	font-weight: 500 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/playfair-italic.woff2') format('woff2-variations');
	font-weight: 400 700;
	font-style: italic;
	font-display: swap;
}

:root {
	--nvs-ink: #1E293B;
	--nvs-ink-deep: #0F172A;
	--nvs-slate-700: #334155;
	--nvs-slate-600: #475569;
	--nvs-slate-500: #64748B;
	--nvs-slate-400: #94A3B8;
	--nvs-slate-200: #E2E8F0;
	--nvs-slate-100: #F1F5F9;
	--nvs-slate-50: #F8FAFC;

	--nvs-dusty-blue: #71889B;
	--nvs-dusty-blue-dark: #566D80;
	--nvs-soft-blue: #9CAEBB;
	--nvs-blue-grey: #C8D3DA;
	--nvs-light-grey: #E5E9EB;
	--nvs-primary-light: #F0F4F7;
	--nvs-off-white: #FAFAF8;
	--nvs-white: #FFFFFF;

	--nvs-gold: #C2A370;
	--nvs-trustpilot: #00B67A;
	--nvs-selection: #E07A5F;

	--nvs-font-serif: 'Playfair Display', Georgia, serif;
	--nvs-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	--nvs-container: 1280px;
	--nvs-container-narrow: 896px;
	--nvs-radius-sm: 4px;
	--nvs-radius-md: 12px;
	--nvs-radius-lg: 16px;
	--nvs-radius-xl: 24px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x lives on <html>, NOT <body>: putting it on body makes body the
   scroll container, which silently breaks native #hash anchor scrolling and
   window.scrollY (the header's Subscribe link relies on both). */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--nvs-off-white);
	color: var(--nvs-ink);
	font-family: var(--nvs-font-sans);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, .nvs-font-editorial { font-family: var(--nvs-font-serif); margin: 0; line-height: 1.15; }
p { margin: 0; }
::selection { background: var(--nvs-selection); color: #fff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--nvs-off-white); }
::-webkit-scrollbar-thumb { background: var(--nvs-blue-grey); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--nvs-soft-blue); }

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.nvs-skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 999; width: auto; height: auto; clip: auto;
	background: var(--nvs-ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}

/* ---- Layout helpers ---- */
.nvs-container { max-width: var(--nvs-container); margin: 0 auto; padding: 0 16px; }
.nvs-container-narrow { max-width: var(--nvs-container-narrow); margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .nvs-container, .nvs-container-narrow { padding: 0 24px; } }
@media (min-width: 1024px) { .nvs-container, .nvs-container-narrow { padding: 0 32px; } }

.nvs-page { min-height: 60vh; background: #fff; padding: 32px 0 56px; }
.nvs-stack-lg > * + * { margin-top: 32px; }
@media (min-width: 640px) { .nvs-page { padding: 56px 0 72px; } }

.nvs-eyebrow {
	display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--nvs-dusty-blue);
}
.nvs-eyebrow-pill {
	display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
	border-radius: 999px; background: var(--nvs-light-grey); color: var(--nvs-dusty-blue);
	font-size: 12px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
}
.nvs-accent-text { color: var(--nvs-dusty-blue); }

.nvs-page-head { max-width: 720px; }
.nvs-page-head--center { max-width: 640px; margin: 0 auto; text-align: center; }
.nvs-page-title {
	font-size: 30px; font-weight: 700; color: var(--nvs-ink); letter-spacing: -0.01em; margin-top: 10px;
}
.nvs-page-desc { font-size: 16px; color: var(--nvs-slate-500); line-height: 1.6; margin-top: 12px; }
@media (min-width: 640px) { .nvs-page-title { font-size: 40px; } }
@media (min-width: 1024px) { .nvs-page-title { font-size: 48px; } }

.nvs-empty-note { color: var(--nvs-slate-500); font-size: 14px; }

/* ---- Buttons ---- */
.nvs-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14px;
	transition: all 0.2s ease; white-space: nowrap;
}
.nvs-btn--primary { background: var(--nvs-dusty-blue); color: #fff; box-shadow: 0 1px 2px rgba(15,23,42,.06); }
.nvs-btn--primary:hover { background: var(--nvs-dusty-blue-dark); transform: translateY(-1px); }
.nvs-btn--pill { border-radius: 999px; }
.nvs-btn--sm { padding: 8px 16px; font-size: 12px; }
.nvs-btn--block { width: 100%; }
.nvs-link-btn { color: var(--nvs-dusty-blue); font-weight: 700; font-size: 12px; }
.nvs-link-btn:hover { color: var(--nvs-dusty-blue-dark); text-decoration: underline; }
.nvs-chip-btn {
	display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px;
	background: var(--nvs-slate-100); color: var(--nvs-dusty-blue); font-size: 12px; font-weight: 700;
}

/* =========================================================
   HEADER
   ========================================================= */
.nvs-header {
	position: sticky; top: 0; z-index: 40; background: rgba(250,250,248,.95);
	backdrop-filter: blur(8px); border-bottom: 1px solid var(--nvs-blue-grey);
}
.nvs-header-row { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 16px; }

.nvs-logo { display: inline-flex; align-items: center; gap: 12px; }
.nvs-logo-mark { flex-shrink: 0; }
.nvs-logo-type { display: flex; flex-direction: column; justify-content: center; }
.nvs-logo-wordmark {
	display: flex; align-items: baseline; gap: 8px; font-family: var(--nvs-font-serif);
	font-weight: 700; font-size: 22px; letter-spacing: -0.01em; line-height: 1;
}
.nvs-logo-tagline { display: flex; align-items: center; gap: 6px; margin-top: 5px; width: 100%; }
.nvs-logo-tagline i { height: 1px; flex: 1; display: block; }
.nvs-logo-tagline span { font-size: 7.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; white-space: nowrap; }

.nvs-nav-desktop { display: none; align-items: center; gap: 4px; }
.nvs-nav-link { padding: 7px 12px; font-size: 14px; font-weight: 500; color: var(--nvs-slate-600); border-radius: 8px; transition: all .15s; }
.nvs-nav-link:hover { color: var(--nvs-ink); background: rgba(0,0,0,.04); }
.nvs-nav-link.is-active { color: var(--nvs-dusty-blue); font-weight: 600; background: var(--nvs-light-grey); }

.nvs-header-actions { display: flex; align-items: center; gap: 10px; }
.nvs-icon-btn { padding: 10px; border-radius: 999px; color: var(--nvs-slate-500); transition: all .15s; display: inline-flex; }
.nvs-icon-btn:hover { color: var(--nvs-dusty-blue); background: rgba(0,0,0,.04); }
#nvs-subscribe-desktop { display: none; }
.nvs-mobile-toggle { display: inline-flex; }
/* Hamburger/close swap. Driven by .is-open rather than the `hidden` attribute,
   which is unreliable on SVG: `hidden` is an HTMLElement IDL property (so
   `svg.hidden = true` only sets a JS expando), and an author `svg{display:block}`
   rule beats the UA's `[hidden]{display:none}` regardless of specificity. */
.nvs-mobile-toggle .nvs-icon-close { display: none; }
.nvs-mobile-toggle.is-open .nvs-icon-menu { display: none; }
.nvs-mobile-toggle.is-open .nvs-icon-close { display: block; }

@media (min-width: 1024px) {
	.nvs-nav-desktop { display: flex; }
	#nvs-subscribe-desktop { display: inline-flex; }
	.nvs-mobile-toggle { display: none; }
}

.nvs-search-drawer { border-top: 1px solid var(--nvs-blue-grey); background: #fff; border-radius: 0 0 16px 16px; box-shadow: 0 20px 40px rgba(15,23,42,.08); padding: 16px 16px 20px; }
.nvs-search-form { max-width: 672px; margin: 0 auto; }
.nvs-search-input-row { position: relative; display: flex; align-items: center; gap: 8px; background: var(--nvs-off-white); border: 1px solid var(--nvs-blue-grey); border-radius: 12px; padding: 4px 6px 4px 14px; box-shadow: inset 0 2px 4px rgba(15,23,42,.05); }
.nvs-search-input-row:focus-within { background: #fff; box-shadow: 0 0 0 2px var(--nvs-dusty-blue); }
.nvs-search-icon { flex-shrink: 0; color: var(--nvs-dusty-blue); }
.nvs-search-input-row input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 10px 4px; font-size: 14px; color: var(--nvs-ink); outline: none; }
.nvs-search-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nvs-search-clear { display: none; padding: 4px; border-radius: 6px; color: var(--nvs-slate-400); line-height: 0; }
.nvs-search-clear:not([hidden]) { display: inline-flex; }
.nvs-search-clear:hover { color: var(--nvs-slate-600); }
.nvs-search-submit { display: inline-flex; align-items: center; gap: 4px; padding: 7px 12px; border-radius: 8px; background: var(--nvs-dusty-blue); color: #fff; font-size: 12px; font-weight: 700; transition: background .2s; }
.nvs-search-submit:hover { background: var(--nvs-dusty-blue-dark); }

/* ---- Live suggestions dropdown (ports Header.tsx liveResults) ---- */
.nvs-search-results { display: none; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--nvs-light-grey); }
.nvs-search-results:not([hidden]) { display: block; }
.nvs-search-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 12px; color: var(--nvs-slate-500); padding: 0 4px 10px; }
.nvs-search-meta strong { font-weight: 600; color: var(--nvs-ink); }
.nvs-search-viewall { font-size: 12px; font-weight: 700; color: var(--nvs-dusty-blue); white-space: nowrap; }
.nvs-search-viewall:hover { text-decoration: underline; }
.nvs-search-grid { display: grid; grid-template-columns: 1fr; gap: 10px; max-height: 320px; overflow-y: auto; padding-right: 4px; }
@media (min-width: 640px) { .nvs-search-grid { grid-template-columns: 1fr 1fr; } }
.nvs-search-card { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 12px; border: 1px solid var(--nvs-light-grey); background: var(--nvs-off-white); transition: all .2s; min-width: 0; }
.nvs-search-card:hover { background: #fff; border-color: var(--nvs-dusty-blue); box-shadow: 0 1px 2px rgba(15,23,42,.06); }
.nvs-search-card img, .nvs-search-card .nvs-search-thumb { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--nvs-light-grey); }
.nvs-search-card-body { min-width: 0; flex: 1; }
.nvs-search-cat { display: block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nvs-dusty-blue); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nvs-search-title { font-family: var(--nvs-font-serif); font-size: 13px; font-weight: 700; color: var(--nvs-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color .2s; }
.nvs-search-card:hover .nvs-search-title { color: var(--nvs-dusty-blue); }
.nvs-search-excerpt { font-size: 11px; color: var(--nvs-slate-500); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nvs-search-empty { padding: 24px 0; text-align: center; font-size: 12px; color: var(--nvs-slate-500); }
.nvs-search-empty p:first-child { font-weight: 500; color: var(--nvs-ink); }
.nvs-search-empty p + p { font-size: 11px; margin-top: 4px; }
.nvs-search-seeall { padding-top: 8px; text-align: center; }
.nvs-search-seeall a { font-size: 12px; font-weight: 700; color: var(--nvs-dusty-blue); }
.nvs-search-seeall a:hover { color: var(--nvs-dusty-blue-dark); text-decoration: underline; }

.nvs-mobile-drawer { border-top: 1px solid var(--nvs-blue-grey); background: var(--nvs-off-white); padding: 12px 16px 24px; box-shadow: 0 20px 40px rgba(15,23,42,.08); }
.nvs-mobile-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--nvs-slate-400); padding: 12px 12px 6px; }
.nvs-mobile-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--nvs-slate-700); border-bottom: 1px solid var(--nvs-blue-grey); }
.nvs-mobile-link:last-of-type { border-bottom: 0; }
.nvs-mobile-link.is-active { background: var(--nvs-light-grey); color: var(--nvs-dusty-blue); font-weight: 700; }
.nvs-mobile-link-label { display: flex; align-items: center; gap: 8px; }
.nvs-mobile-link svg { color: var(--nvs-slate-400); }
.nvs-dot { width: 9px; height: 9px; border-radius: 999px; display: inline-block; }
.nvs-mobile-drawer .nvs-btn { margin-top: 14px; }

/* =========================================================
   FOOTER
   ========================================================= */
.nvs-footer { background: var(--nvs-ink); color: var(--nvs-slate-50); padding: 64px 0 48px; border-top: 1px solid var(--nvs-slate-700); }
.nvs-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .nvs-footer-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; } }

.nvs-footer-brand { display: flex; flex-direction: column; gap: 20px; }
.nvs-footer-desc { color: var(--nvs-slate-400); font-size: 14px; line-height: 1.6; padding-right: 16px; }
.nvs-social-row { display: flex; align-items: center; gap: 12px; }
.nvs-social-btn { width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--nvs-slate-700); display: flex; align-items: center; justify-content: center; color: var(--nvs-slate-400); transition: all .15s; }
.nvs-social-btn:hover { border-color: var(--nvs-dusty-blue); color: var(--nvs-dusty-blue); }

.nvs-footer-heading { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--nvs-slate-700); }
.nvs-footer-links li + li { margin-top: 14px; }
.nvs-footer-links a { color: var(--nvs-slate-400); font-size: 14px; transition: color .15s; }
.nvs-footer-links a:hover { color: #fff; }

.nvs-trustpilot { display: flex; flex-direction: column; gap: 8px; }
.nvs-trustpilot-label { font-size: 14px; font-weight: 600; color: #fff; }
.nvs-trustpilot-stars { display: flex; align-items: center; gap: 4px; }
.nvs-trustpilot-star { width: 20px; height: 20px; background: var(--nvs-trustpilot); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.nvs-trustpilot-score { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }

.nvs-footer-bottom { padding-top: 32px; margin-top: 48px; border-top: 1px solid var(--nvs-slate-700); display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width: 768px) { .nvs-footer-bottom { flex-direction: row; justify-content: space-between; } }
.nvs-copyright { font-size: 12px; color: var(--nvs-slate-400); text-align: center; }
.nvs-back-to-top { text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; }
.nvs-back-to-top:hover { background: #5C7285; transform: translateY(-1px); }


/* =========================================================
   FORMS (shared: contact page, newsletter widget)
   ========================================================= */
.nvs-form { display: none; flex-direction: column; gap: 18px; }
.nvs-form:not([hidden]) { display: flex; }
.nvs-field { display: flex; flex-direction: column; gap: 6px; }
.nvs-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nvs-slate-600); }
.nvs-field label span { color: var(--nvs-dusty-blue); }
.nvs-field input, .nvs-field textarea {
	width: 100%; padding: 12px 16px; background: var(--nvs-slate-50); border: 1px solid var(--nvs-slate-200);
	border-radius: 12px; font-size: 14px; transition: all .15s; resize: vertical;
}
.nvs-field input:focus, .nvs-field textarea:focus { outline: none; border-color: var(--nvs-dusty-blue); background: #fff; }
.nvs-field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .nvs-field-row { grid-template-columns: 1fr 1fr; } }
.nvs-input-icon { position: relative; display: flex; align-items: center; }
.nvs-input-icon svg { position: absolute; left: 14px; color: var(--nvs-slate-400); }
.nvs-input-icon input { padding-left: 38px; background: var(--nvs-off-white); border-color: var(--nvs-blue-grey); }
.nvs-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.nvs-form-note { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--nvs-slate-400); padding-top: 8px; }
.nvs-form-note svg { color: var(--nvs-dusty-blue); flex-shrink: 0; }

/* Contact submit button -- source: `w-full sm:w-auto px-8 py-3.5 rounded-xl`,
   i.e. full width on mobile but hugging its label from 640px up, and a 12px
   radius rather than the theme's default pill. */
.nvs-contact-submit {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 12px;
	background: var(--nvs-dusty-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 4px 6px -1px rgba(15,23,42,.1);
	transition: all .2s ease;
}
@media (min-width: 640px) { .nvs-contact-submit { width: auto; align-self: flex-start; } }
.nvs-contact-submit:hover { background: var(--nvs-dusty-blue-dark); box-shadow: 0 10px 15px -3px rgba(15,23,42,.12); transform: translateY(-2px); }
.nvs-contact-submit:active { transform: translateY(0); }
.nvs-contact-submit:disabled { opacity: .65; cursor: default; transform: none; }
.nvs-form-error { font-size: 13px; color: #B4432C; background: #FBEAE5; border: 1px solid #F0C7BA; padding: 10px 14px; border-radius: 10px; }
.nvs-form-head h2 { font-size: 22px; font-weight: 700; color: var(--nvs-ink); }
.nvs-form-head p { font-size: 12px; color: var(--nvs-slate-500); margin-top: 4px; }

.nvs-form-success { text-align: center; padding: 24px 0; }
.nvs-form-success-icon { width: 56px; height: 56px; border-radius: 999px; background: var(--nvs-light-grey); color: var(--nvs-dusty-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.nvs-form-success h3, .nvs-form-success h4 { font-size: 26px; font-weight: 700; color: var(--nvs-ink); }
.nvs-form-success p { font-size: 14px; color: var(--nvs-slate-500); max-width: 340px; margin: 10px auto 0; line-height: 1.6; }
.nvs-form-success--static { background: var(--nvs-slate-50); border: 1px solid var(--nvs-slate-200); border-radius: 20px; padding: 48px 24px; }
.nvs-form-success .nvs-link-btn { display: inline-block; margin-top: 14px; }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.nvs-breadcrumb-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--nvs-light-grey); }
.nvs-back-home { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--nvs-ink); background: var(--nvs-slate-100); padding: 8px 16px; border-radius: 999px; transition: all .15s; }
.nvs-back-home:hover { background: var(--nvs-slate-200); color: var(--nvs-dusty-blue); }
.nvs-back-home svg { color: var(--nvs-dusty-blue); }
.nvs-crumbs { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--nvs-slate-400); }
.nvs-crumbs a:hover { color: var(--nvs-ink); }
.nvs-crumbs .is-current { color: var(--nvs-ink); font-weight: 500; max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* =========================================================
   CATEGORY / SEARCH GRID
   ========================================================= */
.nvs-search-meta-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

.nvs-card-grid { display: grid; grid-template-columns: 1fr; gap: 40px 32px; }
@media (min-width: 768px) { .nvs-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nvs-card-grid { grid-template-columns: repeat(3, 1fr); } }

.nvs-card { display: flex; flex-direction: column; justify-content: space-between; }
.nvs-card-media { position: relative; display: block; aspect-ratio: 16/10; border-radius: 16px; overflow: hidden; background: var(--nvs-light-grey); }
.nvs-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.nvs-card:hover .nvs-card-img { transform: scale(1.05); }
.nvs-card-img--placeholder { background: linear-gradient(135deg, var(--nvs-light-grey), var(--nvs-primary-light)); }
.nvs-card-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; background: rgba(255,255,255,.95); color: var(--nvs-dusty-blue); }
.nvs-card-body { margin-top: 16px; }
.nvs-card-title { font-size: 20px; font-weight: 700; color: var(--nvs-ink); line-height: 1.3; }
.nvs-card:hover .nvs-card-title { color: var(--nvs-dusty-blue); }
.nvs-card-excerpt { font-size: 13px; color: var(--nvs-slate-500); line-height: 1.6; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nvs-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--nvs-light-grey); }
.nvs-card-author { display: flex; align-items: center; gap: 10px; }
.nvs-card-avatar { width: 28px; height: 28px; border-radius: 999px; object-fit: cover; border: 1px solid var(--nvs-blue-grey); }
.nvs-card-author-name { font-size: 12px; font-weight: 700; color: var(--nvs-ink); line-height: 1; }
.nvs-card-author-role { font-size: 10px; color: var(--nvs-dusty-blue); margin-top: 2px; }
.nvs-card-read { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--nvs-dusty-blue); transition: transform .15s; }
.nvs-card:hover .nvs-card-read { transform: translateX(3px); }

.nvs-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.nvs-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--nvs-slate-600); background: var(--nvs-slate-100); }
.nvs-pagination .page-numbers.current { background: var(--nvs-dusty-blue); color: #fff; }
.nvs-pagination .page-numbers:hover { background: var(--nvs-light-grey); color: var(--nvs-dusty-blue); }

.nvs-empty-state { padding: 56px 24px; text-align: center; max-width: 520px; margin: 0 auto; background: var(--nvs-slate-50); border-radius: 24px; border: 1px solid var(--nvs-slate-200); }
.nvs-empty-icon { width: 56px; height: 56px; border-radius: 999px; background: var(--nvs-light-grey); color: var(--nvs-dusty-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.nvs-empty-state h3 { font-size: 24px; font-weight: 700; color: var(--nvs-ink); }
.nvs-empty-state p { font-size: 13px; color: var(--nvs-slate-500); line-height: 1.6; margin-top: 10px; }
.nvs-suggestions { margin-top: 20px; }
.nvs-suggestions-label { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--nvs-slate-400); }
.nvs-suggestions-label svg { color: var(--nvs-dusty-blue); }
.nvs-suggestion-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 10px; }
.nvs-suggestion-chip { padding: 7px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--nvs-blue-grey); font-size: 12px; font-weight: 500; color: var(--nvs-ink); transition: all .15s; }
.nvs-suggestion-chip:hover { border-color: var(--nvs-dusty-blue); color: var(--nvs-dusty-blue); }
.nvs-empty-state > .nvs-btn { margin-top: 20px; }

/* =========================================================
   SINGLE POST
   ========================================================= */
.nvs-post-article { display: flex; flex-direction: column; gap: 40px; }
.nvs-post-header { display: flex; flex-direction: column; gap: 20px; padding-bottom: 32px; border-bottom: 1px solid var(--nvs-light-grey); }
.nvs-badge { display: inline-flex; align-items: center; padding: 5px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; background: var(--nvs-light-grey); color: var(--nvs-dusty-blue); width: fit-content; }
.nvs-post-title { font-size: 30px; font-weight: 700; color: var(--nvs-ink); line-height: 1.15; letter-spacing: -0.01em; max-width: 880px; }
.nvs-post-lede { font-size: 18px; color: var(--nvs-slate-500); font-style: italic; font-weight: 300; line-height: 1.6; border-left: 4px solid var(--nvs-dusty-blue); padding: 6px 0 6px 18px; max-width: 720px; }
@media (min-width: 640px) { .nvs-post-title { font-size: 40px; } .nvs-post-lede { font-size: 20px; } }
@media (min-width: 1024px) { .nvs-post-title { font-size: 48px; } }

.nvs-post-hero { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--nvs-light-grey); }
.nvs-post-hero img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 640px) { .nvs-post-hero { aspect-ratio: 21/9; } }

.nvs-prose { font-size: 18px; line-height: 1.75; color: var(--nvs-slate-700); }
.nvs-prose > p + p { margin-top: 28px; }
.nvs-prose > p:first-of-type::first-letter {
	font-family: var(--nvs-font-serif); font-size: 60px; font-weight: 700; color: var(--nvs-dusty-blue);
	float: left; line-height: 1; margin-right: 12px; margin-top: 4px;
}
@media (min-width: 640px) { .nvs-prose { font-size: 20px; } }
.nvs-post-inline-image { margin: 36px 0; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--nvs-light-grey); }
.nvs-post-inline-image img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 640px) { .nvs-post-inline-image { aspect-ratio: 21/9; } }

.nvs-author-box { display: flex; flex-direction: column; gap: 24px; padding: 32px; border-radius: 16px; background: var(--nvs-slate-50); border: 1px solid var(--nvs-slate-200); }
@media (min-width: 640px) { .nvs-author-box { flex-direction: row; align-items: center; padding: 40px; } }
.nvs-author-avatar { width: 88px; height: 88px; border-radius: 999px; object-fit: cover; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(15,23,42,.15); flex-shrink: 0; }
.nvs-author-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nvs-dusty-blue); display: block; }
.nvs-author-name { font-size: 26px; font-weight: 700; color: var(--nvs-ink); margin-top: 4px; }
.nvs-author-bio { font-size: 15px; color: var(--nvs-slate-600); line-height: 1.6; margin-top: 8px; }

.nvs-post-nav { display: grid; grid-template-columns: 1fr; gap: 16px; padding-top: 32px; border-top: 1px solid var(--nvs-light-grey); }
@media (min-width: 640px) { .nvs-post-nav { grid-template-columns: 1fr 1fr; } }
.nvs-post-nav-link { padding: 18px 20px; border-radius: 16px; border: 1px solid var(--nvs-slate-200); transition: all .15s; }
.nvs-post-nav-link:hover { border-color: var(--nvs-dusty-blue); background: var(--nvs-slate-50); }
.nvs-post-nav-link--next { text-align: right; }
.nvs-post-nav-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nvs-slate-400); display: inline-flex; align-items: center; gap: 4px; }
.nvs-post-nav-link:hover .nvs-post-nav-label { color: var(--nvs-dusty-blue); }
.nvs-post-nav-link p { font-family: var(--nvs-font-serif); font-size: 16px; font-weight: 700; color: var(--nvs-ink); margin-top: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nvs-post-nav-link:hover p { color: var(--nvs-dusty-blue); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.nvs-contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
@media (min-width: 1024px) { .nvs-contact-grid { grid-template-columns: 5fr 7fr; } }
.nvs-contact-photo { position: relative; border-radius: 24px; overflow: hidden; min-height: 340px; background: var(--nvs-light-grey); }
.nvs-contact-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
@media (min-width: 1024px) { .nvs-contact-photo { min-height: 520px; } }
.nvs-contact-form-col { display: flex; flex-direction: column; justify-content: center; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.nvs-legal-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.nvs-legal-tab { padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--nvs-slate-600); background: var(--nvs-slate-100); transition: all .15s; }
.nvs-legal-tab:hover { background: var(--nvs-light-grey); color: var(--nvs-dusty-blue); }
.nvs-legal-tab.is-active { background: var(--nvs-dusty-blue); color: #fff; }

.nvs-legal-header { padding-bottom: 24px; border-bottom: 1px solid var(--nvs-light-grey); margin-top: 24px; }
.nvs-legal-lede { font-size: 15px; color: var(--nvs-slate-500); font-style: italic; line-height: 1.7; margin-top: 12px; }
.nvs-legal-lede strong { color: var(--nvs-ink); font-weight: 600; }
.nvs-legal-notice { font-size: 13px; font-weight: 700; color: var(--nvs-ink); margin-top: 12px; }

.nvs-legal-body { color: var(--nvs-slate-700); line-height: 1.7; }
.nvs-legal-body h2 { font-size: 22px; font-weight: 700; color: var(--nvs-ink); margin-top: 36px; }
.nvs-legal-body h2:first-child { margin-top: 32px; }
.nvs-legal-body h3 { font-size: 16px; font-weight: 700; color: var(--nvs-ink); margin-top: 20px; }
.nvs-legal-body p { font-size: 15px; color: var(--nvs-slate-600); margin-top: 14px; }
.nvs-legal-body strong { color: var(--nvs-ink); font-weight: 600; }
.nvs-legal-body ul { margin-top: 10px; padding-left: 22px; list-style: disc; }
.nvs-legal-body li { font-size: 15px; color: var(--nvs-slate-600); margin-top: 6px; }
.nvs-legal-body li + li { margin-top: 6px; }
.nvs-legal-body .nvs-cookie-card { padding: 20px; border-radius: 16px; background: var(--nvs-off-white); border: 2px solid var(--nvs-slate-200); margin-top: 16px; }
.nvs-legal-body .nvs-cookie-card h3 { margin-top: 0; }

.nvs-legal-back { text-align: center; padding-top: 16px; }
.nvs-legal-back a { font-size: 12px; font-weight: 700; color: var(--nvs-dusty-blue); }
.nvs-legal-back a:hover { text-decoration: underline; }

/* =========================================================
   404
   ========================================================= */
.nvs-404-inner { text-align: center; padding: 64px 0; }
.nvs-404-inner .nvs-page-title { margin-top: 12px; }
.nvs-404-inner .nvs-btn { margin-top: 24px; }

/* =========================================================
   ABOUT STORY (page-about.php + the nvs-about-story Elementor widget
   render the same markup/classes, so both surfaces look identical)
   ========================================================= */
.nvs-about-wrap { max-width: var(--nvs-container); margin: 0 auto; padding: 32px 16px 0; display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 640px) { .nvs-about-wrap { padding: 48px 24px 0; gap: 64px; } }
@media (min-width: 1024px) { .nvs-about-wrap { padding: 64px 32px 0; } }

.nvs-about-hero { border-radius: 24px; overflow: hidden; background: var(--nvs-slate-50); border: 1px solid var(--nvs-slate-200); box-shadow: 0 1px 2px rgba(15,23,42,.04); }
.nvs-about-hero-top { display: grid; grid-template-columns: 1fr; min-height: 380px; border-bottom: 1px solid var(--nvs-slate-200); }
@media (min-width: 1024px) { .nvs-about-hero-top { grid-template-columns: 5fr 7fr; min-height: 440px; } }
.nvs-about-hero-text { padding: 32px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
@media (min-width: 640px) { .nvs-about-hero-text { padding: 48px; } }
@media (min-width: 1024px) { .nvs-about-hero-text { padding: 56px; } }
.nvs-about-hero-text h1 { font-size: 30px; font-weight: 700; letter-spacing: -0.01em; color: var(--nvs-ink-deep); text-transform: uppercase; }
@media (min-width: 640px) { .nvs-about-hero-text h1 { font-size: 36px; } }
@media (min-width: 1024px) { .nvs-about-hero-text h1 { font-size: 48px; } }
.nvs-about-divider { width: 48px; height: 4px; background: var(--nvs-gold); margin: 16px 0 24px; border-radius: 999px; }
.nvs-about-hero-text p { color: var(--nvs-slate-600); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
@media (min-width: 640px) { .nvs-about-hero-text p { font-size: 18px; } }
.nvs-about-hero-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; background: var(--nvs-ink); color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 4px; transition: all .2s; box-shadow: 0 1px 2px rgba(15,23,42,.06); }
.nvs-about-hero-btn:hover { background: var(--nvs-ink-deep); }
.nvs-about-hero-photo { position: relative; min-height: 300px; background: var(--nvs-slate-200); overflow: hidden; }
@media (min-width: 1024px) { .nvs-about-hero-photo { min-height: 100%; } }
.nvs-about-hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.nvs-about-hero-bottom { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .nvs-about-hero-bottom { grid-template-columns: repeat(3, 1fr); } }
.nvs-about-bottom-cell { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--nvs-slate-200); border-bottom: 1px solid var(--nvs-slate-200); }
@media (min-width: 768px) { .nvs-about-bottom-cell { aspect-ratio: auto; min-height: 280px; border-bottom: 0; border-right: 1px solid var(--nvs-slate-200); } }
@media (min-width: 1024px) { .nvs-about-bottom-cell { min-height: 320px; } }
.nvs-about-bottom-cell img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.nvs-about-values-cell { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: space-between; padding: 24px; background: var(--nvs-slate-100); overflow: hidden; gap: 16px; }
@media (min-width: 1024px) { .nvs-about-values-cell { min-height: 320px; } }
.nvs-about-plant-img { width: 45%; max-width: 130px; aspect-ratio: 1; object-fit: cover; border-radius: 16px; box-shadow: 0 1px 2px rgba(15,23,42,.05); }
.nvs-about-values-plaque { width: 50%; max-width: 200px; background: #111827; color: #fff; padding: 20px; border-radius: 6px; box-shadow: 0 4px 10px rgba(0,0,0,.15); display: flex; flex-direction: column; gap: 10px; user-select: none; }
.nvs-about-values-plaque .nvs-avp-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--nvs-slate-400); border-bottom: 1px solid var(--nvs-slate-700); padding-bottom: 6px; }
.nvs-about-values-plaque ul { display: flex; flex-direction: column; gap: 6px; }
.nvs-about-values-plaque li { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; color: var(--nvs-slate-50); text-transform: uppercase; }
.nvs-about-values-plaque .nvs-avp-rule { width: 24px; height: 2px; background: var(--nvs-slate-500); border-radius: 999px; }

.nvs-about-story { max-width: 768px; margin: 0 auto; color: var(--nvs-slate-700); font-size: 16px; line-height: 1.7; }
@media (min-width: 640px) { .nvs-about-story { font-size: 18px; } }
.nvs-about-story-head { text-align: center; margin-bottom: 32px; }
.nvs-about-story-head .nvs-eyebrow-pill { margin-bottom: 12px; }
.nvs-about-story-head h2 { font-size: 30px; font-weight: 700; color: var(--nvs-ink); }
@media (min-width: 640px) { .nvs-about-story-head h2 { font-size: 36px; } }
.nvs-about-story p + p { margin-top: 24px; }
.nvs-about-story p:first-of-type::first-letter { font-family: var(--nvs-font-serif); font-size: 48px; font-weight: 700; color: var(--nvs-dusty-blue); float: left; line-height: 1; margin-right: 10px; }
.nvs-about-story strong { color: var(--nvs-ink); }

.nvs-about-pillars { display: grid; grid-template-columns: 1fr; gap: 24px; padding-top: 24px; border-top: 1px solid var(--nvs-light-grey); }
@media (min-width: 768px) { .nvs-about-pillars { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.nvs-about-pillar-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--nvs-light-grey); color: var(--nvs-dusty-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.nvs-about-pillar h3 { font-size: 20px; font-weight: 700; color: var(--nvs-ink); }
.nvs-about-pillar p { font-size: 13px; color: var(--nvs-slate-500); line-height: 1.6; margin-top: 8px; }

.nvs-about-cta { text-align: center; padding: 16px 0 48px; }
.nvs-about-cta a { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 999px; background: var(--nvs-ink); color: #fff; font-size: 14px; font-weight: 700; box-shadow: 0 2px 6px rgba(15,23,42,.15); transition: all .2s; }
.nvs-about-cta a:hover { background: var(--nvs-dusty-blue); transform: translateY(-1px); }


/* =========================================================
   HOMEPAGE -- HERO SLIDER WIDGET
   Values mirror HomePage.tsx's Tailwind classes 1:1.
   ========================================================= */
.nvs-hero-slider { position: relative; width: 100%; overflow: hidden; background: var(--nvs-ink); color: #fff; }
.nvs-hero-slide-track { position: relative; width: 100%; height: 520px; }
@media (min-width: 640px) { .nvs-hero-slide-track { height: 620px; } }
@media (min-width: 768px) { .nvs-hero-slide-track { height: 700px; } }
@media (min-width: 1024px) { .nvs-hero-slide-track { height: 780px; } }
.nvs-hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: opacity 1s ease-in-out, transform 1s ease-in-out; pointer-events: none; }
.nvs-hero-slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; z-index: 1; }
.nvs-hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(.6) contrast(1.1); opacity: .8; }
.nvs-hero-tint { position: absolute; inset: 0; background: rgba(113,136,155,.5); mix-blend-mode: multiply; pointer-events: none; z-index: 2; }
.nvs-hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, var(--nvs-ink-deep), rgba(30,41,59,.6) 50%, rgba(30,41,59,.4)); pointer-events: none; z-index: 2; }

.nvs-hero-caption { position: absolute; inset: 0; z-index: 20; display: flex; flex-direction: column; justify-content: flex-end; max-width: var(--nvs-container); margin: 0 auto; padding: 0 16px 64px; pointer-events: none; }
@media (min-width: 640px) { .nvs-hero-caption { padding: 0 24px 80px; } }
@media (min-width: 768px) { .nvs-hero-caption { padding: 0 24px 96px; } }
@media (min-width: 1024px) { .nvs-hero-caption { padding: 0 32px 96px; } }
.nvs-hero-caption-inner { max-width: 768px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .nvs-hero-caption-inner { gap: 24px; } }
.nvs-hero-badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.01em; color: #fff; background: rgba(255,255,255,.2); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.3); pointer-events: auto; }
@media (min-width: 640px) { .nvs-hero-badge { font-size: 14px; } }
.nvs-hero-caption h1 { font-family: var(--nvs-font-serif); font-size: 30px; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.22); }
@media (min-width: 640px) { .nvs-hero-caption h1 { font-size: 48px; } }
@media (min-width: 768px) { .nvs-hero-caption h1 { font-size: 60px; } }
@media (min-width: 1024px) { .nvs-hero-caption h1 { font-size: 72px; } }
.nvs-hero-caption p { font-size: 14px; color: rgba(255,255,255,.9); max-width: 672px; line-height: 1.625; font-weight: 300; text-shadow: 0 1px 3px rgba(0,0,0,.18); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 640px) { .nvs-hero-caption p { font-size: 18px; } }
@media (min-width: 768px) { .nvs-hero-caption p { font-size: 20px; } }
.nvs-hero-cta { margin-top: 8px; display: inline-flex; align-self: flex-start; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; background: #fff; color: var(--nvs-ink); font-size: 12px; font-weight: 700; box-shadow: 0 20px 25px -5px rgba(0,0,0,.2); transition: all .2s; pointer-events: auto; }
@media (min-width: 640px) { .nvs-hero-cta { padding: 16px 32px; font-size: 14px; } }
.nvs-hero-cta:hover { background: var(--nvs-light-grey); transform: translateY(-2px); }
.nvs-hero-cta svg { color: var(--nvs-dusty-blue); }

.nvs-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 30; width: 48px; height: 48px; border-radius: 999px; background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .2s; opacity: .8; box-shadow: 0 20px 25px -5px rgba(0,0,0,.2); }
@media (min-width: 640px) { .nvs-hero-arrow { width: 56px; height: 56px; } }
.nvs-hero-arrow:hover { background: rgba(0,0,0,.7); opacity: 1; transform: translateY(-50%) scale(1.1); }
.nvs-hero-arrow--prev { left: 16px; } .nvs-hero-arrow--next { right: 16px; }
@media (min-width: 640px) { .nvs-hero-arrow--prev { left: 32px; } .nvs-hero-arrow--next { right: 32px; } }
.nvs-hero-dots { position: absolute; bottom: 24px; left: 16px; right: 16px; z-index: 30; display: flex; align-items: center; gap: 8px; }
@media (min-width: 640px) { .nvs-hero-dots { left: 32px; right: 32px; } }
.nvs-hero-dot { height: 8px; width: 8px; border-radius: 999px; background: rgba(255,255,255,.4); transition: all .3s; }
.nvs-hero-dot:hover { background: rgba(255,255,255,.7); }
@media (min-width: 640px) { .nvs-hero-dot { width: 12px; } }
.nvs-hero-dot.is-active { width: 40px; background: #fff; box-shadow: 0 10px 15px -3px rgba(0,0,0,.3); }
@media (min-width: 640px) { .nvs-hero-dot.is-active { width: 56px; } }

/* =========================================================
   HOMEPAGE -- SHARED SECTION SHELL + BENTO PRIMITIVES
   Source: one max-w-7xl container, py-16/20/24, space-y-24/28/32.
   ========================================================= */
.nvs-home-section { max-width: var(--nvs-container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .nvs-home-section { padding: 0 24px; } }
@media (min-width: 1024px) { .nvs-home-section { padding: 0 32px; } }
/* Each showcase is a separate Elementor widget, so they are not adjacent DOM
   siblings and `+` cannot express the rhythm. PHP tags the first one instead
   (nvs_home_section_class()): the first gets the source container's top
   padding (py-16/20/24), the rest get the space-y-24/28/32 gap. */
.nvs-home-section { margin-top: 96px; }
@media (min-width: 640px) { .nvs-home-section { margin-top: 112px; } }
@media (min-width: 1024px) { .nvs-home-section { margin-top: 128px; } }
.nvs-home-section--first { margin-top: 0; padding-top: 64px; }
@media (min-width: 640px) { .nvs-home-section--first { margin-top: 0; padding-top: 80px; } }
@media (min-width: 1024px) { .nvs-home-section--first { margin-top: 0; padding-top: 96px; } }

.nvs-section-head { display: flex; flex-direction: column; gap: 16px; justify-content: space-between; padding-bottom: 20px; margin-bottom: 32px; border-bottom: 1px solid var(--nvs-blue-grey); }
@media (min-width: 640px) { .nvs-section-head { flex-direction: row; align-items: flex-end; } }
.nvs-section-head h2 { font-family: var(--nvs-font-serif); font-size: 24px; font-weight: 700; color: var(--nvs-ink); line-height: 1.2; }
@media (min-width: 640px) { .nvs-section-head h2 { font-size: 30px; } }
@media (min-width: 1024px) { .nvs-section-head h2 { font-size: 36px; } }
.nvs-section-head p { font-size: 12px; color: var(--nvs-slate-500); margin-top: 6px; max-width: 672px; line-height: 1.5; }
@media (min-width: 640px) { .nvs-section-head p { font-size: 14px; } }
.nvs-section-links { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nvs-section-links .nvs-section-sep { color: var(--nvs-blue-grey); }
.nvs-section-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--nvs-dusty-blue); white-space: nowrap; }
.nvs-section-link:hover { color: var(--nvs-dusty-blue-dark); text-decoration: underline; }

/* Bento primitives shared by all 4 category showcases */
.nvs-bento-card { position: relative; overflow: hidden; transition: all .3s ease; display: flex; flex-direction: column; background: #fff; }
.nvs-bento-link { position: absolute; inset: 0; z-index: 15; }
.nvs-bento-img-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.nvs-bento-card:hover .nvs-bento-img-fill { transform: scale(1.05); }
.nvs-bento-grad-top { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,.9), rgba(30,41,59,.3) 50%, transparent); pointer-events: none; z-index: 1; }
.nvs-bento-grad-top--solid { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,.9), transparent); pointer-events: none; z-index: 1; }
.nvs-bento-grad-left { position: absolute; inset: 0; background: linear-gradient(to left, rgba(15,23,42,.9), transparent); pointer-events: none; z-index: 1; }
.nvs-bento-grad-left--via { position: absolute; inset: 0; background: linear-gradient(to left, rgba(15,23,42,.9), rgba(15,23,42,.2) 50%, transparent); pointer-events: none; z-index: 1; }
.nvs-bento-grad-dark { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.3) 50%, transparent); pointer-events: none; z-index: 1; }
.nvs-bento-body { position: relative; z-index: 10; display: flex; flex-direction: column; }
.nvs-bento-title { font-family: var(--nvs-font-serif); font-weight: 700; color: var(--nvs-ink); line-height: 1.375; transition: color .2s; }
.nvs-bento-card:hover .nvs-bento-title { color: var(--nvs-dusty-blue); }
.nvs-bento-title--onimg { color: #fff; }
.nvs-bento-card:hover .nvs-bento-title--onimg { color: rgba(255,255,255,.8); }
.nvs-bento-excerpt { font-size: 12px; color: var(--nvs-slate-500); line-height: 1.625; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 2; }
.nvs-bento-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--nvs-light-grey); }
.nvs-bento-author--onimg { border-top-color: rgba(255,255,255,.2); }
.nvs-bento-author img { width: 24px; height: 24px; border-radius: 999px; object-fit: cover; border: 1px solid var(--nvs-blue-grey); flex-shrink: 0; }
.nvs-bento-author--onimg img { border-color: rgba(255,255,255,.4); }
.nvs-bento-author span { font-size: 12px; font-weight: 500; color: var(--nvs-slate-600); }
.nvs-bento-author--onimg span { color: rgba(255,255,255,.9); }
.nvs-bento-empty { padding: 40px; text-align: center; color: var(--nvs-slate-400); font-size: 13px; border: 1px dashed var(--nvs-slate-200); border-radius: 16px; }

/* ---- FASHION & BEAUTY : 4-col bento, rounded-3xl, border-2 #C8D3DA ---- */
.nvs-fb-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .nvs-fb-grid { gap: 24px; } }
@media (min-width: 1024px) { .nvs-fb-grid { grid-template-columns: repeat(4, 1fr); } }
.nvs-fb-grid .nvs-bento-card { border-radius: 24px; border: 2px solid var(--nvs-blue-grey); }
.nvs-fb-grid .nvs-bento-card:hover { border-color: var(--nvs-dusty-blue); box-shadow: 0 20px 25px -5px rgba(15,23,42,.1); }

.nvs-fb-spotlight { justify-content: flex-start; min-height: 420px; }
@media (min-width: 1024px) { .nvs-fb-spotlight { grid-column: span 2; grid-row: span 2; min-height: 520px; } }
.nvs-fb-spotlight .nvs-bento-body { padding: 24px; gap: 12px; }
@media (min-width: 640px) { .nvs-fb-spotlight .nvs-bento-body { padding: 32px; } }
.nvs-fb-spotlight .nvs-bento-title { font-size: 24px; }
@media (min-width: 640px) { .nvs-fb-spotlight .nvs-bento-title { font-size: 30px; } }
.nvs-fb-spotlight .nvs-bento-author { padding-top: 12px; }

.nvs-fb-medium { flex-direction: column; align-items: center; gap: 24px; padding: 24px; }
@media (min-width: 640px) { .nvs-fb-medium { flex-direction: row-reverse; padding: 28px; } }
@media (min-width: 1024px) { .nvs-fb-medium { grid-column: span 2; } }
.nvs-fb-medium:hover { background: var(--nvs-slate-50); }
.nvs-fb-medium-img { width: 100%; height: 176px; flex-shrink: 0; border-radius: 16px; overflow: hidden; background: var(--nvs-light-grey); }
@media (min-width: 640px) { .nvs-fb-medium-img { width: 176px; } }
.nvs-fb-medium-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-fb-medium:hover .nvs-fb-medium-img img { transform: scale(1.05); }
.nvs-fb-medium .nvs-bento-body { flex: 1; width: 100%; justify-content: space-between; gap: 8px; }
.nvs-fb-medium .nvs-bento-title { font-size: 18px; }
@media (min-width: 640px) { .nvs-fb-medium .nvs-bento-title { font-size: 20px; } }
.nvs-fb-medium .nvs-bento-excerpt { margin-top: 6px; }
.nvs-fb-medium .nvs-bento-author { padding-top: 12px; margin-top: 12px; }

.nvs-fb-small { padding: 24px; justify-content: space-between; }
@media (min-width: 640px) { .nvs-fb-small { padding: 28px; } }
.nvs-fb-small:hover { background: var(--nvs-slate-50); }
.nvs-fb-small.nvs-bento-card--alt { background: var(--nvs-slate-50); }
.nvs-fb-small.nvs-bento-card--alt:hover { background: #fff; }
.nvs-fb-small .nvs-bento-body { flex: 1; justify-content: space-between; }
.nvs-fb-small-img { width: 100%; aspect-ratio: 4/3; margin-bottom: 16px; border-radius: 16px; overflow: hidden; background: var(--nvs-light-grey); }
.nvs-fb-small-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-fb-small:hover .nvs-fb-small-img img { transform: scale(1.05); }
.nvs-fb-small .nvs-bento-title { font-size: 16px; }
@media (min-width: 640px) { .nvs-fb-small .nvs-bento-title { font-size: 18px; } }
.nvs-fb-small .nvs-bento-excerpt { margin-top: 8px; }
.nvs-fb-small .nvs-bento-author { padding-top: 12px; margin-top: 16px; }
.nvs-fb-small .nvs-bento-author img { width: 20px; height: 20px; }

/* ---- LIFESTYLE : 3-col bento, rounded-2xl, border 1px #E5E9EB ---- */
.nvs-life-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .nvs-life-grid { gap: 20px; } }
@media (min-width: 1024px) { .nvs-life-grid { grid-template-columns: repeat(3, 1fr); } }
.nvs-life-grid .nvs-bento-card, .nvs-travel-grid .nvs-bento-card, .nvs-tech-grid .nvs-bento-card { border-radius: 16px; border: 1px solid var(--nvs-light-grey); }
.nvs-life-grid .nvs-bento-card:hover, .nvs-travel-grid .nvs-bento-card:hover, .nvs-tech-grid .nvs-bento-card:hover { box-shadow: 0 4px 6px -1px rgba(15,23,42,.1); }

.nvs-life-tall:hover { background: var(--nvs-slate-50); }
@media (min-width: 1024px) { .nvs-life-tall { grid-row: span 2; } }
.nvs-life-tall-img { width: 100%; aspect-ratio: 4/3; background: var(--nvs-light-grey); overflow: hidden; }
@media (min-width: 640px) { .nvs-life-tall-img { aspect-ratio: 1; } }
.nvs-life-tall-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-life-tall:hover .nvs-life-tall-img img { transform: scale(1.05); }
.nvs-life-tall .nvs-bento-body { padding: 24px; flex: 1; justify-content: space-between; }
@media (min-width: 640px) { .nvs-life-tall .nvs-bento-body { padding: 32px; } }
.nvs-life-tall .nvs-bento-title { font-size: 24px; }
@media (min-width: 640px) { .nvs-life-tall .nvs-bento-title { font-size: 30px; } }
.nvs-life-tall .nvs-bento-excerpt { font-size: 14px; margin-top: 16px; -webkit-line-clamp: 3; }
@media (min-width: 768px) { .nvs-life-tall .nvs-bento-excerpt { -webkit-line-clamp: 4; } }
.nvs-life-tall .nvs-bento-author { padding-top: 16px; margin-top: 24px; }

.nvs-life-wide { min-height: 260px; padding: 24px; align-items: flex-start; }
@media (min-width: 640px) { .nvs-life-wide { min-height: 320px; padding: 40px; } }
@media (min-width: 1024px) { .nvs-life-wide { grid-column: span 2; } }
.nvs-life-wide .nvs-bento-body { max-width: 512px; gap: 8px; }
.nvs-life-wide .nvs-bento-title { font-size: 24px; }
@media (min-width: 640px) { .nvs-life-wide .nvs-bento-title { font-size: 30px; } }
.nvs-life-wide .nvs-bento-author { padding-top: 12px; margin-top: 8px; }

.nvs-life-small { padding: 24px; justify-content: space-between; }
@media (min-width: 640px) { .nvs-life-small { padding: 32px; } }
.nvs-life-small--alt { background: var(--nvs-slate-50); }
.nvs-life-small--alt:hover { background: #fff; }
.nvs-life-small:not(.nvs-life-small--alt):hover { background: var(--nvs-slate-50); }
.nvs-life-small .nvs-bento-body { flex: 1; justify-content: space-between; }
.nvs-life-small-img { width: 100%; aspect-ratio: 16/9; margin-bottom: 20px; border-radius: 12px; overflow: hidden; background: var(--nvs-light-grey); }
.nvs-life-small-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-life-small:hover .nvs-life-small-img img { transform: scale(1.05); }
.nvs-life-small .nvs-bento-title { font-size: 18px; }
@media (min-width: 640px) { .nvs-life-small .nvs-bento-title { font-size: 20px; } }
.nvs-life-small .nvs-bento-excerpt { margin-top: 10px; }
.nvs-life-small .nvs-bento-author { padding-top: 16px; margin-top: 24px; }

/* ---- TRAVEL : 4-col bento ---- */
.nvs-travel-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .nvs-travel-grid { gap: 20px; } }
@media (min-width: 1024px) { .nvs-travel-grid { grid-template-columns: repeat(4, 1fr); } }

.nvs-travel-split { background: var(--nvs-slate-50); padding: 32px; flex-direction: column; gap: 32px; align-items: center; }
@media (min-width: 640px) { .nvs-travel-split { flex-direction: row; padding: 48px; } }
@media (min-width: 1024px) { .nvs-travel-split { grid-column: span 2; } }
.nvs-travel-split:hover { background: #fff; }
.nvs-travel-split .nvs-bento-body { flex: 1; }
.nvs-travel-split .nvs-bento-title { font-size: 24px; margin-bottom: 16px; }
@media (min-width: 640px) { .nvs-travel-split .nvs-bento-title { font-size: 30px; } }
.nvs-travel-split .nvs-bento-excerpt { font-size: 14px; }
.nvs-travel-split .nvs-bento-author { padding-top: 16px; margin-top: 24px; }
.nvs-travel-split-img { width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: var(--nvs-light-grey); }
@media (min-width: 640px) { .nvs-travel-split-img { width: 50%; } }
.nvs-travel-split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-travel-split:hover .nvs-travel-split-img img { transform: scale(1.05); }

.nvs-travel-photo { min-height: 320px; padding: 24px; justify-content: flex-start; }
@media (min-width: 640px) { .nvs-travel-photo { padding: 28px; } }
.nvs-travel-photo .nvs-bento-body { gap: 8px; }
.nvs-travel-photo .nvs-bento-title { font-size: 20px; text-shadow: 0 4px 6px rgba(0,0,0,.3); }
.nvs-travel-photo .nvs-bento-author { padding-top: 8px; gap: 8px; }
.nvs-travel-photo .nvs-bento-author img { width: 20px; height: 20px; }
.nvs-travel-photo .nvs-bento-author span { font-size: 11px; }

.nvs-travel-text { padding: 24px; justify-content: space-between; }
@media (min-width: 640px) { .nvs-travel-text { padding: 32px; } }
.nvs-travel-text:hover { background: var(--nvs-slate-50); }
.nvs-travel-text .nvs-bento-body { flex: 1; justify-content: space-between; }
.nvs-travel-text-img { width: 100%; aspect-ratio: 4/3; margin-bottom: 20px; border-radius: 12px; overflow: hidden; background: var(--nvs-light-grey); }
.nvs-travel-text-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-travel-text:hover .nvs-travel-text-img img { transform: scale(1.05); }
.nvs-travel-text .nvs-bento-title { font-size: 20px; }
.nvs-travel-text .nvs-bento-excerpt { margin-top: 16px; }
.nvs-travel-text .nvs-bento-author { padding-top: 16px; margin-top: 24px; }

.nvs-travel-panoramic { height: 280px; }
@media (min-width: 640px) { .nvs-travel-panoramic { height: 360px; } }
@media (min-width: 1024px) { .nvs-travel-panoramic { grid-column: span 4; } }
.nvs-travel-panoramic .nvs-bento-body { width: 100%; height: 100%; padding: 32px; justify-content: center; align-items: flex-end; text-align: right; gap: 16px; }
@media (min-width: 640px) { .nvs-travel-panoramic .nvs-bento-body { padding: 48px; } }
.nvs-travel-panoramic .nvs-bento-title { font-size: 24px; line-height: 1.25; }
@media (min-width: 640px) { .nvs-travel-panoramic .nvs-bento-title { font-size: 36px; } }
.nvs-travel-panoramic .nvs-bento-author { padding-top: 8px; width: fit-content; }

/* ---- TECH : 4-col bento ---- */
.nvs-tech-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .nvs-tech-grid { gap: 20px; } }
@media (min-width: 1024px) { .nvs-tech-grid { grid-template-columns: repeat(4, 1fr); } }

.nvs-tech-hero { min-height: 360px; align-items: flex-start; justify-content: flex-end; }
@media (min-width: 640px) { .nvs-tech-hero { min-height: 420px; } }
@media (min-width: 1024px) { .nvs-tech-hero { grid-column: span 3; } }
.nvs-tech-hero .nvs-bento-body { width: 100%; padding: 32px; align-items: flex-end; text-align: right; }
@media (min-width: 640px) { .nvs-tech-hero .nvs-bento-body { padding: 40px; } }
@media (min-width: 768px) { .nvs-tech-hero .nvs-bento-body { width: 66.666%; margin-left: auto; } }
.nvs-tech-hero .nvs-bento-title { font-size: 24px; line-height: 1.25; }
@media (min-width: 640px) { .nvs-tech-hero .nvs-bento-title { font-size: 36px; } }
.nvs-tech-hero .nvs-bento-author { padding-top: 12px; margin-top: 8px; justify-content: flex-end; flex-direction: row-reverse; width: 100%; }

.nvs-tech-text { background: var(--nvs-slate-50); padding: 32px; justify-content: space-between; }
.nvs-tech-text:hover { background: #fff; }
.nvs-tech-text .nvs-bento-body { flex: 1; justify-content: space-between; }
.nvs-tech-text-img { width: 100%; aspect-ratio: 4/3; margin-bottom: 20px; border-radius: 12px; overflow: hidden; background: var(--nvs-light-grey); }
.nvs-tech-text-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-tech-text:hover .nvs-tech-text-img img { transform: scale(1.05); }
.nvs-tech-text .nvs-bento-title { font-size: 20px; }
.nvs-tech-text .nvs-bento-excerpt { margin-top: 12px; -webkit-line-clamp: 3; }
.nvs-tech-text .nvs-bento-author { padding-top: 16px; margin-top: 24px; }

.nvs-tech-flex { flex-direction: column; }
@media (min-width: 640px) { .nvs-tech-flex { flex-direction: row; } }
@media (min-width: 1024px) { .nvs-tech-flex { grid-column: span 2; } }
.nvs-tech-flex--reverse { flex-direction: column; }
@media (min-width: 640px) { .nvs-tech-flex--reverse { flex-direction: row-reverse; } }
@media (min-width: 1024px) { .nvs-tech-flex--reverse { grid-column: span 2; } }
.nvs-tech-flex:hover, .nvs-tech-flex--reverse:hover { background: var(--nvs-slate-50); }
.nvs-tech-flex-img { width: 100%; min-height: 220px; flex-shrink: 0; background: var(--nvs-light-grey); overflow: hidden; }
@media (min-width: 640px) { .nvs-tech-flex-img { width: 50%; min-height: 250px; } }
.nvs-tech-flex-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nvs-tech-flex:hover .nvs-tech-flex-img img, .nvs-tech-flex--reverse:hover .nvs-tech-flex-img img { transform: scale(1.05); }
.nvs-tech-flex .nvs-bento-body, .nvs-tech-flex--reverse .nvs-bento-body { padding: 24px; flex: 1; justify-content: space-between; }
@media (min-width: 640px) { .nvs-tech-flex .nvs-bento-body, .nvs-tech-flex--reverse .nvs-bento-body { padding: 32px; } }
.nvs-tech-flex .nvs-bento-title, .nvs-tech-flex--reverse .nvs-bento-title { font-size: 18px; }
@media (min-width: 640px) { .nvs-tech-flex .nvs-bento-title, .nvs-tech-flex--reverse .nvs-bento-title { font-size: 20px; } }
.nvs-tech-flex .nvs-bento-excerpt, .nvs-tech-flex--reverse .nvs-bento-excerpt { margin-top: 10px; -webkit-line-clamp: 5; }
@media (min-width: 640px) { .nvs-tech-flex .nvs-bento-excerpt, .nvs-tech-flex--reverse .nvs-bento-excerpt { font-size: 14px; } }
.nvs-tech-flex .nvs-bento-author, .nvs-tech-flex--reverse .nvs-bento-author { padding-top: 16px; margin-top: 20px; }

/* =========================================================
   HOMEPAGE -- NEWSLETTER WIDGET
   Source: py-10/sm:14, my-10/sm:14, max-w-5xl, rounded-2xl, #E5E9EB
   ========================================================= */
/* Source: the section container's bottom padding (pb-16/20/24) plus the
   newsletter's own my-10/sm:my-14 margin. */
.nvs-newsletter-outer { padding: 64px 16px 48px; }
@media (min-width: 640px) { .nvs-newsletter-outer { padding: 80px 24px 48px; } }
@media (min-width: 1024px) { .nvs-newsletter-outer { padding: 96px 32px 48px; } }
/* scroll-margin-top clears the 80px sticky header when the Subscribe link
   jumps to #homepage-newsletter-section, plus a little breathing room. */
.nvs-newsletter-section { position: relative; max-width: 1024px; margin: 40px auto; padding: 40px 16px; background: var(--nvs-light-grey); border: 1px solid var(--nvs-blue-grey); border-radius: 16px; overflow: hidden; scroll-margin-top: 104px; }
@media (min-width: 640px) { .nvs-newsletter-section { padding: 56px 24px; margin: 56px auto; } }
.nvs-newsletter-blob { position: absolute; width: 240px; height: 240px; border-radius: 999px; filter: blur(40px); pointer-events: none; }
.nvs-newsletter-blob--1 { top: -64px; right: -64px; background: rgba(113,136,155,.1); }
.nvs-newsletter-blob--2 { bottom: -64px; left: -64px; background: rgba(156,174,187,.1); }
.nvs-newsletter-inner { position: relative; z-index: 10; max-width: 672px; margin: 0 auto; text-align: center; }
.nvs-newsletter-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--nvs-blue-grey); font-size: 12px; margin-bottom: 16px; }
.nvs-newsletter-badge b { font-family: var(--nvs-font-serif); font-size: 12px; font-weight: 700; color: var(--nvs-ink); display: inline-flex; align-items: baseline; }
.nvs-newsletter-badge .nvs-nl-cap { font-weight: 900; font-size: 14px; }
.nvs-newsletter-badge .nvs-nl-cap--accent { color: var(--nvs-dusty-blue); }
.nvs-newsletter-badge .nvs-nl-dot { color: var(--nvs-slate-400); font-weight: 300; }
.nvs-newsletter-badge .nvs-nl-tag { color: var(--nvs-dusty-blue); font-weight: 700; text-transform: uppercase; font-size: 10px; letter-spacing: 0.05em; }
.nvs-newsletter-section h2 { font-family: var(--nvs-font-serif); font-size: 24px; font-weight: 700; color: var(--nvs-ink); letter-spacing: -0.02em; line-height: 1.375; }
@media (min-width: 640px) { .nvs-newsletter-section h2 { font-size: 30px; } }
.nvs-newsletter-desc { margin-top: 10px; font-size: 12px; color: var(--nvs-slate-500); max-width: 512px; margin-left: auto; margin-right: auto; line-height: 1.625; }
@media (min-width: 640px) { .nvs-newsletter-desc { font-size: 14px; } }
.nvs-newsletter-form-wrap { margin-top: 24px; max-width: 448px; margin-left: auto; margin-right: auto; }
.nvs-newsletter-form { display: none; flex-direction: column; gap: 10px; }
.nvs-newsletter-form:not([hidden]) { display: flex; }
@media (min-width: 640px) { .nvs-newsletter-form:not([hidden]) { flex-direction: row; } }
.nvs-newsletter-form .nvs-input-icon { flex-grow: 1; }
.nvs-newsletter-form .nvs-input-icon input { background: #fff; border: 1px solid var(--nvs-blue-grey); border-radius: 8px; padding: 10px 14px 10px 40px; font-size: 12px; color: var(--nvs-ink); width: 100%; }
@media (min-width: 640px) { .nvs-newsletter-form .nvs-input-icon input { font-size: 14px; } }
.nvs-newsletter-form .nvs-input-icon input:focus { outline: none; box-shadow: 0 0 0 2px var(--nvs-dusty-blue); border-color: transparent; }
.nvs-newsletter-form button { padding: 10px 20px; border-radius: 8px; background: var(--nvs-dusty-blue); color: #fff; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0; transition: all .2s; }
@media (min-width: 640px) { .nvs-newsletter-form button { font-size: 14px; } }
.nvs-newsletter-form button:hover { background: var(--nvs-dusty-blue-dark); transform: translateY(-2px); }
.nvs-newsletter-note { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 11px; color: var(--nvs-slate-500); }
.nvs-newsletter-note svg { color: var(--nvs-dusty-blue); }
.nvs-newsletter-success { padding: 16px; border-radius: 12px; background: #fff; border: 1px solid rgba(113,136,155,.3); text-align: center; display: none; flex-direction: column; align-items: center; gap: 8px; }
.nvs-newsletter-success:not([hidden]) { display: flex; }
.nvs-newsletter-success-icon { padding: 6px; border-radius: 999px; background: var(--nvs-off-white); color: var(--nvs-dusty-blue); display: flex; }
.nvs-newsletter-success h4 { font-family: var(--nvs-font-serif); font-size: 16px; font-weight: 700; color: var(--nvs-ink); }
.nvs-newsletter-success p { font-size: 12px; color: var(--nvs-slate-500); margin-top: 2px; }
.nvs-newsletter-success button { margin-top: 8px; font-size: 12px; color: var(--nvs-dusty-blue); font-weight: 600; }
.nvs-newsletter-success button:hover { text-decoration: underline; }
