/* ==========================================================================
   Nuvapaws — professional pet utility platform styles
   Deep teal primary • Warm orange CTAs • Clean white + soft backgrounds
   Poppins headings • Inter body • Rounded cards • Light shadows
   ========================================================================== */

:root {
	--nv-bg: #ffffff;
	--nv-bg-soft: #f5faf9;
	--nv-bg-softer: #fbfdfd;
	--nv-ink: #0e2429;
	--nv-body: #4a5d60;
	--nv-muted: #708285;
	--nv-primary: #0b6b66;
	--nv-primary-dark: #08504c;
	--nv-primary-deep: #0a3f3c;
	--nv-primary-bright: #12938b;
	--nv-primary-soft: #e3f2f0;
	--nv-accent: #f97316;
	--nv-accent-dark: #dd5c08;
	--nv-accent-soft: #fef0e3;
	--nv-border: #e2ecea;
	--nv-footer: #0b2f2d;
	--nv-radius: 16px;
	--nv-shadow-sm: 0 1px 3px rgba(14, 36, 41, 0.05), 0 6px 20px rgba(14, 36, 41, 0.05);
	--nv-shadow-md: 0 12px 34px rgba(14, 36, 41, 0.12);
	--nv-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--nv-font-head: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--nv-bg);
	color: var(--nv-body);
	font-family: var(--nv-font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nv-font-head);
	color: var(--nv-ink);
	line-height: 1.25;
	margin: 0 0 0.5em;
	font-weight: 700;
	overflow-wrap: break-word;
}

p {
	margin: 0 0 1em;
	overflow-wrap: break-word;
}

a {
	color: var(--nv-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--nv-accent-dark);
}

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

iframe,
video,
embed,
object {
	max-width: 100%;
}

button {
	font-family: var(--nv-font-body);
}

:focus-visible {
	outline: 3px solid rgba(11, 107, 102, 0.5);
	outline-offset: 2px;
	border-radius: 4px;
}

::selection {
	background: var(--nv-primary);
	color: #fff;
}

.nv-page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 100%;
	overflow-x: clip;
}

.nv-page > main,
.nv-layout,
.nv-content-narrow,
.nv-content-wide {
	flex: 1 0 auto;
}

.nv-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Reveal animation ---------- */

.nv-fade {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.nv-fade.nv-in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.nv-fade {
		opacity: 1;
		transform: none;
		transition: none;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------- Accessibility ---------- */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--nv-bg);
	clip: auto !important;
	clip-path: none;
	color: var(--nv-ink);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	width: auto;
	left: 8px;
	top: 8px;
	line-height: normal;
	padding: 14px 20px;
	text-decoration: none;
	z-index: 100000;
	border-radius: 10px;
	box-shadow: var(--nv-shadow-md);
}

.nv-skip-link {
	z-index: 100001;
}

/* ---------- Topbar ---------- */

.nv-topbar {
	background: var(--nv-primary-deep);
	color: #cfe7e4;
	font-size: 13px;
}

.nv-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
}

.nv-topbar-msg {
	font-weight: 600;
	letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nv-topbar-side {
	opacity: 0.85;
	white-space: nowrap;
}

/* ---------- Header ---------- */

.nv-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, 0.94);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--nv-border);
	transition: box-shadow 0.25s ease;
}

.nv-header.is-stuck {
	box-shadow: 0 6px 24px rgba(14, 36, 41, 0.08);
}

.nv-header-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 76px;
	position: relative;
}

.nv-brand {
	margin-right: auto;
	min-width: 0;
}

.nv-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.nv-brand .custom-logo {
	max-height: 52px;
	width: auto;
}

.nv-brand-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: inherit;
	min-width: 0;
}

.nv-brand-mark {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--nv-primary), var(--nv-primary-bright));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(11, 107, 102, 0.28);
}

.nv-brand-text {
	display: inline-flex;
	flex-direction: column;
	min-width: 0;
}

.nv-brand-name {
	font-family: var(--nv-font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--nv-ink);
	letter-spacing: -0.01em;
	line-height: 1.15;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 44vw;
}

