:root {
	--ds-blue:        #1a56db;
	--ds-blue-dark:   #1343b8;
	--ds-blue-light:  #eff6ff;
	--ds-blue-mid:    #3b82f6;
	--ds-blue-glow:   rgba(26, 86, 219, .16);
	--ds-navy:        #0d1f3c;
	--ds-navy-mid:    #152d5e;

	--ds-text:        #0f172a;
	--ds-muted:       #64748b;

	--ds-bg:          #f1f5f9;
	--ds-surface:     #ffffff;
	--ds-border:      #e2e8f0;
	--ds-border-soft: rgba(15, 23, 42, .07);

	--ds-r-xs:        8px;
	--ds-r-sm:        12px;
	--ds-r:           16px;
	--ds-r-lg:        20px;

	--ds-sh-sm:       0 1px 2px rgba(15, 23, 42, .05), 0 2px 6px rgba(15, 23, 42, .05);
	--ds-sh:          0 1px 3px rgba(15, 23, 42, .05), 0 8px 24px rgba(15, 23, 42, .07);
	--ds-sh-lg:       0 4px 8px rgba(15, 23, 42, .05), 0 16px 44px rgba(15, 23, 42, .11);
	--ds-sh-blue:     0 4px 16px var(--ds-blue-glow);

	--ds-ease:        cubic-bezier(.4, 0, .2, 1);
	--ds-spring:      cubic-bezier(.34, 1.56, .64, 1);
	--ds-t:           .22s var(--ds-ease);

	--ds-section-gap: 56px;

	--gn-blue: var(--ds-blue);
	--gn-blue-d: var(--ds-blue-dark);
	--gn-blue-l: var(--ds-blue-light);
	--gn-blue-glow: var(--ds-blue-glow);
	--gn-text: var(--ds-text);
	--gn-muted: var(--ds-muted);
	--gn-border: var(--ds-border);
	--gn-bg: var(--ds-bg);
	--gn-white: var(--ds-surface);
	--gn-radius: var(--ds-r);
	--gn-radius-sm: var(--ds-r-sm);
	--gn-shadow: var(--ds-sh);
	--gn-shadow-lg: var(--ds-sh-lg);

	--c-blue: var(--ds-blue);
	--c-blue-d: var(--ds-blue-dark);
	--c-blue-l: var(--ds-blue-light);
	--c-blue-mid: var(--ds-blue-mid);
	--c-surface: var(--ds-surface);
	--c-bg: var(--ds-bg);
	--c-text: var(--ds-text);
	--c-muted: var(--ds-muted);
	--c-border: var(--ds-border-soft);
	--c-shadow: var(--ds-sh);
	--c-shadow-sm: var(--ds-sh-sm);
	--c-shadow-lg: var(--ds-sh-lg);
	--c-navy: var(--ds-navy);
	--c-navy-mid: var(--ds-navy-mid);
	--c-accent: var(--ds-blue-mid);
	--radius: var(--ds-r);
	--radius-sm: var(--ds-r-sm);
	--radius-xs: var(--ds-r-xs);
	--transition: var(--ds-t);

	--gp2-bg: var(--ds-bg);
	--gp2-surface: var(--ds-surface);
	--gp2-blue: var(--ds-blue);
	--gp2-blue-d: var(--ds-blue-dark);
	--gp2-blue-l: var(--ds-blue-light);
	--gp2-text: var(--ds-text);
	--gp2-muted: var(--ds-muted);
	--gp2-border: var(--ds-border-soft);
	--gp2-shadow-sm: var(--ds-sh-sm);
	--gp2-shadow: var(--ds-sh);
	--gp2-shadow-lg: var(--ds-sh-lg);
	--gp2-radius: var(--ds-r);
	--gp2-radius-sm: var(--ds-r-sm);
	--gp2-ease: var(--ds-ease);
	--gp2-spring: var(--ds-spring);

	--gh-blue: var(--ds-blue);
	--gh-navy: var(--ds-navy);
	--gh-navy-mid: var(--ds-navy-mid);
	--gh-accent: var(--ds-blue-mid);
	--gh-white: var(--ds-surface);
	--gh-text: var(--ds-text);
	--gh-muted: var(--ds-muted);
	--gh-border: var(--ds-border-soft);
	--gh-radius: var(--ds-r-sm);
	--gh-transition: var(--ds-t);

	--noghay-color-primary: var(--ds-blue);
	--noghay-color-text: var(--ds-text);
	--noghay-color-muted: var(--ds-muted);
	--noghay-color-border: var(--ds-border);
	--noghay-color-bg: var(--ds-surface);
	--noghay-radius: var(--ds-r-sm);
	--noghay-shadow: var(--ds-sh);
}

