:root {
	--nsv-blue: #123f88;
	--nsv-yellow: #f5bd16;
	--nsv-ink: #10213f;
	--nsv-muted: #68758a;
	--nsv-line: #e3e9f1;
	--nsv-surface: #ffffff;
	--nsv-soft: #f6f8fb;
	--nsv-radius: 12px;
	--nsv-shadow: 0 10px 28px rgba(16, 33, 63, 0.07);
	--nsv-container: 1320px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--nsv-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.nsv-modal-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--nsv-blue);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.nsv-container {
	width: min(calc(100% - 40px), var(--nsv-container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed !important;
	top: 16px;
	left: 16px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: var(--nsv-blue);
	border-radius: 6px;
	box-shadow: var(--nsv-shadow);
}

.nsv-topbar {
	border-bottom: 1px solid var(--nsv-line);
	background: #fff;
	font-size: 13px;
	color: var(--nsv-muted);
}

.nsv-topbar-inner,
.nsv-utility-nav {
	display: flex;
	align-items: center;
}

.nsv-topbar-inner {
	min-height: 38px;
	justify-content: space-between;
	gap: 20px;
}

.nsv-utility-nav {
	gap: 20px;
}

.nsv-brand-row {
	display: grid;
	grid-template-columns: minmax(230px, 1fr) minmax(410px, 1.3fr) minmax(240px, .8fr);
	align-items: center;
	gap: 28px;
	padding-block: 18px;
}

.site-title,
.nsv-footer-title {
	margin: 0;
	font-size: clamp(30px, 4vw, 50px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--nsv-blue);
}

.site-title span,
.nsv-footer-title span {
	color: var(--nsv-yellow);
}

.site-description {
	margin: 8px 0 0;
	color: var(--nsv-muted);
	font-size: 14px;
}

.custom-logo {
	max-height: 70px;
	width: auto;
}

.nsv-header-search {
	justify-self: end;
	width: 100%;
	max-width: 320px;
}

.nsv-search-form {
	display: flex;
	align-items: center;
	width: 100%;
	border: 1px solid var(--nsv-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.nsv-search-form label {
	flex: 1;
}

.nsv-search-field {
	width: 100%;
	border: 0;
	outline: 0;
	padding: 12px 14px;
	background: transparent;
	color: var(--nsv-ink);
}

.nsv-search-form button {
	width: 46px;
	align-self: stretch;
	border: 0;
	background: transparent;
	color: var(--nsv-blue);
	font-size: 24px;
	cursor: pointer;
}

.nsv-weather {
	display: flex;
	align-items: stretch;
	justify-content: center;
	border: 1px solid var(--nsv-line);
	border-radius: 10px;
	background: var(--nsv-surface);
	min-height: 74px;
	overflow: hidden;
}

.nsv-weather-main {
	display: grid;
	grid-template-columns: auto auto auto auto;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 8px;
	padding: 10px 15px;
	border: 0;
	border-right: 1px solid var(--nsv-line);
	background: transparent;
	color: var(--nsv-ink);
	text-align: left;
	cursor: pointer;
}

.nsv-weather-main:hover,
.nsv-weather-main:focus-visible {
	background: var(--nsv-soft);
	outline: 0;
}

.nsv-weather-icon {
	grid-row: 1 / 3;
	font-size: 30px;
}

.nsv-weather-temp {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	color: var(--nsv-blue);
}

.nsv-weather-city {
	font-weight: 700;
}

.nsv-weather-chevron {
	color: var(--nsv-yellow);
}

.nsv-weather-main small {
	grid-column: 2 / 5;
	color: var(--nsv-muted);
	font-size: 11px;
	white-space: nowrap;
}

.nsv-weather-days {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(72px, 1fr);
	align-items: stretch;
}

.nsv-weather-days > span {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 1px;
	padding: 7px 9px;
	border-right: 1px solid var(--nsv-line);
	font-size: 11px;
}

.nsv-weather-days > span:last-child {
	border-right: 0;
}

.nsv-weather-days i {
	font-style: normal;
	font-size: 18px;
	line-height: 1.2;
}

.nsv-weather-days small {
	color: var(--nsv-muted);
	white-space: nowrap;
}

.nsv-nav-wrap {
	border-top: 1px solid var(--nsv-line);
	border-bottom: 1px solid var(--nsv-line);
	background: #fff;
}

.nsv-nav-inner {
	position: relative;
}

.main-navigation {
	width: 100%;
}

.nsv-menu-row {
	width: 100%;
}

.nsv-menu-row--continents {
	background: linear-gradient(90deg, rgba(18, 63, 136, .055), rgba(18, 63, 136, .018));
	border-bottom: 1px solid var(--nsv-line);
}

.nsv-menu-row--topics {
	background: #fff;
}

.nsv-menu-list {
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: max-content;
	min-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 14px;
	color: var(--nsv-ink);
	font-size: 12.5px;
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
}

.nsv-menu-row--topics a {
	min-height: 44px;
	font-size: 13px;
}

.main-navigation a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: transparent;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
	color: var(--nsv-blue);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
	background: var(--nsv-yellow);
}

.nsv-menu-row--continents .current-menu-item > a {
	background: rgba(18, 63, 136, .05);
}

.nsv-menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	border: 0;
	background: transparent;
	color: var(--nsv-blue);
	font-weight: 700;
	cursor: pointer;
}

.nsv-breaking {
	border-bottom: 1px solid var(--nsv-line);
	background: linear-gradient(90deg, #fff9df, #fff);
}

.nsv-breaking-inner {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-height: 44px;
	font-size: 14px;
}

.nsv-breaking-label {
	color: #a87400;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.nsv-breaking time {
	color: var(--nsv-blue);
	font-weight: 700;
}

.nsv-breaking a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-main {
	padding-block: 22px 50px;
}

.nsv-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
	gap: 16px;
	margin-bottom: 22px;
}

.nsv-hero-main {
	position: relative;
	min-height: 500px;
	overflow: hidden;
	border-radius: var(--nsv-radius);
	background: var(--nsv-ink);
	box-shadow: var(--nsv-shadow);
}

.nsv-hero-image,
.nsv-cover-image,
.nsv-image-placeholder {
	width: 100%;
	height: 100%;
}

.nsv-cover-image {
	object-fit: cover;
}

.nsv-image-placeholder {
	display: block;
	background:
		linear-gradient(135deg, rgba(18,63,136,.92), rgba(18,63,136,.55)),
		linear-gradient(45deg, #e8eef8 25%, #f8d764 100%);
}

.nsv-hero-image {
	position: absolute;
	inset: 0;
}

.nsv-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 20%, rgba(4, 15, 36, .88) 100%);
}

.nsv-hero-content {
	position: absolute;
	z-index: 2;
	inset: auto 0 0;
	padding: clamp(24px, 4vw, 48px);
	color: #fff;
}

.nsv-badge,
.nsv-category-label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 5px 9px;
	border-radius: 5px;
	background: var(--nsv-blue);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.nsv-hero-content h2 {
	max-width: 880px;
	margin: 14px 0 8px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 4.2vw, 55px);
	line-height: 1.06;
	letter-spacing: -0.025em;
}