.nv-brand-tag {
	font-size: 12px;
	color: var(--nv-muted);
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 44vw;
}

/* Nav */

.nv-nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nv-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nv-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 10px;
	color: var(--nv-ink);
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
}

.nv-menu a:hover {
	background: var(--nv-primary-soft);
	color: var(--nv-primary-dark);
}

.nv-menu .current-menu-item > a,
.nv-menu .current_page_item > a {
	color: var(--nv-primary-dark);
	background: var(--nv-primary-soft);
}

.nv-menu li {
	position: relative;
}

.nv-menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: 14px;
	box-shadow: var(--nv-shadow-md);
	padding: 8px;
	list-style: none;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 950;
}

.nv-menu li:hover > .sub-menu,
.nv-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nv-menu .sub-menu a {
	padding: 9px 12px;
	font-size: 14px;
	border-radius: 9px;
}

.nv-header-cta {
	flex: 0 0 auto;
	padding: 11px 20px;
	font-size: 14.5px;
}

/* Mobile toggle */

.nv-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	border: 1.5px solid var(--nv-border);
	background: #fff;
	cursor: pointer;
	padding: 0;
}

.nv-nav-burger,
.nv-nav-burger::before,
.nv-nav-burger::after {
	content: "";
	display: block;
	width: 22px;
	height: 2.4px;
	border-radius: 2px;
	background: var(--nv-ink);
	transition: transform 0.25s ease, opacity 0.2s ease;
	position: relative;
}

.nv-nav-burger::before {
	position: absolute;
	top: -7px;
}

.nv-nav-burger::after {
	position: absolute;
	top: 7px;
}

.nv-header.nv-nav-open .nv-nav-burger {
	background: transparent;
}

.nv-header.nv-nav-open .nv-nav-burger::before {
	transform: translateY(7px) rotate(45deg);
}

.nv-header.nv-nav-open .nv-nav-burger::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */

.nv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 12px;
	font-family: var(--nv-font-head);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nv-btn:hover {
	transform: translateY(-2px);
}

.nv-btn:active {
	transform: translateY(0);
}

.nv-btn-primary {
	background: var(--nv-primary);
	color: #fff;
	box-shadow: 0 8px 20px rgba(11, 107, 102, 0.25);
}

.nv-btn-primary:hover {
	background: var(--nv-primary-dark);
	color: #fff;
}

.nv-btn-accent {
	background: var(--nv-accent);
	color: #fff;
	box-shadow: 0 8px 20px rgba(249, 115, 22, 0.28);
}

.nv-btn-accent:hover {
	background: var(--nv-accent-dark);
	color: #fff;
}

.nv-btn-ghost {
	background: #fff;
	color: var(--nv-primary-dark);
	border: 1.5px solid var(--nv-border);
	box-shadow: var(--nv-shadow-sm);
}

.nv-btn-ghost:hover {
	border-color: var(--nv-primary);
	color: var(--nv-primary-dark);
}

.nv-btn-lg {
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 14px;
}

/* ---------- Hero ---------- */

.nv-hero {
	background:
		radial-gradient(900px 420px at 90% -10%, rgba(18, 147, 139, 0.12), transparent 60%),
		radial-gradient(700px 320px at -10% 110%, rgba(249, 115, 22, 0.07), transparent 60%),
		linear-gradient(180deg, #ffffff 0%, var(--nv-bg-soft) 100%);
	padding: 64px 0 72px;
	border-bottom: 1px solid var(--nv-border);
	overflow: hidden;
}

.nv-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.nv-hero-copy {
	max-width: 600px;
}

.nv-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--nv-primary-soft);
	border: 1px solid rgba(11, 107, 102, 0.25);
	color: var(--nv-primary-dark);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 20px;
}

.nv-hero-title {
	font-size: clamp(32px, 4.6vw, 52px);
	line-height: 1.12;
	letter-spacing: -0.02em;
	font-weight: 700;
	margin: 0 0 18px;
	text-wrap: balance;
}

.nv-hero-text {
	color: var(--nv-body);
	font-size: clamp(16px, 2vw, 18.5px);
	line-height: 1.7;
	max-width: 540px;
	margin: 0 0 28px;
}