.gp2-tile,
.gp2-tile--red,
.gp2-tile--blue,
.gp2-tile--green,
.gp2-tile--cyan,
.gp2-tile--orange,
.gp2-tile--purple {
	background: var(--ds-surface);
	border: 1px solid var(--ds-border);
	box-shadow: var(--ds-sh-sm);
	color: var(--ds-text);
	border-radius: var(--ds-r-sm);
	transition: border-color var(--ds-t), box-shadow var(--ds-t), transform var(--ds-t);
}

.gp2-tile:hover,
.gp2-tile--red:hover,
.gp2-tile--blue:hover,
.gp2-tile--green:hover,
.gp2-tile--cyan:hover,
.gp2-tile--orange:hover,
.gp2-tile--purple:hover {
	background: var(--ds-surface);
	border-color: var(--ds-blue);
	box-shadow: var(--ds-sh-blue);
	transform: translateY(-2px);
	color: var(--ds-text);
}

.gp2-tile .gp2-tile-ico,
.gp2-tile--red .gp2-tile-ico,
.gp2-tile--blue .gp2-tile-ico,
.gp2-tile--green .gp2-tile-ico,
.gp2-tile--cyan .gp2-tile-ico,
.gp2-tile--orange .gp2-tile-ico,
.gp2-tile--purple .gp2-tile-ico {
	background: var(--ds-blue-light);
	border-radius: var(--ds-r-xs);
}

.gp2-tile .gp2-tile-ico .fa,
.gp2-tile--red .gp2-tile-ico .fa,
.gp2-tile--blue .gp2-tile-ico .fa,
.gp2-tile--green .gp2-tile-ico .fa,
.gp2-tile--cyan .gp2-tile-ico .fa,
.gp2-tile--orange .gp2-tile-ico .fa,
.gp2-tile--purple .gp2-tile-ico .fa {
	color: var(--ds-blue);
}

.gp2-tile:hover .gp2-tile-ico {
	transform: none;
	background: var(--ds-blue);
}
.gp2-tile:hover .gp2-tile-ico .fa {
	color: #fff;
}

.gp2-tile .gp2-tile-body strong { color: var(--ds-text); }
.gp2-tile .gp2-tile-body span   { color: var(--ds-muted); }
.gp2-tile .gp2-tile-arr         { color: var(--ds-blue); opacity: .55; }
.gp2-tile:hover .gp2-tile-arr   { opacity: 1; }

.gp-widgets-grid {
	align-items: stretch;
}
.gp-widgets-grid .gp-widget-card {
	display: flex;
	flex-direction: column;
	background: var(--ds-surface);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r);
	box-shadow: var(--ds-sh-sm);
	overflow: hidden;
}
.gp-widgets-grid .gp-widget-card > *:last-child {
	margin-top: auto;
}
.gp-widgets-grid .gp-opros-link-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 10px;
	background: var(--ds-blue-light);
	border-radius: var(--ds-r-sm);
	transition: background var(--ds-t);
}
.gp-widgets-grid .gp-opros-link-card:hover {
	background: #dbe9fe;
}