.nsv-hero-content h2 a:hover {
	color: #fff2b5;
}

.nsv-hero-content p {
	max-width: 780px;
	margin: 0 0 16px;
	font-size: 17px;
	color: rgba(255,255,255,.9);
}

.nsv-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: var(--nsv-muted);
	font-size: 12px;
}

.nsv-hero-content .nsv-meta {
	color: rgba(255,255,255,.82);
}

.nsv-hero-side {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.nsv-side-card {
	display: grid;
	grid-template-columns: 42% 1fr;
	gap: 14px;
	min-height: 116px;
	padding: 10px;
	border: 1px solid var(--nsv-line);
	border-radius: var(--nsv-radius);
	background: #fff;
}

.nsv-side-thumb {
	overflow: hidden;
	border-radius: 7px;
	aspect-ratio: 16 / 9;
}

.nsv-side-card h3 {
	margin: 6px 0 8px;
	font-size: 16px;
	line-height: 1.25;
}

.nsv-side-card .nsv-category-label {
	padding: 0;
	background: transparent;
	color: var(--nsv-blue);
}

.nsv-dashboard {
	display: grid;
	grid-template-columns: 1fr 1.15fr 1fr;
	gap: 16px;
	margin-bottom: 22px;
}

.nsv-panel,
.nsv-category-column {
	padding: 18px;
	border: 1px solid var(--nsv-line);
	border-radius: var(--nsv-radius);
	background: #fff;
}

.nsv-section-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.nsv-section-heading::after {
	content: "";
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, var(--nsv-yellow) 0 42px, var(--nsv-line) 42px);
}