.nv-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
}

.nv-hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	color: var(--nv-muted);
	font-size: 14px;
	font-weight: 600;
}

.nv-hero-proof span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.nv-hero-art {
	position: relative;
	display: flex;
	justify-content: center;
}

.nv-hero-art img {
	width: min(560px, 100%);
	height: auto;
	filter: drop-shadow(0 24px 40px rgba(11, 107, 102, 0.18));
}

.nv-hero-chip {
	position: absolute;
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: 14px;
	box-shadow: var(--nv-shadow-md);
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 700;
	color: var(--nv-ink);
	animation: nv-float 5s ease-in-out infinite;
}

.nv-hero-chip-1 {
	top: 8%;
	left: -2%;
}

.nv-hero-chip-2 {
	bottom: 10%;
	right: 0;
	animation-delay: 2.4s;
}

@keyframes nv-float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* ---------- Ad slots ---------- */

.nv-ad-slot {
	max-width: 1140px;
	margin: 26px auto;
	padding: 0 24px;
	text-align: center;
	overflow: hidden;
	min-width: 0;
}

.nv-ad-slot:empty {
	display: none;
}

/* ---------- Trust strip ---------- */

.nv-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin: 46px 0 10px;
}

.nv-trust-item {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	padding: 24px 22px;
	box-shadow: var(--nv-shadow-sm);
	text-align: center;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nv-trust-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--nv-shadow-md);
}

.nv-trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--nv-primary-soft);
	font-size: 24px;
	margin-bottom: 14px;
}

.nv-trust-item h3 {
	font-size: 16.5px;
	margin-bottom: 6px;
}

.nv-trust-item p {
	font-size: 14px;
	color: var(--nv-muted);
	margin: 0;
}

/* ---------- Sections / headings ---------- */

.nv-main {
	padding: 44px 0 72px;
}

.nv-section {
	margin: 40px 0 8px;
}

.nv-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 44px 0 26px;
	flex-wrap: wrap;
}

.nv-section-title {
	font-size: clamp(22px, 3vw, 30px);
	margin: 0;
	position: relative;
	padding-left: 18px;
}

.nv-section-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8%;
	bottom: 8%;
	width: 5px;
	border-radius: 3px;
	background: var(--nv-accent);
}

.nv-section-link {
	font-weight: 700;
	font-size: 15px;
	color: var(--nv-primary);
}

.nv-section-link:hover {
	color: var(--nv-accent-dark);
}

.nv-archive-head {
	margin: 6px 0 32px;
}

.nv-archive-title {
	font-size: clamp(26px, 4vw, 38px);
	margin: 0 0 8px;
}

.nv-archive-title span {
	color: var(--nv-primary);
}

.nv-archive-desc {
	color: var(--nv-muted);
	max-width: 720px;
}

/* ---------- Cards ---------- */

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

.nv-grid-tools {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nv-card {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	overflow: hidden;
	box-shadow: var(--nv-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	min-width: 0;
	color: inherit;
}

.nv-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--nv-shadow-md);
	border-color: #cfe5e1;
}

a.nv-card {
	text-decoration: none;
}

.nv-card-media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--nv-bg-soft);
	position: relative;
}

.nv-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.nv-card:hover .nv-card-media img {
	transform: scale(1.06);
}

.nv-card-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--nv-primary);
	opacity: 0.5;
}

.nv-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1 0 auto;
	min-width: 0;
}

.nv-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--nv-primary-soft), #fff);
	border: 1px solid var(--nv-border);
	font-size: 25px;
	margin-bottom: 4px;
}

.nv-card-cat {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--nv-primary-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid var(--nv-border);
}

.nv-card-tool {
	position: relative;
	padding: 24px 22px;
	gap: 4px;
}

.nv-card-title {
	font-size: 18px;
	line-height: 1.35;
	margin: 0;
	overflow-wrap: break-word;
}

.nv-card-title a {
	color: var(--nv-ink);
}

.nv-card-title a:hover {
	color: var(--nv-primary);
}

.nv-card-text,
.nv-card-excerpt {
	color: var(--nv-muted);
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0;
}