.gp-ext-banners-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	align-items: stretch;
}
.gp-ext-banners-grid .gp-ext-banner-item {
	border-radius: var(--ds-r);
	border: 1px solid var(--ds-border-soft);
	box-shadow: var(--ds-sh-sm);
	overflow: hidden;
	background: var(--ds-surface);
	transition: transform var(--ds-t), box-shadow var(--ds-t);
	line-height: 0;
}
.gp-ext-banners-grid .gp-ext-banner-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--ds-sh);
}
.gp-ext-banners-grid .gp-ext-banner-item img,
.gp-ext-banners-grid .gp-ext-banner-item picture {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

@media (max-width: 900px) {
	.gp-ext-banners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.gp-ext-banners-grid { grid-template-columns: 1fr; }
	.gp-ext-banners-grid .gp-ext-banner-item img { object-fit: contain; }
}

.gp-section,
.gp2-section {
	margin-bottom: var(--ds-section-gap);
}
.gp-section-title,
.gp2-sec-title,
.gn-page-title {
	letter-spacing: -.02em;
	color: var(--ds-text);
}

.gn-widget,
.gn-sidebar > * {
	border-radius: var(--ds-r);
	box-shadow: var(--ds-sh-sm);
	border: 1px solid var(--ds-border);
}

.gn-widget-title,
.gn-sidebar h3 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--ds-muted);
}
.gn-widget-title .fa,
.gn-sidebar h3 .fa {
	color: var(--ds-blue);
}

.gn-cat-pill,
.gn-cat-list a {
	border-radius: var(--ds-r-pill, 999px);
	border: 1px solid var(--ds-border);
	background: var(--ds-surface);
	color: var(--ds-text);
	transition: border-color var(--ds-t), background var(--ds-t), color var(--ds-t);
}
.gn-cat-pill:hover,
.gn-cat-list a:hover {
	border-color: var(--ds-blue);
	background: var(--ds-blue-light);
	color: var(--ds-blue);
}
.gn-cat-pill span,
.gn-cat-list a span {
	background: var(--ds-blue-light);
	color: var(--ds-blue);
	border-radius: var(--ds-r-pill, 999px);
}

.gn-card,
.gov-cat-card,
.gn-doc-list-item {
	border-radius: var(--ds-r);
	border: 1px solid var(--ds-border);
	box-shadow: var(--ds-sh-sm);
	transition: border-color var(--ds-t), box-shadow var(--ds-t), transform var(--ds-t);
}
.gn-card:hover,
.gov-cat-card:hover,
.gn-doc-list-item:hover {
	border-color: var(--ds-blue);
	box-shadow: var(--ds-sh-blue);
	transform: translateY(-2px);
}

.wp-block-file {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 20px 0;
	padding: 16px;
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r);
	background: var(--ds-surface);
	box-shadow: var(--ds-sh-sm);
}
.wp-block-file__embed {
	width: 100%;
	min-height: 620px;
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r-sm);
	background: var(--ds-surface-2, #f8fafc);
}

.dv-doc-grid,
.dv-documents,
.document-viewer-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
	width: 100%;
}
.dv-doc-card,
.dv-document,
.document-viewer-item {
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r-sm);
	background: var(--ds-surface);
	overflow: hidden;
	transition: border-color var(--ds-t), box-shadow var(--ds-t), transform var(--ds-t);
}
.dv-doc-card:hover,
.dv-document:hover,
.document-viewer-item:hover {
	border-color: var(--ds-blue);
	box-shadow: var(--ds-sh-blue);
	transform: translateY(-2px);
}
.wp-block-file__button,
.wp-block-file .wp-element-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 10px 20px;
	border: 0;
	border-radius: var(--ds-r-sm);
	background: var(--ds-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: var(--ds-sh-blue);
	transition: background var(--ds-t), transform var(--ds-t);
}
.wp-block-file__button:hover,
.wp-block-file .wp-element-button:hover {
	background: var(--ds-blue-dark);
	transform: translateY(-1px);
	color: #fff;
}

@media (max-width: 700px) {
	.wp-block-file__embed { min-height: 420px; }
}

.gn-single-content img,
.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--ds-r-sm);
}