.nsv-section-heading h2 {
	flex: 0 1 auto;
	margin: 0;
	color: var(--nsv-blue);
	font-size: 16px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .025em;
}

.nsv-latest-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nsv-latest-list li {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--nsv-line);
	font-size: 13px;
	line-height: 1.35;
}

.nsv-latest-list time {
	color: var(--nsv-blue);
	font-weight: 800;
}

.nsv-more-link {
	display: block;
	margin-top: 14px;
	padding: 9px 12px;
	border: 1px solid var(--nsv-line);
	border-radius: 6px;
	color: var(--nsv-blue);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.nsv-more-link:hover {
	background: var(--nsv-soft);
}

.nsv-panel-image,
.nsv-category-lead-image {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 16 / 9;
}

.nsv-feature-panel h3 {
	margin: 12px 0 6px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.15;
}

.nsv-feature-panel p {
	margin: 0 0 10px;
	color: var(--nsv-muted);
	font-size: 14px;
}

.nsv-mini-card {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--nsv-line);
}

.nsv-mini-card > a {
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 16 / 9;
}

.nsv-mini-card h3 {
	margin: 0 0 5px;
	font-size: 14px;
	line-height: 1.3;
}

.nsv-category-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.nsv-category-column {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.nsv-category-column .nsv-section-heading h2 {
	font-size: 13px;
}

.nsv-category-item {
	padding: 11px 0;
	border-bottom: 1px solid var(--nsv-line);
}

.nsv-category-item h3 {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.35;
}

.nsv-category-column .nsv-more-link {
	margin-top: auto;
}

.nsv-page-header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--nsv-line);
}

.nsv-page-header h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.1;
}

.archive-description {
	max-width: 760px;
	color: var(--nsv-muted);
}

.nsv-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nsv-archive-card {
	overflow: hidden;
	border: 1px solid var(--nsv-line);
	border-radius: var(--nsv-radius);
	background: #fff;
}

.nsv-archive-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.nsv-archive-card-body {
	padding: 16px;
}

.nsv-archive-card h2 {
	margin: 9px 0 8px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.15;
}

.nsv-archive-card p {
	margin-bottom: 0;
	color: var(--nsv-muted);
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 28px;
}

.nav-links .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	border: 1px solid var(--nsv-line);
	border-radius: 7px;
}

.nav-links .current {
	background: var(--nsv-blue);
	color: #fff;
	border-color: var(--nsv-blue);
}

.nsv-single .nsv-container {
	max-width: 980px;
}

.nsv-article-header {
	max-width: 900px;
	margin: 12px auto 28px;
	text-align: center;
}

.nsv-article-header .nsv-category-label {
	margin-inline: auto;
}

.nsv-article-header h1 {
	margin: 14px 0 12px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(38px, 6vw, 68px);
	line-height: 1.04;
	letter-spacing: -0.035em;
}

.nsv-article-header .nsv-meta {
	justify-content: center;
}

.nsv-article-hero {
	margin: 0 0 30px;
	overflow: hidden;
	border-radius: var(--nsv-radius);
	aspect-ratio: 16 / 9;
	background: var(--nsv-soft);
}

.nsv-article-content {
	max-width: 780px;
	margin-inline: auto;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
	line-height: 1.8;
}

.nsv-article-content h2,
.nsv-article-content h3,
.nsv-article-content h4 {
	color: var(--nsv-ink);
	line-height: 1.25;
}

.nsv-article-content h2 {
	margin-top: 1.7em;
	font-size: 34px;
}

.nsv-article-content h3 {
	margin-top: 1.5em;
	font-size: 27px;
}