.nv-card-link {
	margin-top: auto;
	padding-top: 12px;
	font-weight: 700;
	font-size: 14px;
	color: var(--nv-accent-dark);
}

.nv-card-tool:hover .nv-card-link {
	color: var(--nv-accent);
}

.nv-chip {
	align-self: flex-start;
	background: var(--nv-accent-soft);
	color: var(--nv-accent-dark);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 999px;
	line-height: 1.4;
}

.nv-chip:hover {
	background: var(--nv-accent);
	color: #fff;
}

.nv-card-meta {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px dashed var(--nv-border);
	color: var(--nv-muted);
	font-size: 13px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.nv-card.nv-hidden {
	display: none;
}

/* ---------- Hub filters ---------- */

.nv-hub-head {
	margin-bottom: 26px;
}

.nv-hub-head .nv-page-title {
	margin-bottom: 10px;
}

.nv-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
}

.nv-filter {
	border: 1.5px solid var(--nv-border);
	background: #fff;
	color: var(--nv-ink);
	font-size: 14px;
	font-weight: 600;
	padding: 9px 18px;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nv-filter:hover {
	border-color: var(--nv-primary);
	color: var(--nv-primary-dark);
}

.nv-filter.is-active {
	background: var(--nv-primary);
	border-color: var(--nv-primary);
	color: #fff;
	box-shadow: 0 6px 16px rgba(11, 107, 102, 0.25);
}

.nv-tools-note {
	margin-top: 30px;
	background: var(--nv-bg-soft);
	border: 1px solid var(--nv-border);
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 13.5px;
	color: var(--nv-muted);
}

/* ---------- Pagination ---------- */

.pagination,
.navigation.pagination {
	margin-top: 44px;
	text-align: center;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--nv-border);
	font-weight: 700;
	font-size: 15px;
	color: var(--nv-ink);
}

a.page-numbers:hover {
	border-color: var(--nv-primary);
	color: var(--nv-primary);
}

.nav-links .page-numbers.current {
	background: var(--nv-primary);
	border-color: var(--nv-primary);
	color: #fff;
}

/* ---------- Empty / 404 ---------- */

.nv-empty {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	padding: 60px 28px;
	text-align: center;
	box-shadow: var(--nv-shadow-sm);
}

.nv-empty p {
	color: var(--nv-muted);
}

.nv-empty .nv-search-form {
	max-width: 430px;
	margin: 18px auto 22px;
}

.nv-404-paw {
	font-size: 64px;
	line-height: 1;
	margin-bottom: 14px;
}

.nv-404-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ---------- Layout ---------- */

.nv-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 38px;
	align-items: start;
	padding-top: 40px;
	padding-bottom: 72px;
}

.nv-content {
	min-width: 0;
}

.nv-content-narrow {
	max-width: 900px;
	padding-top: 40px;
	padding-bottom: 72px;
}

.nv-content-wide {
	max-width: 1120px;
	padding-top: 40px;
	padding-bottom: 72px;
}

/* ---------- Breadcrumbs ---------- */

.nv-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--nv-muted);
	margin-bottom: 20px;
}

.nv-crumbs a {
	color: var(--nv-muted);
	font-weight: 600;
}

.nv-crumbs a:hover {
	color: var(--nv-primary);
}

.nv-crumbs [aria-current] {
	color: var(--nv-ink);
	font-weight: 600;
}

/* ---------- Articles ---------- */

.nv-article {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	padding: 40px 44px;
	box-shadow: var(--nv-shadow-sm);
	min-width: 0;
}

.nv-article-head {
	margin-bottom: 24px;
}

.nv-article-head .nv-chip {
	display: inline-block;
	margin-bottom: 14px;
}

.nv-article-title,
.nv-page-title {
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.18;
	letter-spacing: -0.015em;
	margin: 0 0 16px;
	overflow-wrap: break-word;
}

.nv-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	color: var(--nv-muted);
	font-size: 14px;
}

.nv-meta-author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--nv-ink);
}

.nv-meta-author img,
.nv-author-avatar img {
	border-radius: 50%;
	display: block;
}