.gn-single-content table,
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14.5px;
}
.gn-single-content table th,
.entry-content table th {
	background: var(--ds-blue-light);
	color: var(--ds-text);
	font-weight: 700;
	text-align: left;
}
.gn-single-content table th,
.gn-single-content table td,
.entry-content table th,
.entry-content table td {
	border: 1px solid var(--ds-border);
	padding: 10px 12px;
}
.gn-single-content table tr:nth-child(even) td,
.entry-content table tr:nth-child(even) td {
	background: var(--ds-surface-2, #f8fafc);
}

.gn-single-content > *,
.entry-content > * {
	max-width: 100%;
}
.gn-single-content p,
.entry-content p {
	line-height: 1.75;
}

.gn-single-content blockquote,
.entry-content blockquote {
	border-left: 3px solid var(--ds-blue);
	background: var(--ds-blue-light);
	border-radius: 0 var(--ds-r-xs) var(--ds-r-xs) 0;
	margin: 20px 0;
	padding: 14px 18px;
	color: var(--ds-text);
}

.nk-contacts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 14px;
	margin: 0 0 40px;
}
.nk-contact-card {
	display: flex;
	gap: 14px;
	padding: 18px;
	background: var(--ds-surface);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r);
	box-shadow: var(--ds-sh-sm);
	transition: border-color var(--ds-t), box-shadow var(--ds-t);
}
.nk-contact-card:hover {
	border-color: var(--ds-blue);
	box-shadow: var(--ds-sh-blue);
}
.nk-contact-card__ico {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--ds-r-xs);
	background: var(--ds-blue-light);
	color: var(--ds-blue);
	font-size: 17px;
}
.nk-contact-card__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.nk-contact-card__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--ds-muted);
}
.nk-contact-card__body strong {
	font-size: 15px;
	font-weight: 600;
	color: var(--ds-text);
	line-height: 1.45;
}
.nk-contact-card__body a { color: var(--ds-blue); text-decoration: none; }
.nk-contact-card__body a:hover { text-decoration: underline; }
.nk-contact-card__note {
	font-size: 13px;
	color: var(--ds-muted);
	margin-top: 2px;
}

.nk-contacts__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--ds-text);
	letter-spacing: -.01em;
	margin: 0 0 16px;
}
.nk-contacts__text {
	color: var(--ds-text);
	line-height: 1.7;
}
.nk-contacts__text a { color: var(--ds-blue); }

.nk-map__addr {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0 0 14px;
	font-size: 14.5px;
	color: var(--ds-muted);
}
.nk-map__addr .fa { color: var(--ds-blue); }

.nk-map {
	margin: 0 0 16px;
	border-radius: var(--ds-r);
	overflow: hidden;
	border: 1px solid var(--ds-border);
	box-shadow: var(--ds-sh-sm);
}
.nk-map__link {
	position: relative;
	display: block;
	line-height: 0;
}
.nk-map__link img {
	width: 100%;
	height: auto;
	display: block;
}
.nk-map__overlay {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 15px;
	border-radius: var(--ds-r-pill, 999px);
	background: rgba(255, 255, 255, .95);
	color: var(--ds-blue);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	box-shadow: var(--ds-sh-sm);
	transition: background var(--ds-t), color var(--ds-t);
}
.nk-map__link:hover .nk-map__overlay {
	background: var(--ds-blue);
	color: #fff;
}

.nk-routes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 40px;
}
.nk-route-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: var(--ds-r-sm);
	background: var(--ds-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: var(--ds-sh-blue);
	transition: background var(--ds-t), transform var(--ds-t);
}
.nk-route-btn:hover {
	background: var(--ds-blue-dark);
	color: #fff;
	transform: translateY(-1px);
}
.nk-route-btn--ghost {
	background: var(--ds-surface);
	color: var(--ds-text);
	border: 1px solid var(--ds-border);
	box-shadow: none;
}
.nk-route-btn--ghost:hover {
	background: var(--ds-blue-light);
	color: var(--ds-blue);
	border-color: var(--ds-blue);
}