.nsv-article-content a {
	color: var(--nsv-blue);
	text-decoration: underline;
	text-decoration-color: rgba(18,63,136,.35);
	text-underline-offset: .15em;
}

.nsv-article-content blockquote {
	margin: 1.6em 0;
	padding: 18px 24px;
	border-left: 4px solid var(--nsv-yellow);
	background: var(--nsv-soft);
	font-size: 1.08em;
}

.nsv-article-content iframe,
.nsv-article-content video,
.nsv-article-content .wp-block-embed {
	max-width: 100%;
}

.nsv-article-footer {
	max-width: 780px;
	margin: 28px auto;
}

.nsv-tags a {
	display: inline-flex;
	margin: 0 6px 6px 0;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--nsv-soft);
	color: var(--nsv-blue);
	font-size: 13px;
}

.nsv-related {
	margin-top: 48px;
}

.nsv-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.comments-area {
	max-width: 780px;
	margin: 50px auto 0;
	padding-top: 30px;
	border-top: 2px solid var(--nsv-line);
}

.comment-list {
	padding-left: 24px;
}

.nsv-empty {
	max-width: 680px;
	margin: 40px auto;
	padding: 44px;
	border-radius: var(--nsv-radius);
	background: var(--nsv-soft);
	text-align: center;
}

.nsv-error-code {
	margin: 0;
	color: var(--nsv-yellow);
	font-size: 90px;
	font-weight: 900;
	line-height: 1;
}

.nsv-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 18px;
	border-radius: 7px;
	background: var(--nsv-blue);
	color: #fff;
	font-weight: 800;
}

.nsv-button:hover {
	background: #0b2f6b;
	color: #fff;
}

.site-footer {
	border-top: 1px solid var(--nsv-line);
	background: var(--nsv-soft);
}

.nsv-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1.5fr .8fr .8fr;
	gap: 32px;
	padding-block: 34px;
}

.nsv-footer-title {
	font-size: 28px;
}

.site-footer h2 {
	margin: 0 0 12px;
	color: var(--nsv-blue);
	font-size: 14px;
	text-transform: uppercase;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nsv-footer-categories,
.site-footer .menu {
	columns: 2;
	column-gap: 22px;
}

.site-footer li {
	margin-bottom: 6px;
	font-size: 13px;
}

.site-footer p {
	color: var(--nsv-muted);
	font-size: 13px;
}

.nsv-footer-bottom {
	border-top: 1px solid var(--nsv-line);
	background: #fff;
	font-size: 12px;
	color: var(--nsv-muted);
}

.nsv-footer-bottom .nsv-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-block: 14px;
}

.nsv-weather-modal[hidden] {
	display: none;
}

.nsv-weather-modal {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
}

.nsv-weather-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 15, 36, .62);
	backdrop-filter: blur(3px);
}

.nsv-weather-dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	max-height: min(85vh, 700px);
	overflow: auto;
	padding: 28px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 30px 80px rgba(4, 15, 36, .35);
}

.nsv-weather-dialog h2 {
	margin: 0 38px 6px 0;
	font-size: 28px;
}

.nsv-weather-dialog > p {
	color: var(--nsv-muted);
}

.nsv-weather-close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: var(--nsv-soft);
	color: var(--nsv-ink);
	font-size: 27px;
	cursor: pointer;
}

.nsv-weather-dialog label {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
}

.nsv-weather-dialog input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--nsv-line);
	border-radius: 8px;
	outline: 0;
}

.nsv-weather-dialog input:focus {
	border-color: var(--nsv-blue);
	box-shadow: 0 0 0 3px rgba(18,63,136,.12);
}

.nsv-weather-results {
	display: grid;
	gap: 8px;
	margin-top: 12px;
}

.nsv-weather-result {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 12px;
	border: 1px solid var(--nsv-line);
	border-radius: 8px;
	background: #fff;
	text-align: left;
	cursor: pointer;
}

.nsv-weather-result:hover,
.nsv-weather-result:focus-visible {
	border-color: var(--nsv-blue);
	background: var(--nsv-soft);
	outline: 0;
}

.nsv-weather-result span {
	color: var(--nsv-muted);
	font-size: 13px;
}

.nsv-weather-attribution {
	margin: 22px 0 0 !important;
	font-size: 12px;
}