.nv-article-thumb {
	margin-bottom: 26px;
}

.nv-article-thumb img {
	border-radius: 14px;
	width: 100%;
	display: block;
}

/* Entry content */

.entry-content {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--nv-body);
	min-width: 0;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2 {
	font-size: 26px;
	margin: 1.7em 0 0.6em;
}

.entry-content h3 {
	font-size: 21px;
	margin: 1.6em 0 0.5em;
}

.entry-content h4 {
	font-size: 18px;
	margin: 1.5em 0 0.5em;
}

.entry-content a {
	color: var(--nv-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1.5px;
}

.entry-content a:hover {
	color: var(--nv-accent-dark);
}

.entry-content p {
	margin: 0 0 1.15em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4em;
	margin: 0 0 1.15em;
}

.entry-content li {
	margin: 0.35em 0;
}

.entry-content img {
	border-radius: 12px;
}

.entry-content blockquote {
	margin: 1.4em 0;
	padding: 16px 22px;
	border-left: 4px solid var(--nv-accent);
	background: var(--nv-accent-soft);
	border-radius: 0 14px 14px 0;
	font-style: italic;
	color: var(--nv-ink);
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content pre {
	background: #0e2429;
	color: #dff0ee;
	padding: 18px 20px;
	border-radius: 12px;
	overflow: auto;
	font-size: 14px;
	line-height: 1.6;
	max-width: 100%;
}

.entry-content code {
	background: var(--nv-primary-soft);
	color: var(--nv-primary-dark);
	padding: 2px 7px;
	border-radius: 6px;
	font-size: 0.9em;
}

.entry-content pre code {
	background: transparent;
	color: inherit;
	padding: 0;
}

.entry-content table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	margin: 1.3em 0;
	display: block;
	overflow-x: auto;
	font-size: 15px;
}

.entry-content th,
.entry-content td {
	border-bottom: 1px solid var(--nv-border);
	padding: 10px 12px;
	text-align: left;
}

.entry-content th {
	background: var(--nv-primary-soft);
	color: var(--nv-primary-dark);
	font-weight: 700;
}

.entry-content hr {
	border: none;
	border-top: 2px dashed var(--nv-border);
	margin: 2em 0;
}

.page-links {
	margin-top: 20px;
	font-weight: 700;
}

.entry-content .wp-block-button__link,
.entry-content .wp-block-button a {
	background: var(--nv-primary);
	color: #fff;
	border-radius: 12px;
	padding: 12px 26px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
}

.entry-content .wp-block-button__link:hover {
	background: var(--nv-primary-dark);
	color: #fff;
}

.entry-content figure {
	margin: 1.4em 0;
	max-width: 100%;
}

.entry-content figcaption,
.wp-caption-text {
	font-size: 13.5px;
	color: var(--nv-muted);
	text-align: center;
	margin-top: 8px;
}

.entry-content .aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.entry-content .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 10px;
	margin: 1.4em 0;
}

.entry-content .gallery img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

/* Tags / author / post nav */

.nv-article-foot {
	margin-top: 26px;
}

.nv-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nv-tags a {
	background: var(--nv-primary-soft);
	color: var(--nv-primary-dark);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
}

.nv-tags a:hover {
	background: var(--nv-primary);
	color: #fff;
}

.nv-author-box {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	padding: 24px;
	margin-top: 26px;
	box-shadow: var(--nv-shadow-sm);
}

.nv-author-avatar {
	flex: 0 0 auto;
}

.nv-author-avatar img {
	width: 64px;
	height: 64px;
}

.nv-author-name {
	margin: 0 0 6px;
	font-size: 18px;
}

.nv-author-bio {
	color: var(--nv-muted);
	font-size: 14.5px;
	margin: 0 0 8px;
}

.nv-author-link {
	font-weight: 700;
	font-size: 14px;
}

.nv-post-nav {
	margin-top: 26px;
}

.nv-post-nav .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	justify-items: stretch;
}

.nv-post-nav .nav-previous,
.nv-post-nav .nav-next {
	min-width: 0;
}