.gn-page .container > .nk-ds {
	width: 100%;
	max-width: var(--ds-container, 1240px);
	margin: 0 auto 60px;
	padding: 28px 16px 0;
	box-sizing: border-box;
}
.nk-ds {
	width: 100%;
	max-width: var(--ds-container, 1240px);
	margin: 0 auto 60px;
	padding: 28px 16px 0;
	box-sizing: border-box;
}
.nk-ds__head { margin-bottom: 22px; }
.nk-ds__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 27px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ds-text);
	margin: 0 0 6px;
}
.nk-ds__title .fa { color: var(--ds-blue); }
.nk-ds__sub { color: var(--ds-muted); margin: 0; font-size: 15px; }

.nk-ds__form {
	background: var(--ds-surface);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r);
	box-shadow: var(--ds-sh-sm);
	padding: 18px;
	margin-bottom: 20px;
}
.nk-ds__row { display: flex; gap: 10px; margin-bottom: 12px; }
.nk-ds__input {
	flex: 1;
	min-width: 0;
	padding: 12px 16px;
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r-sm);
	font: inherit;
	font-size: 15px;
	color: var(--ds-text);
	background: var(--ds-surface);
}
.nk-ds__input:focus {
	outline: none;
	border-color: var(--ds-blue);
	box-shadow: 0 0 0 3px var(--ds-blue-glow);
}
.nk-ds__submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: 0;
	border-radius: var(--ds-r-sm);
	background: var(--ds-blue);
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: var(--ds-sh-blue);
	transition: background var(--ds-t);
}
.nk-ds__submit:hover { background: var(--ds-blue-dark); }

.nk-ds__filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.nk-ds__select {
	padding: 9px 14px;
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r-pill, 999px);
	background: var(--ds-surface);
	font: inherit;
	font-size: 14px;
	color: var(--ds-text);
	cursor: pointer;
	max-width: 260px;
}
.nk-ds__select:focus { outline: none; border-color: var(--ds-blue); }
.nk-ds__reset {
	font-size: 14px;
	color: var(--ds-muted);
	text-decoration: none;
	padding: 9px 4px;
}
.nk-ds__reset:hover { color: var(--ds-blue); text-decoration: underline; }

.nk-ds__count {
	font-size: 14.5px;
	color: var(--ds-muted);
	margin-bottom: 14px;
	padding-left: 2px;
}
.nk-ds__count strong { color: var(--ds-text); }

.nk-ds__list {
	background: var(--ds-surface);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r);
	overflow: hidden;
	box-shadow: var(--ds-sh-sm);
}
.nk-ds__item {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 15px 18px;
	border-bottom: 1px solid var(--ds-border);
	text-decoration: none;
	transition: background var(--ds-t);
}
.nk-ds__item:last-child { border-bottom: 0; }
.nk-ds__item:hover { background: var(--ds-blue-light); }
.nk-ds__item-date {
	flex-shrink: 0;
	width: 88px;
	font-size: 13px;
	color: var(--ds-muted);
	font-variant-numeric: tabular-nums;
}
.nk-ds__item-title {
	flex: 1;
	font-size: 15px;
	font-weight: 500;
	color: var(--ds-text);
	line-height: 1.5;
}
.nk-ds__item-arr { color: var(--ds-faint, #94a3b8); flex-shrink: 0; }
.nk-ds__item:hover .nk-ds__item-arr { color: var(--ds-blue); }

.nk-ds__pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
}
.nk-ds__page {
	min-width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-r-xs);
	background: var(--ds-surface);
	color: var(--ds-text);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color var(--ds-t), background var(--ds-t);
}
.nk-ds__page:hover { border-color: var(--ds-blue); color: var(--ds-blue); }
.nk-ds__page.is-current {
	background: var(--ds-blue);
	border-color: var(--ds-blue);
	color: #fff;
}
.nk-ds__pager-info { margin-left: 8px; font-size: 13.5px; color: var(--ds-muted); }