.nsv-weather-attribution a {
	color: var(--nsv-blue);
	text-decoration: underline;
}

@media (max-width: 1180px) {
	.nsv-brand-row {
		grid-template-columns: 1fr 1.4fr;
	}

	.nsv-header-search {
		grid-column: 1 / -1;
		max-width: none;
		justify-self: stretch;
	}

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

	.main-navigation {
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.nsv-menu-list {
		justify-content: flex-start;
	}

	.nsv-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.nsv-container {
		width: min(calc(100% - 28px), var(--nsv-container));
	}

	.nsv-brand-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.nsv-weather {
		justify-content: stretch;
	}

	.nsv-weather-main {
		flex: 1;
	}

	.nsv-weather-days {
		flex: 1;
	}

	.nsv-header-search {
		grid-column: auto;
	}

	.nsv-menu-toggle {
		display: inline-flex;
	}

	.main-navigation {
		display: none;
		position: absolute;
		z-index: 50;
		top: 100%;
		left: 0;
		right: 0;
		max-height: 76vh;
		overflow: auto;
		padding: 8px;
		border: 1px solid var(--nsv-line);
		background: #fff;
		box-shadow: var(--nsv-shadow);
	}

	.main-navigation.is-open {
		display: block;
	}

	.nsv-menu-row {
		border: 0;
		background: transparent;
	}

	.nsv-menu-row + .nsv-menu-row {
		margin-top: 8px;
		padding-top: 8px;
		border-top: 1px solid var(--nsv-line);
	}

	.nsv-menu-list {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.main-navigation a,
	.nsv-menu-row--topics a {
		justify-content: flex-start;
		min-height: 0;
		padding: 10px 12px;
		border: 0;
		border-radius: 6px;
		white-space: normal;
		text-align: left;
	}

	.main-navigation a::after {
		display: none;
	}

	.main-navigation a:hover,
	.main-navigation .current-menu-item > a {
		background: var(--nsv-soft);
	}

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

	.nsv-hero-main {
		min-height: 520px;
	}

	.nsv-hero-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nsv-side-card {
		grid-template-columns: 1fr;
	}

	.nsv-dashboard {
		grid-template-columns: 1fr 1fr;
	}

	.nsv-editor-choice {
		grid-column: 1 / -1;
	}

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

	.nsv-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.nsv-utility-nav {
		display: none;
	}

	.nsv-topbar-inner {
		justify-content: center;
	}

	.site-title {
		font-size: 36px;
	}

	.nsv-weather {
		display: block;
	}

	.nsv-weather-main {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid var(--nsv-line);
	}

	.nsv-weather-days {
		grid-auto-columns: 1fr;
	}

	.nsv-breaking-inner {
		grid-template-columns: auto 1fr;
		gap: 10px;
	}

	.nsv-breaking a {
		grid-column: 1 / -1;
		padding-bottom: 8px;
	}

	.nsv-hero-main {
		min-height: 470px;
	}

	.nsv-hero-content {
		padding: 22px;
	}

	.nsv-hero-content h2 {
		font-size: 34px;
	}

	.nsv-hero-content p {
		display: none;
	}

	.nsv-hero-side,
	.nsv-dashboard,
	.nsv-category-grid,
	.nsv-archive-grid,
	.nsv-related-grid,
	.nsv-footer-grid {
		grid-template-columns: 1fr;
	}

	.nsv-editor-choice {
		grid-column: auto;
	}

	.nsv-side-card {
		grid-template-columns: 38% 1fr;
	}

	.nsv-category-column {
		min-height: auto;
	}

	.nsv-article-header h1 {
		font-size: 39px;
	}

	.nsv-article-content {
		font-size: 18px;
		line-height: 1.7;
	}

	.nsv-article-content h2 {
		font-size: 29px;
	}

	.nsv-footer-bottom .nsv-container {
		display: block;
		text-align: center;
	}

	.nsv-empty {
		padding: 28px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		transition: none !important;
		animation: none !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.nsv-related,
	.comments-area {
		display: none !important;
	}

	.nsv-article-content {
		max-width: none;
		font-size: 12pt;
	}
}