.nv-post-nav a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: 14px;
	padding: 18px 20px;
	box-shadow: var(--nv-shadow-sm);
	height: 100%;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.nv-post-nav a:hover {
	border-color: var(--nv-primary);
	transform: translateY(-2px);
}

.nv-post-nav .nav-next {
	text-align: right;
}

.nv-nav-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--nv-muted);
}

.nv-nav-title {
	font-weight: 700;
	color: var(--nv-ink);
	overflow-wrap: break-word;
	font-family: var(--nv-font-head);
}

.nv-post-nav a:hover .nv-nav-title {
	color: var(--nv-primary);
}

/* ---------- Tool page sections ---------- */

.nv-explain,
.nv-faq-section,
.nv-related {
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid var(--nv-border);
}

.nv-explain-title {
	font-size: 22px;
	margin-bottom: 14px;
	position: relative;
	padding-left: 16px;
}

.nv-explain-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10%;
	bottom: 10%;
	width: 4px;
	border-radius: 2px;
	background: var(--nv-accent);
}

.nv-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nv-faq-item {
	background: var(--nv-bg-softer);
	border: 1px solid var(--nv-border);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nv-faq-item[open] {
	border-color: #cfe5e1;
	box-shadow: var(--nv-shadow-sm);
}

.nv-faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 16px 20px;
	font-weight: 600;
	color: var(--nv-ink);
	font-family: var(--nv-font-head);
	font-size: 15.5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.nv-faq-item summary::-webkit-details-marker {
	display: none;
}

.nv-faq-item summary::after {
	content: "+";
	font-size: 22px;
	font-weight: 600;
	color: var(--nv-accent);
	line-height: 1;
	transition: transform 0.25s ease;
	flex: 0 0 auto;
}

.nv-faq-item[open] summary::after {
	transform: rotate(45deg);
}

.nv-faq-body {
	padding: 0 20px 18px;
	color: var(--nv-body);
	font-size: 15px;
	animation: nv-faq-in 0.3s ease;
}

.nv-faq-body p {
	margin: 0;
}

@keyframes nv-faq-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* ---------- Pet tools (interactive cards) ---------- */

.nv-tool-card {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	box-shadow: var(--nv-shadow-sm);
	overflow: hidden;
	margin: 26px 0 10px;
	min-width: 0;
}

.nv-tool-top {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 22px 26px;
	background: linear-gradient(120deg, var(--nv-primary-soft), #ffffff);
	border-bottom: 1px solid var(--nv-border);
}

.nv-tool-icon {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	border-radius: 16px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 27px;
	box-shadow: var(--nv-shadow-sm);
}

.nv-tool-headline {
	min-width: 0;
}

.nv-tool-name {
	font-size: 20px;
	margin: 0;
}

.nv-tool-sub {
	color: var(--nv-muted);
	font-size: 14px;
	margin: 4px 0 0;
	line-height: 1.5;
}

.nv-tool-body {
	padding: 24px 26px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.nv-field-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
}

.nv-field {
	min-width: 0;
}

.nv-field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--nv-ink);
	margin-bottom: 6px;
}

.nv-field input,
.nv-field select {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--nv-border);
	border-radius: 12px;
	font: inherit;
	font-size: 15px;
	background: #fff;
	color: var(--nv-ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nv-field input:focus,
.nv-field select:focus {
	outline: none;
	border-color: var(--nv-primary);
	box-shadow: 0 0 0 3px rgba(11, 107, 102, 0.14);
}

.nv-tool-actions {
	display: flex;
}

.nv-tool-result {
	display: none;
	background: var(--nv-bg-soft);
	border: 1.5px dashed var(--nv-primary);
	border-radius: 14px;
	padding: 18px 20px;
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--nv-ink);
	overflow-wrap: break-word;
	animation: nv-faq-in 0.3s ease;
}

.nv-tool-result strong {
	color: var(--nv-primary-dark);
}

.nv-tool-note {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	color: var(--nv-muted);
}