.gh-nav {
	background: var(--ds-surface);
	border-bottom: 1px solid var(--ds-border);
	box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.gh-menu > li > a {
	position: relative;
	padding: 0 15px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--ds-text-2, #334155);
	letter-spacing: -.005em;
	transition: color .18s var(--ds-ease);
}

.gh-menu > li > a::after {
	content: "";
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: -1px;
	height: 2px;
	border-radius: 2px 2px 0 0;
	background: var(--ds-blue);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .22s var(--ds-ease);
}

.gh-menu > li > a:hover {
	color: var(--ds-blue);
}
.gh-menu > li > a:hover::after {
	transform: scaleX(1);
}

.gh-menu > li.current-menu-item > a,
.gh-menu > li.current_page_item > a,
.gh-menu > li.current-menu-parent > a,
.gh-menu > li.current-menu-ancestor > a {
	color: var(--ds-blue);
	font-weight: 600;
}
.gh-menu > li.current-menu-item > a::after,
.gh-menu > li.current_page_item > a::after,
.gh-menu > li.current-menu-parent > a::after,
.gh-menu > li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.gh-menu > li > a:focus-visible {
	outline: 2px solid var(--ds-blue);
	outline-offset: -4px;
	border-radius: var(--ds-r-xs);
}

.gh-nav-inner {
	gap: 2px;
}

@media (max-width: 640px) {
	:root { --ds-section-gap: 36px; }
	.gn-single-content table,
	.entry-content table { display: block; overflow-x: auto; }
	.nk-contacts__grid { grid-template-columns: 1fr; }
	.nk-routes .nk-route-btn { flex: 1 1 100%; justify-content: center; }
	.nk-ds__row { flex-direction: column; }
	.nk-ds__submit { justify-content: center; }
	.nk-ds__select { max-width: 100%; flex: 1 1 100%; }
	.nk-ds__item { flex-wrap: wrap; gap: 4px 12px; }
	.nk-ds__item-date { width: auto; }
}

.nk-pos {
	margin: 0 0 22px;
	padding: 20px 22px;
	background: linear-gradient(135deg, #eef4ff 0%, #f7fbff 100%);
	border: 1px solid #cfe0f7;
	border-left: 4px solid #0d4cd3;
	border-radius: 10px;
}

.nk-pos__label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: #0d4cd3;
}

.nk-pos__text {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.6;
	color: #1f2937;
}

.nk-pos__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 22px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	background: #0d4cd3;
	border-radius: 8px;
	transition: background .15s ease;
}

.nk-pos__btn:hover,
.nk-pos__btn:focus {
	background: #1d5deb;
	color: #fff;
}

@media (max-width: 600px) {
	.nk-pos {
		padding: 16px;
	}

	.nk-pos__btn {
		width: 100%;
		justify-content: center;
	}
}

.nk-leaders {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
	margin-bottom: 26px;
}

.nk-leader {
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #e3e8ef;
	border-radius: 10px;
}

.nk-leader__role {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: #64748b;
}

.nk-leader__name {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.3;
	color: #0f172a;
}

.nk-leader__note {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #475569;
}

.nk-leader__link {
	font-size: 14px;
	font-weight: 600;
	color: #1a56db;
	text-decoration: none;
}

.nk-leader__link:hover {
	text-decoration: underline;
}

.nk-req {
	margin-bottom: 8px;
	overflow: hidden;
	border: 1px solid #e3e8ef;
	border-radius: 10px;
}

.nk-req__row {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
	padding: 12px 18px;
	border-bottom: 1px solid #eef2f7;
}

.nk-req__row:last-child {
	border-bottom: 0;
}

.nk-req__row:nth-child(odd) {
	background: #fafbfc;
}

.nk-req__k {
	flex: 0 0 210px;
	font-size: 14px;
	color: #64748b;
}

.nk-req__v {
	flex: 1 1 240px;
	font-size: 15px;
	font-weight: 600;
	color: #0f172a;
}

@media (max-width: 600px) {
	.nk-req__k {
		flex-basis: 100%;
		font-size: 13px;
	}

	.nk-req__row {
		padding: 10px 14px;
	}
}

.gp2-nav-link,
.gp2-nav-link:link,
.gp2-nav-link:visited,
.gp2-nav-link:active {
	color: var(--gp2-muted, #64748b);
}

.gp2-nav-link:hover,
.gp2-nav-link:focus,
.gp2-nav-link:hover:visited {
	color: var(--gp2-indigo, #4f46e5);
}
