:root {
	--zv-brand: #ff5e00;
	--zv-brand-dark: #e05300;
	--zv-ink: #14110f;
	--zv-ink-soft: #2b2b2b;
	--zv-muted: #6b6b6b;
	--zv-muted-light: #929292;
	--zv-surface: #f6f6f4;
	--zv-line: #ececec;
	--zv-container: 1200px;
	--zv-radius: 10px;
	--zv-shadow: 0 12px 34px rgba(20, 17, 15, 0.08);
}

.zedvance-editorial-theme,
.zedvance-editorial-theme button,
.zedvance-editorial-theme input,
.zedvance-editorial-theme select,
.zedvance-editorial-theme textarea {
	font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.zedvance-editorial-theme {
	margin: 0;
	background: #fff;
	color: var(--zv-ink);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.zedvance-editorial-theme *,
.zedvance-editorial-theme *::before,
.zedvance-editorial-theme *::after {
	box-sizing: border-box;
}

.zedvance-editorial-theme a {
	color: inherit;
	text-decoration: none;
}

.zedvance-editorial-theme img {
	display: block;
	max-width: 100%;
}

.zedvance-editorial-theme h1,
.zedvance-editorial-theme h2,
.zedvance-editorial-theme h3,
.zedvance-editorial-theme h4 {
	margin: 0;
	color: var(--zv-ink);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.zv-container {
	width: 100%;
	max-width: var(--zv-container);
	margin-inline: auto;
	padding-inline: 24px;
}

.zv-container--narrow {
	max-width: 808px;
}

.zv-main {
	min-height: 55vh;
	background: #fff;
}

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

.zv-skip-link:focus {
	position: fixed;
	z-index: 100;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: #fff;
	color: var(--zv-ink);
	box-shadow: var(--zv-shadow);
}

.zv-button {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 24px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.zv-button--primary {
	background: var(--zv-brand);
	color: #fff !important;
}

.zv-button:focus-visible,
.zv-icon-button:focus-visible,
.zv-menu-toggle:focus-visible,
.zv-nav a:focus-visible,
.zv-card__link:focus-visible,
.zv-see-all:focus-visible,
.zv-footer a:focus-visible {
	outline: 3px solid rgba(255, 94, 0, 0.36);
	outline-offset: 4px;
}

@media (hover: hover) {
	.zv-button--primary:hover {
		background: var(--zv-brand-dark);
		color: #fff;
		transform: translateY(-1px);
	}
}

/* Header */
.zv-header {
	position: sticky;
	z-index: 40;
	top: 0;
	isolation: isolate;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
}

.admin-bar .zv-header {
	top: 32px;
}

.zv-header__utility {
	background: var(--zv-brand);
	color: #fff;
}

.zv-header__utility-inner {
	display: flex;
	height: 36px;
	align-items: center;
	justify-content: space-between;
}

.zv-header__main {
	display: grid;
	height: 82px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
}

.zv-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.zv-logo img {
	width: 146px;
	height: auto;
}

.zv-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zv-header-search {
	position: relative;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	transition: width 180ms ease-out;
}

.zv-header-search.is-open {
	width: min(340px, calc(100vw - 280px));
	flex-basis: min(340px, calc(100vw - 280px));
}

.zv-header-search input[type="search"] {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	width: 100%;
	height: 44px;
	padding: 9px 60px 9px 18px;
	clip-path: inset(0 0 0 calc(100% - 44px) round 999px);
	border: 1px solid var(--zv-line);
	border-radius: 999px;
	outline: 0;
	background: #fff;
	color: var(--zv-ink);
	font-size: 16px;
	opacity: 0;
	pointer-events: none;
	transition: clip-path 180ms ease-out, opacity 120ms ease;
}

.zv-header-search.is-open input[type="search"] {
	clip-path: inset(0 round 999px);
	opacity: 1;
	pointer-events: auto;
}

.zv-header-search input[type="search"]:focus-visible {
	border-color: var(--zv-brand);
	box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.2);
}

.zv-header-search .zv-icon-button {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	cursor: pointer;
	transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.zv-header-search.is-open .zv-icon-button {
	border-color: #dfe1e7;
	background: #f7f7f8;
	color: #111;
	box-shadow: -1px 0 0 #dfe1e7;
}

@media (hover: hover) {
	.zv-header-search.is-open .zv-icon-button:hover {
		border-color: var(--zv-brand);
		background: var(--zv-brand);
		color: #fff;
	}
}

.zv-icon-button,
.zv-menu-toggle {
	display: inline-grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--zv-line);
	border-radius: 50%;
	background: #fff;
	color: var(--zv-ink);
	cursor: pointer;
}

.zv-icon {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
}

.zv-icon--search::before {
	position: absolute;
	top: 1px;
	left: 1px;
	width: 11px;
	height: 11px;
	border: 2px solid currentColor;
	border-radius: 50%;
	content: "";
}

.zv-icon--search::after {
	position: absolute;
	right: 1px;
	bottom: 2px;
	width: 7px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: rotate(45deg);
	transform-origin: right center;
}

.zv-menu-toggle {
	display: none;
	border-radius: 8px;
}

.zv-menu-toggle__lines,
.zv-menu-toggle__lines::before,
.zv-menu-toggle__lines::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 160ms ease, opacity 160ms ease;
}

.zv-menu-toggle__lines {
	position: relative;
}

.zv-menu-toggle__lines::before {
	position: absolute;
	top: -6px;
}

.zv-menu-toggle__lines::after {
	position: absolute;
	top: 6px;
}

.zv-menu-toggle[aria-expanded="true"] .zv-menu-toggle__lines {
	background: transparent;
}

.zv-menu-toggle[aria-expanded="true"] .zv-menu-toggle__lines::before {
	top: 0;
	transform: rotate(45deg);
}

.zv-menu-toggle[aria-expanded="true"] .zv-menu-toggle__lines::after {
	top: 0;
	transform: rotate(-45deg);
}

.zv-nav {
	min-width: 0;
}

.zv-mobile-search {
	display: none;
}

.zv-nav__list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: auto;
	list-style: none !important;
	scrollbar-width: none;
}

.zv-nav__list::-webkit-scrollbar {
	display: none;
}

.zv-nav__list li {
	flex: 0 0 auto;
	margin: 0 !important;
}

.zv-nav__list a {
	display: inline-flex;
	padding: 6px 0;
	color: #2b294d;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.zv-nav__list .current-menu-item > a,
.zv-nav__list .current_page_item > a,
.zv-nav__list .current-menu-ancestor > a,
.zv-nav__list .zv-current-section > a {
	color: var(--zv-brand);
	box-shadow: inset 0 -2px 0 var(--zv-brand);
}

@media (hover: hover) {
	.zv-nav__list a:hover {
		text-decoration: underline;
		text-underline-offset: 4px;
	}
}

.zv-header__date {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.zv-header__date .dashicons {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.zv-header__subscribe {
	color: #fff !important;
	font-size: 12px;
	font-weight: 600;
}

@media (hover: hover) {
	.zv-header__subscribe:hover {
		text-decoration: underline;
		text-underline-offset: 3px;
	}
}

.zv-not-found form,
.zv-empty--search form {
	position: relative;
	display: flex;
	max-width: 680px;
	margin: 0 auto;
}

.zv-not-found input[type="search"],
.zv-empty--search input[type="search"] {
	width: 100%;
	min-height: 50px;
	padding: 12px 132px 12px 16px;
	border: 1px solid var(--zv-line);
	border-radius: 8px;
	background: #fff;
	color: var(--zv-ink);
	font-size: 16px;
}

.zv-not-found button[type="submit"],
.zv-empty--search button[type="submit"] {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 116px;
	min-height: 42px;
	padding: 8px 16px;
	border: 0;
	border-radius: 7px;
	background: var(--zv-brand);
	color: #fff;
	font-weight: 600;
}

/* Cards and editorial sections */
.zv-home {
	padding-top: 40px;
}

.zv-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
	align-items: start;
	gap: clamp(32px, 4vw, 64px);
	padding-bottom: 56px;
	border-bottom: 1px solid var(--zv-line);
}

.zv-hero__lead {
	position: sticky;
	top: 142px;
	align-self: start;
}

.admin-bar .zv-hero__lead {
	top: 174px;
}

.zv-hero__recent-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 20px;
}

.zv-section-title {
	margin-bottom: 20px !important;
	font-size: 22px;
	font-weight: 700;
}

.zv-home-section {
	padding-block: 48px;
}

.zv-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
}

.zv-see-all {
	flex: 0 0 auto;
	color: var(--zv-brand) !important;
	font-size: 14px;
	font-weight: 600;
}

.zv-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 28px;
}