.nv-result-list {
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nv-result-list li {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 14px;
}

.nv-result-list li span:last-child {
	font-weight: 700;
	color: var(--nv-primary-dark);
	white-space: nowrap;
}

.nv-name-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.nv-name-chip {
	background: #fff;
	border: 1.5px solid var(--nv-accent);
	color: var(--nv-accent-dark);
	font-weight: 700;
	font-size: 14px;
	padding: 8px 15px;
	border-radius: 999px;
}

.nv-breed-results {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.nv-breed-item {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: 12px;
	padding: 14px 16px;
}

.nv-breed-item strong {
	display: block;
	color: var(--nv-ink);
	font-family: var(--nv-font-head);
	margin-bottom: 4px;
}

.nv-breed-item span {
	font-size: 13px;
	color: var(--nv-muted);
}

/* ---------- Sidebar & widgets ---------- */

.nv-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.widget {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	padding: 22px;
	box-shadow: var(--nv-shadow-sm);
	min-width: 0;
	overflow-wrap: break-word;
}

.widget-title {
	font-size: 15px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--nv-primary-dark);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--nv-primary-soft);
}

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

.widget ul li {
	padding: 9px 0;
	border-bottom: 1px dashed var(--nv-border);
	font-size: 14.5px;
}

.widget ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.widget ul a {
	color: var(--nv-ink);
	font-weight: 600;
}

.widget ul a:hover {
	color: var(--nv-primary);
}

.widget select,
.widget input[type="text"],
.widget input[type="email"],
.widget input[type="url"],
.widget input[type="number"] {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--nv-border);
	border-radius: 12px;
	font: inherit;
	background: #fff;
	color: var(--nv-ink);
}

@media (min-width: 1025px) {
	.nv-sidebar {
		position: sticky;
		top: 96px;
	}
}

/* ---------- Search form ---------- */

.nv-search-form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	min-width: 0;
}

.nv-search-input {
	flex: 1 1 140px;
	min-width: 0;
	padding: 11px 18px;
	border: 1.5px solid var(--nv-border);
	border-radius: 12px;
	font: inherit;
	font-size: 15px;
	background: #fff;
	color: var(--nv-ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nv-search-input:focus {
	outline: none;
	border-color: var(--nv-primary);
	box-shadow: 0 0 0 3px rgba(11, 107, 102, 0.14);
}

.nv-search-btn {
	padding: 11px 20px;
	border: none;
	border-radius: 12px;
	background: var(--nv-primary);
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.18s ease;
}

.nv-search-btn:hover {
	background: var(--nv-primary-dark);
	transform: translateY(-1px);
}

/* ---------- Comments ---------- */

.nv-comments {
	background: #fff;
	border: 1px solid var(--nv-border);
	border-radius: var(--nv-radius);
	padding: 30px;
	margin-top: 26px;
	box-shadow: var(--nv-shadow-sm);
}

.nv-comments-title {
	font-size: 22px;
	margin-bottom: 18px;
}

.nv-comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nv-comment-list .comment {
	padding: 18px 0;
	border-top: 1px solid var(--nv-border);
}

.nv-comment-list .children {
	list-style: none;
	margin: 10px 0 0 24px;
	padding: 0 0 0 18px;
	border-left: 2px solid var(--nv-primary-soft);
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-weight: 700;
	color: var(--nv-ink);
}

.comment-author img {
	border-radius: 50%;
}

.comment-metadata {
	font-size: 13px;
	margin: 4px 0 8px;
}

.comment-metadata a {
	color: var(--nv-muted);
}

.comment-content {
	font-size: 15px;
}

.reply {
	margin-top: 6px;
}

.reply a {
	font-size: 13px;
	font-weight: 700;
	color: var(--nv-primary);
}

.nv-comments-closed {
	color: var(--nv-muted);
	font-style: italic;
}

.comment-form label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: var(--nv-ink);
	margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--nv-border);
	border-radius: 12px;
	font: inherit;
	background: #fff;
	color: var(--nv-ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--nv-primary);
	box-shadow: 0 0 0 3px rgba(11, 107, 102, 0.14);
}

.comment-form .submit {
	background: var(--nv-accent);
	color: #fff;
	border: none;
	padding: 13px 30px;
	border-radius: 12px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.18s ease;
}

.comment-form .submit:hover {
	background: var(--nv-accent-dark);
	transform: translateY(-2px);
}

.comment-notes,
.logged-in-as {
	font-size: 14px;
	color: var(--nv-muted);
}

/* ---------- Footer ---------- */

.nv-footer {
	background: var(--nv-footer);
	color: #c4dad7;
	margin-top: auto;
}

.nv-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 36px;
	padding: 60px 0 44px;
}

.nv-footer .widget {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	color: inherit;
}

.nv-footer .widget-title,
.nv-footer-col > .widget-title {
	color: #fff;
	font-size: 15px;
	border-bottom: none;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 16px;
}

.nv-footer .widget-title::after,
.nv-footer-col > .widget-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 3px;
	border-radius: 2px;
	background: var(--nv-accent);
}

.nv-footer p {
	font-size: 14.5px;
	line-height: 1.7;
}

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

.nv-footer ul li {
	padding: 6px 0;
	font-size: 14.5px;
}

.nv-footer ul a {
	color: #c4dad7;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.nv-footer ul a:hover {
	color: #fff;
	padding-left: 4px;
}

.nv-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 22px 0;
}

.nv-footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	font-size: 13.5px;
}

.nv-copyright {
	margin: 0;
	color: #93b1ad;
}

.nv-disclaimer {
	margin: 0;
	color: #7d9c98;
	max-width: 520px;
}

.nv-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nv-footer-menu a {
	color: #c4dad7;
	font-weight: 600;
}

.nv-footer-menu a:hover {
	color: #fff;
}

/* ---------- Back to top ---------- */

.nv-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	border: none;
	background: var(--nv-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(8, 80, 76, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s ease;
	z-index: 800;
}

.nv-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nv-to-top:hover {
	background: var(--nv-accent);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
	.nv-grid-tools {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

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

	.nv-grid-tools,
	.nv-grid-related {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nv-layout {
		grid-template-columns: 1fr;
	}

	.nv-sidebar {
		position: static;
	}

	.nv-article {
		padding: 32px 28px;
	}

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

	.nv-hero-grid {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}

	.nv-hero-copy {
		margin: 0 auto;
	}

	.nv-hero-actions,
	.nv-hero-proof {
		justify-content: center;
	}
}

@media (max-width: 920px) {
	.nv-nav-toggle {
		display: inline-flex;
		order: 3;
	}

	.nv-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		background: #fff;
		border-top: 1px solid var(--nv-border);
		border-bottom: 1px solid var(--nv-border);
		box-shadow: 0 18px 30px rgba(14, 36, 41, 0.12);
		padding: 18px 22px 24px;
		max-height: calc(100vh - 112px);
		overflow-y: auto;
	}

	.nv-header.nv-nav-open .nv-nav {
		display: flex;
	}

	.nv-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		width: 100%;
	}

	.nv-menu a {
		white-space: normal;
		padding: 12px 14px;
	}

	.nv-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: transparent;
		padding: 2px 0 2px 16px;
		display: flex;
	}

	.nv-header-cta {
		justify-content: center;
	}

	.nv-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.nv-topbar-side {
		display: none;
	}
}

@media (max-width: 640px) {
	.nv-container {
		padding: 0 16px;
	}

	.nv-grid,
	.nv-grid-tools,
	.nv-grid-related {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.nv-hero {
		padding: 44px 0 52px;
	}

	.nv-main {
		padding: 30px 0 52px;
	}

	.nv-layout,
	.nv-content-narrow,
	.nv-content-wide {
		padding-top: 28px;
		padding-bottom: 52px;
	}

	.nv-article {
		padding: 24px 18px;
	}

	.nv-trust {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 32px;
	}

	.nv-post-nav .nav-links {
		grid-template-columns: 1fr;
	}

	.nv-footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 44px 0 32px;
	}

	.nv-footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.nv-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.nv-brand-name,
	.nv-brand-tag {
		max-width: 54vw;
	}

	.nv-hero-chip-1 {
		left: 0;
	}

	.nv-tool-top,
	.nv-tool-body {
		padding-left: 18px;
		padding-right: 18px;
	}
}