.zv-story-grid--count-2 {
	width: 100%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 44px);
}

.zv-story-grid--count-1 {
	width: calc(33.3333% - 18.667px);
	grid-template-columns: minmax(0, 1fr);
}

.zv-card {
	min-width: 0;
	margin: 0;
}

.zv-card__link {
	display: block;
	height: 100%;
}

.zv-card__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--zv-radius);
	background: transparent;
}

.zv-card__image {
	display: block;
	width: 100%;
	height: auto !important;
	object-fit: contain;
}

.zv-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: linear-gradient(110deg, #eceded 8%, #f5f5f5 18%, #eceded 33%);
	background-size: 200% 100%;
}

.zv-card__body {
	padding-top: 14px;
}

.zv-eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--zv-brand) !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.zv-card__title {
	margin: 0 !important;
	font-size: 18px;
	font-weight: 700;
}

.zv-card__excerpt {
	display: -webkit-box;
	margin: 8px 0 0;
	overflow: hidden;
	color: var(--zv-muted);
	font-size: 14px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.zv-meta {
	display: block;
	margin-top: 12px;
	color: var(--zv-muted-light);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.zv-card--lg .zv-card__title {
	font-size: 30px;
}

.zv-card--sm .zv-card__title {
	font-size: 15px;
}

@media (hover: hover) {
	.zv-card__link:hover .zv-card__title {
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 3px;
	}

}

.zv-empty {
	margin: 0;
	padding: 28px;
	border: 1px dashed #d9d9d9;
	border-radius: var(--zv-radius);
	background: var(--zv-surface);
	color: var(--zv-muted);
}

/* Listings */
.zv-listing {
	padding-top: 40px;
}

.zv-listing__header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 32px;
}

.zv-listing__header h1 {
	font-size: 36px;
	font-weight: 800;
}

.zv-listing__header > span {
	color: var(--zv-muted-light);
	font-size: 14px;
}

.zv-listing__description {
	flex-basis: 100%;
	max-width: 720px;
	color: var(--zv-muted);
}

.zv-pagination {
	display: flex;
	justify-content: center;
	padding: 44px 0 8px;
}

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

.zv-pagination .page-numbers {
	display: inline-grid;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 12px;
	place-items: center;
	border: 1px solid var(--zv-line);
	border-radius: 999px;
	background: #fff;
	color: var(--zv-ink) !important;
	font-weight: 600;
}

.zv-pagination .current {
	border-color: var(--zv-brand) !important;
	background: var(--zv-brand) !important;
	color: #fff !important;
}

@media (hover: hover) {
	.zv-pagination a.page-numbers:hover {
		border-color: var(--zv-brand);
		color: var(--zv-brand) !important;
	}
}

/* Article */
.zv-article {
	padding-top: 48px;
}

.zv-article__layout {
	display: grid;
	grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
	align-items: start;
	gap: 56px;
}

.zv-article__meta {
	position: sticky;
	top: 154px;
	align-self: start;
}

.admin-bar .zv-article__meta {
	top: 186px;
}

.zv-article__meta h1 {
	margin: 10px 0 28px;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.15;
	text-wrap: balance;
}

.zv-article__main {
	min-width: 0;
}

.zv-article__lede {
	margin: 0 0 32px;
	color: var(--zv-ink-soft);
	font-size: 20px;
	line-height: 1.65;
}

.zv-byline {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 0;
}

.zv-byline__avatar {
	width: 64px;
	height: 64px;
	flex: 0 0 auto;
	border-radius: 50%;
}

.zv-byline > div {
	display: flex;
	flex-direction: column;
}

.zv-byline a {
	font-size: 16px;
	font-weight: 700;
}

.zv-byline span {
	color: var(--zv-muted-light);
	font-size: 14px;
}

.zv-article__cover {
	margin: 0 0 48px;
	overflow: hidden;
	border-radius: 14px;
	background: transparent;
}

.zv-article__cover img {
	width: 100%;
	height: auto;
	max-height: 760px;
	object-fit: contain;
}

.zv-prose {
	color: var(--zv-ink-soft);
	font-size: 17px;
	line-height: 1.8;
}

.zv-prose h2,
.zv-prose h3,
.zv-prose h4 {
	margin: 36px 0 12px;
	line-height: 1.25;
}

.zv-prose h2 {
	font-size: 26px;
}

.zv-prose h3 {
	font-size: 21px;
}

.zv-prose p,
.zv-prose ul,
.zv-prose ol,
.zv-prose figure,
.zv-prose blockquote,
.zv-prose table {
	margin: 0 0 22px;
}

.zv-prose ul,
.zv-prose ol {
	padding-left: 24px;
}

.zv-prose a {
	color: var(--zv-brand);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.zv-prose img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.zv-prose blockquote {
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--zv-brand);
	color: var(--zv-muted);
	font-style: italic;
}

.zv-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.zv-prose td,
.zv-prose th {
	padding: 10px 12px;
	border: 1px solid var(--zv-line);
	text-align: left;
}

/* Pages and 404 */
.zv-standard-page {
	padding-top: 56px;
}

.zv-standard-page__header {
	margin-bottom: 32px;
}

.zv-standard-page__header h1 {
	font-size: 40px;
}

.zv-not-found {
	max-width: 760px;
	padding-top: 100px;
	padding-bottom: 100px;
	text-align: center;
}

.zv-not-found h1 {
	margin: 8px 0 16px;
	font-size: clamp(42px, 7vw, 72px);
}

.zv-not-found > p {
	max-width: 580px;
	margin: 0 auto 28px;
	color: var(--zv-muted);
	font-size: 18px;
}

.zv-not-found form {
	margin-bottom: 24px;
}

/* Newsletter */
.zv-newsletter-section {
	padding: 30px 0 67px;
	scroll-margin-top: 130px;
	background: #fff;
}

.zv-newsletter-section__panel {
	display: grid;
	min-height: 575px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	padding: 48px;
	overflow: hidden;
	border-radius: 24px;
	background-color: #481900;
	background-image: url("../images/newsletter-pattern.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	box-shadow: none;
}

.zv-newsletter-section__intro {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px 48px 8px 0;
}

.zv-newsletter-section__intro .zv-eyebrow {
	margin: 0 0 10px;
	color: var(--zv-brand) !important;
	font-size: 24px;
	font-weight: 600;
	line-height: 0.8;
	letter-spacing: 0.96px;
	text-transform: capitalize;
}

.zv-newsletter-section__intro h2 {
	max-width: 480px;
	margin-bottom: 20px;
	color: #fff;
	font-size: clamp(44px, 4.85vw, 58px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -1.16px;
}

.zv-newsletter-section__intro p:last-child {
	max-width: 470px;
	margin: 0;
	color: #d6d8df;
	font-size: 18px;
	line-height: 1.55;
}

.zv-newsletter-section__form-card {
	align-self: stretch;
	padding: 24px;
	border-radius: 18px;
	background: #fff;
}

.zv-newsletter-section__form-card h3 {
	margin: 0 0 28px;
	color: #14110f;
	font-size: 24px;
	font-weight: 600;
	line-height: 39.1px;
	letter-spacing: -0.68px;
}

.zv-newsletter-form {
	display: grid;
	gap: 5px;
	width: 100%;
}

.zv-newsletter-form label {
	min-height: 26.4px;
	padding-top: 4px;
	color: #2b2b2b;
	font-size: 14px;
	font-weight: 600;
	line-height: 22.4px;
}

.zv-newsletter-form input[type="text"],
.zv-newsletter-form input[type="email"] {
	width: 100%;
	min-height: 54px;
	padding: 13px 16px;
	border: 1px solid #dfe1e7;
	border-radius: 9px;
	background: #fff;
	color: var(--zv-ink);
	font-size: 16px;
}

.zv-newsletter-form input[type="email"] {
	scroll-margin-top: 140px;
}

.zv-newsletter-form button {
	width: 100%;
	min-height: 54px;
	margin-top: 12px;
	padding: 12px 22px;
	border: 0;
	border-radius: 9px;
	background: var(--zv-brand);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

.zv-newsletter-form button:disabled {
	cursor: wait;
	opacity: 0.68;
}

.zv-newsletter-form button:active:not(:disabled) {
	transform: scale(0.985);
}

.zv-newsletter-form input:focus-visible,
.zv-newsletter-form button:focus-visible {
	position: relative;
	z-index: 1;
	outline: 3px solid rgba(255, 94, 0, 0.3);
	outline-offset: 2px;
}

.zv-newsletter-form__note {
	margin: 2px 0 0;
	padding-top: 2px;
	color: var(--zv-muted-light);
	font-size: 12px;
	line-height: 19.2px;
	text-align: center;
}

.zv-newsletter-status {
	margin: 12px 0 0;
	color: var(--zv-ink);
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
}

.zv-newsletter-status--error {
	color: var(--zv-ink);
}

/* Footer */
.zv-footer {
	padding: 64px 0 28px;
	border-radius: 24px 24px 0 0;
	background: #171717;
	color: #fff;
}

.zv-footer__top {
	display: grid;
	grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(120px, 1fr));
	align-items: start;
	gap: 36px;
}

.zv-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.zv-footer .zv-logo img {
	width: 146px;
	filter: brightness(0) invert(1);
}

.zv-footer__column h2 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.zv-footer__list,
.zv-footer__social {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.zv-footer__list {
	display: grid;
	gap: 14px;
}

.zv-footer__list li,
.zv-footer__social li {
	margin: 0 !important;
}

.zv-footer__list a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
}

.zv-footer__details {
	display: grid;
	grid-template-columns: minmax(250px, 1.35fr) minmax(0, 4fr);
	gap: 36px;
	margin-top: 52px;
}

.zv-footer__contact {
	display: grid;
	gap: 18px;
	align-content: start;
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
}

.zv-footer__contact address {
	font-style: normal;
}

.zv-footer__contact a {
	color: var(--zv-brand);
	font-weight: 500;
}

.zv-footer__disclaimer {
	color: #f5f5f5;
	font-size: 13px;
	line-height: 1.55;
}

.zv-footer__disclaimer p {
	margin: 0 0 18px;
}

.zv-footer__disclaimer p:last-child {
	margin-bottom: 0;
}

.zv-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 13px;
}

.zv-footer__social {
	display: flex;
	align-items: center;
	gap: 20px;
}

.zv-footer__social a {
	display: inline-flex;
	min-width: 20px;
	min-height: 20px;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

@media (hover: hover) {
	.zv-footer__list a:hover {
		color: var(--zv-brand);
	}

	.zv-footer__social a:hover {
		color: var(--zv-brand);
	}

	.zv-newsletter-form button:hover {
		background: var(--zv-brand-dark);
	}
}

@media (max-width: 1000px) {
	.zv-header__main {
		gap: 20px;
	}

	.zv-nav__list {
		gap: 18px;
	}

	.zv-nav__list a {
		font-size: 14px;
	}

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

	.zv-footer__brand {
		grid-column: 1 / -1;
		margin-bottom: 8px;
	}

	.zv-footer__details {
		grid-template-columns: 1fr;
	}

	.zv-article__layout {
		grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
		gap: 36px;
	}
}

@media (max-width: 860px) {
	.zv-hero {
		grid-template-columns: 1fr;
	}

	.zv-hero__lead,
	.admin-bar .zv-hero__lead {
		position: static;
	}

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

	.zv-story-grid--count-2,
	.zv-story-grid--count-1 {
		width: 100%;
	}

	.zv-newsletter-section__panel {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.zv-newsletter-section__intro {
		min-height: 310px;
		padding-right: 0;
	}

}

@media (max-width: 782px) {
	.admin-bar .zv-header {
		top: 46px;
	}
}

@media (max-width: 700px) {
	.zv-container {
		padding-inline: 20px;
	}

	.zv-header__utility-inner {
		height: 32px;
		padding-inline: 14px;
	}

	.zv-header__date,
	.zv-header__subscribe {
		font-size: 10px;
	}

	.zv-header__date .dashicons {
		width: 14px;
		height: 14px;
		font-size: 14px;
	}

	.zv-header__main {
		height: auto;
		min-height: 68px;
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 0;
	}

	.zv-header__actions {
		display: none;
	}

	.zv-menu-toggle {
		display: inline-grid;
		grid-column: 3;
	}

	.zv-nav {
		display: none;
		padding-top: 8px;
	}

	.zv-nav.is-open {
		display: block;
		grid-column: 1 / -1;
		grid-row: 2;
		padding-block: 12px 20px;
	}

	.zv-nav__list {
		display: grid;
		justify-content: stretch;
		gap: 0;
		overflow: visible;
		text-align: left;
	}

	.zv-nav__list a {
		display: flex;
		min-height: 44px;
		align-items: center;
		border-bottom: 1px solid var(--zv-line);
		font-size: 16px;
	}

	.zv-mobile-search {
		position: relative;
		display: flex;
		margin-top: 16px;
	}

	.zv-mobile-search input[type="search"] {
		width: 100%;
		min-height: 48px;
		padding: 11px 52px 11px 14px;
		border: 1px solid var(--zv-line);
		border-radius: 8px;
		background: #fff;
		color: var(--zv-ink);
		font-size: 16px;
	}

	.zv-mobile-search button {
		position: absolute;
		top: 2px;
		right: 2px;
		display: inline-grid;
		width: 44px;
		height: 44px;
		padding: 0;
		place-items: center;
		border: 0;
		border-radius: 7px;
		background: var(--zv-brand);
		color: #fff;
		cursor: pointer;
	}

	.zv-home {
		padding-top: 28px;
	}

	.zv-hero {
		gap: 32px;
		padding-bottom: 40px;
	}

	.zv-hero__recent-grid {
		grid-template-columns: 1fr;
	}

	.zv-story-grid {
		grid-template-columns: 1fr;
	}

	.zv-story-grid--count-2,
	.zv-story-grid--count-1 {
		width: 100%;
		grid-template-columns: 1fr;
	}

	.zv-card--lg .zv-card__title {
		font-size: 25px;
	}

	.zv-home-section {
		padding-block: 40px;
	}

	.zv-section-head {
		align-items: center;
	}

	.zv-listing__header h1,
	.zv-article__meta h1,
	.zv-standard-page__header h1 {
		font-size: 30px;
	}

	.zv-article {
		padding-top: 36px;
	}

	.zv-article__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.zv-article__meta {
		position: static;
	}

	.admin-bar .zv-article__meta {
		top: auto;
	}

	.zv-byline {
		align-items: center;
		flex-direction: row;
	}

	.zv-article__lede {
		font-size: 18px;
	}

	.zv-footer {
		padding-top: 44px;
		border-radius: 18px 18px 0 0;
	}

	.zv-newsletter-section {
		padding: 28px 0 40px;
	}

	.zv-newsletter-section__panel {
		gap: 28px;
		padding: 28px 20px 20px;
		border-radius: 18px;
	}

	.zv-newsletter-section__intro {
		min-height: 280px;
		padding: 0;
	}

	.zv-newsletter-section__intro h2 {
		font-size: 36px;
	}

	.zv-newsletter-section__intro p:last-child {
		font-size: 16px;
	}

	.zv-newsletter-section__form-card {
		padding: 24px 20px;
	}

	.zv-newsletter-section__form-card h3 {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.zv-logo img {
		width: 132px;
	}

	.zv-footer__top {
		grid-template-columns: 1fr;
	}

	.zv-footer__brand {
		grid-column: auto;
	}

	.zv-footer__details {
		margin-top: 40px;
	}

	.zv-footer__legal {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zedvance-editorial-theme *,
	.zedvance-editorial-theme *::before,
	.zedvance-editorial-theme *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
