/* Tier D: structural — font safety net.
   Overrides wp_global_styles remnants from a previously active theme (e.g., PT Serif
   from Twenty Twenty-Four). The user-layer global styles can persist font-family
   overrides across theme switches; these rules guarantee the correct fonts load
   regardless of database state. Uses !important to beat global-styles-inline-css. */
body {
	font-family: var(--wp--preset--font-family--matter) !important;
}

h1,
h2 {
	font-family: var(--wp--preset--font-family--utile-display) !important;
}

h3,
h4,
h5,
h6 {
	font-family: var(--wp--preset--font-family--matter) !important;
}

/* Tier C: custom class — brand pattern overlay via .has-brand-pattern on dark sections */
.has-brand-pattern {
	position: relative;
}

.has-brand-pattern::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 18px 18px;
	pointer-events: none;
	z-index: 0;
}

.has-brand-pattern > * {
	position: relative;
	z-index: 1;
}

/* Tier D: structural — sticky header via template-part wrapper.
   WP wraps template parts in a same-height container that prevents the inner
   sticky group from sticking. Moving sticky to the wrapper itself fixes it. */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 100;
}

.admin-bar header.wp-block-template-part {
	top: 32px;
}

/* Tier C: custom class — header logo */
.consulterce-logo img,
.custom-logo-link img,
.wp-block-site-logo img {
	height: 28px;
	width: auto;
	max-width: none;
}

/* Tier B: contextual — header logo link no underline */
.custom-logo-link,
.wp-block-site-logo a {
	text-decoration: none;
}

/* Tier D: pseudo-class — header nav links hover (cadet-grey → off-white) */
header .wp-block-navigation .wp-block-navigation-item__content {
	transition: color var(--wp--custom--transition-default);
}

header .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--off-white);
}

/* Tier D: structural — mobile nav overlay: override right-justify on the <ul> itself.
   Desktop nav uses items-justified-right which sets --navigation-layout-justification-setting: flex-end
   on the <ul>. This overrides it at the same element level when the overlay is open.
   No media query needed — .is-menu-open only exists when the overlay is active. */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	--navigation-layout-justification-setting: flex-start !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	align-items: flex-start !important;
	padding-left: var(--wp--preset--spacing--30) !important;
	padding-right: var(--wp--preset--spacing--30) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	top: var(--wp--preset--spacing--20);
	right: var(--wp--preset--spacing--20);
}

/* Tier B: contextual — hero body paragraph left-aligned within constrained layout.
   Constrained layout auto-centers children. This overrides the left margin
   so the paragraph left-aligns with the 660px content area while keeping 500px max-width. */
.is-layout-constrained > .hero-body {
	margin-left: calc((100% - var(--wp--style--global--content-size)) / 2) !important;
	margin-right: auto !important;
}

/* Tier B: contextual — hero description links (off-white + zanthous underline) */
.hero-body a {
	color: var(--wp--preset--color--off-white);
	text-decoration: none;
	border-bottom: 1px solid var(--wp--preset--color--zanthous);
	padding-bottom: 1px;
	transition: color var(--wp--custom--transition-default);
}

.hero-body a:hover {
	color: var(--wp--preset--color--zanthous);
}

/* Tier C: custom class — stats bar: solid bg (no pattern), border-top separator, constrained columns */
.stats-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bar .wp-block-columns {
	max-width: var(--wp--style--global--content-size);
	margin-left: auto;
	margin-right: auto;
	gap: 64px;
}

/* !important needed to override WP core .wp-block-column { flex: 1 1 0px } */
.stats-bar .wp-block-column {
	flex: 0 1 auto !important;
}

/* Tier B: contextual — stats eyebrow uses tighter letter-spacing (mockup: 0.06em vs global 0.14em) */
.stats-bar .is-style-eyebrow {
	letter-spacing: 0.06em;
}

/* Tier B: contextual — heading italic/em uses lighter weight (400 regular vs 500 medium) */
.wp-block-heading em {
	font-weight: 400;
}

/* Tier B: contextual — bold text in dark section paragraphs (off-white, medium weight) */
.has-brand-pattern .hero-body strong {
	color: var(--wp--preset--color--off-white);
	font-weight: 500;
}

/* Tier C: custom class — ghost link (underline + hover) */
.link-ghost-wrap {
	line-height: 1;
}

.link-ghost {
	transition: color var(--wp--custom--transition-default);
}

.link-ghost:hover {
	color: var(--wp--preset--color--zanthous) !important;
}

/* Tier C: custom class — eyebrow label */
.eyebrow,
.is-style-eyebrow {
	font-family: var(--wp--preset--font-family--matter);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

/* Tier C: custom class — testimonial horizontal scroll strip */
.testimonial-strip {
	display: flex;
	gap: var(--wp--preset--spacing--30);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.testimonial-strip > * {
	scroll-snap-align: start;
	flex: 0 0 auto;
}

/* Tier C: custom class — testimonials section quote + company overrides */
.testimonials-section .has-oxford-blue-color[style*="font-style:italic"] {
	color: rgba(20, 33, 53, 0.72) !important;
}

.testimonials-section .wp-block-group .wp-block-group > .is-style-eyebrow.has-cadet-grey-color.has-text-color {
	color: var(--wp--preset--color--cadet-grey) !important;
	opacity: 1 !important;
	font-weight: 300;
	letter-spacing: 0.06em;
}

/* Tier C: custom class — category filter pills */
.category-filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--10);
}

.category-filter-pills a {
	display: inline-block;
	border-radius: 0;
	padding: 6px 14px;
	font-family: var(--wp--preset--font-family--matter);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid rgba(20, 33, 53, 0.15);
	color: rgba(20, 33, 53, 0.5);
	transition: var(--wp--custom--transition-default);
}

.category-filter-pills a:hover {
	border-color: var(--wp--preset--color--oxford-blue);
	color: var(--wp--preset--color--oxford-blue);
	background: transparent;
}

.category-filter-pills a.is-active {
	background-color: var(--wp--preset--color--oxford-blue);
	border-color: var(--wp--preset--color--oxford-blue);
	color: var(--wp--preset--color--off-white);
}

/* Tier C: custom class — share links */
.share-links {
	display: flex;
	gap: var(--wp--preset--spacing--20);
	align-items: center;
}

.share-links a {
	display: inline-block;
	border-radius: var(--wp--custom--border-radius-pill);
	padding: 6px 14px;
	font-family: var(--wp--preset--font-family--matter);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	text-decoration: none;
	border: 1px solid rgba(20, 33, 53, 0.15); /* oxford-blue at 15% */
	color: var(--wp--preset--color--oxford-blue);
	transition: all 0.2s;
}

.share-links a:hover {
	border-color: var(--wp--preset--color--oxford-blue);
	color: var(--wp--preset--color--oxford-blue);
}

/* Tier C: custom class — author bio */
.author-bio {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 24px;
	align-items: start;
	padding: 40px;
	margin-top: 72px;
}

.author-bio img {
	width: 64px;
	height: 64px;
	border-radius: var(--wp--custom--border-radius-pill);
	object-fit: cover;
}

.author-bio .wp-block-avatar img {
	width: 64px;
	height: 64px;
	object-fit: cover;
}

.author-name {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}

.author-bio-description {
	color: rgba(20, 33, 53, 0.6);
	font-size: var(--wp--preset--font-size--normal);
	font-weight: 300;
	line-height: 1.65;
	margin-bottom: 14px;
}

.author-bio-links {
	display: flex;
	gap: 14px; /* Mockup spec: no matching spacing preset */
}

.author-bio-links a {
	font-family: var(--wp--preset--font-family--matter);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--oxford-blue);
	text-decoration: none;
	border-bottom: 1px solid var(--wp--preset--color--zanthous);
	padding-bottom: 1px;
}

/* ---- Tier B: contextual block — Insights article list (uniform card layout) ---- */

/* Tier B: .insights-grid context — vertical block-flow, border-bottom separators */
.insights-grid .wp-block-post-template > li {
	display: block;
	padding: 0 0 48px;
	margin-bottom: 48px;
	border-bottom: 1px solid rgba(20, 33, 53, 0.1);
}

.insights-grid .wp-block-post-template > li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

/* Full-width featured image */
.insights-grid .wp-block-post-template > li .wp-block-post-featured-image {
	margin-bottom: 28px;
	max-width: 660px;
	height: 340px;
	overflow: hidden;
}

.insights-grid .wp-block-post-template > li .wp-block-post-featured-image img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}

/* Post title — 36px Utile Display */
.insights-grid .wp-block-post-template > li .wp-block-post-title {
	font-size: 36px;
	line-height: 1.15;
}

/* Post excerpt */
.insights-grid .wp-block-post-template > li .wp-block-post-excerpt,
.insights-grid .wp-block-post-template > li .wp-block-post-excerpt__excerpt {
	font-size: var(--wp--preset--font-size--normal);
	color: rgba(20, 33, 53, 0.6);
}

/* Remove extra spacing WP adds to excerpts */
.insights-grid .wp-block-post-excerpt__excerpt {
	margin-bottom: 0;
}

/* Post title links — oxford-blue, not theme link color */
.insights-grid .wp-block-post-title a {
	color: var(--wp--preset--color--oxford-blue);
	text-decoration: none;
}

/* Category term links — muted color + gold dot */
.insights-grid .wp-block-post-terms a {
	color: rgba(20, 33, 53, 0.4);
	text-decoration: none;
}

.insights-grid .wp-block-post-terms a:first-child::before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	background-color: var(--wp--preset--color--zanthous);
	border-radius: 50%;
	margin-right: 6px;
	vertical-align: middle;
}

/* Post date meta styling */
.insights-grid .wp-block-post-date {
	font-size: 13px;
	color: rgba(20, 33, 53, 0.38);
}

/* Tier C: custom class — pagination: spacing + next link styling */
.insights-pagination {
	margin-top: 104px;
}

.insights-pagination .wp-block-query-pagination-next,
.insights-pagination .wp-block-query-pagination-previous {
	font-size: 14px;
	font-weight: 400;
	color: var(--wp--preset--color--oxford-blue);
	text-decoration: none;
	border-bottom: 1px solid var(--wp--preset--color--zanthous);
	padding-bottom: 2px;
}

/* Insights search bar — borderless, transparent, compact */
.wp-block-search__no-button .wp-block-search__inside-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wp-block-search__no-button .wp-block-search__inside-wrapper::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	opacity: 0.3;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='5.5' stroke='%23142135' stroke-width='1.5'/%3E%3Cpath d='M11 11L14 14' stroke='%23142135' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 16px 16px;
}

.wp-block-search__no-button .wp-block-search__input {
	background: transparent;
	outline: none;
	box-shadow: none;
	padding: 0;
	height: 18px;
	line-height: 18px;
}

/* Tier C: custom class — smooth scroll + font smoothing */
html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Tier D: pseudo-class — hover transitions */
.wp-block-post-template > li {
	transition: opacity 0.2s;
}

.wp-block-post-template > li:hover {
	opacity: 0.72;
}

.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
	transition: opacity 0.2s;
}

.wp-block-query-pagination-previous:hover,
.wp-block-query-pagination-next:hover {
	opacity: 0.6;
}

.wp-block-button .wp-block-button__link {
	transition: opacity 0.2s;
}

.wp-block-button .wp-block-button__link:hover {
	opacity: 0.88;
}

.service-card a:not(.wp-block-button__link) {
	transition: opacity 0.2s;
}

.service-card a:not(.wp-block-button__link):hover {
	opacity: 0.6;
}

.author-bio a {
	transition: opacity 0.2s;
}

.author-bio a:hover {
	opacity: 0.6;
}

.wp-block-post-content a {
	transition: opacity 0.2s;
}

.wp-block-post-content a:hover {
	opacity: 0.65;
}

/* Tier D: pseudo-class (:not) — section eyebrows on light backgrounds */
.wp-block-group:not(.has-oxford-blue-background-color) > .eyebrow.has-cadet-grey-color,
.wp-block-group:not(.has-oxford-blue-background-color) > .is-style-eyebrow.has-cadet-grey-color {
	color: var(--wp--preset--color--oxford-blue) !important;
	opacity: 0.38;
	letter-spacing: 0.16em;
}

/* Tier C: custom class — featured-in logo separators + opacity */
.featured-in-logos > p {
	padding-right: var(--wp--preset--spacing--20);
	border-right: 1px solid rgba(20,33,53,0.1);
	opacity: 0.2;
}

.featured-in-logos > p:last-child {
	padding-right: 0;
	border-right: none;
}

/* Tier B: contextual — newsletter section paragraph base styles (mockup: .newsletter p) */
.has-brand-pattern.has-oxford-blue-background-color > p:not(.is-style-eyebrow) {
	color: var(--wp--custom--text-muted);
	font-size: var(--wp--preset--font-size--normal);
	font-weight: 300;
}


/* Tier D: pseudo-element (::placeholder) — newsletter on dark bg */
.has-oxford-blue-background-color .newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.28); /* off-white at 28% */
}

/* Tier B: contextual block — footer and newsletter links, no underlines */
footer.wp-block-template-part a,
.has-brand-pattern a {
	text-decoration: none;
}

/* Tier D: pseudo-class — footer nav links hover (→ zanthous) */
footer.wp-block-template-part a {
	transition: color var(--wp--custom--transition-default);
}

/* !important needed to override inline style="color:inherit" on footer link anchors */
footer.wp-block-template-part a:hover {
	color: var(--wp--preset--color--zanthous) !important;
}

/* Tier B: contextual block — newsletter privacy text link blends with muted text */
.has-brand-pattern .has-small-font-size a {
	color: inherit;
	text-decoration: none;
}

/* Tier B: contextual block — services-preview numbered list items */
.services-list .wp-block-group > p > strong {
	font-size: 11px;
	letter-spacing: 0.1em;
	opacity: 0.8;
	margin-right: 11px;
}


/* Tier B: separator — thin 1px subtle line */
.wp-block-separator {
	border: none;
	border-top: 1px solid;
	border-color: rgba(20, 33, 53, 0.1);
}

/* Service "Learn more" link — zanthous underline */
.service-card .service-link {
	text-decoration: none;
	border-bottom: 1px solid var(--wp--preset--color--zanthous);
	padding-bottom: 2px;
	color: var(--wp--preset--color--oxford-blue);
}

/* Tier C: custom class — service badge pill (e.g., "Enrolment open") */
.service-badge {
	display: inline-block;
	padding: 3px 8px;
}

/* ---- Tier D: @media — 640px breakpoint (services / article page) ---- */
@media (max-width: 640px) {
	.wp-block-post-template.is-layout-grid {
		grid-template-columns: 1fr !important;
	}

	.testimonial-strip {
		flex-direction: column;
		align-items: flex-start;
	}

	.author-bio {
		grid-template-columns: 1fr;
		gap: var(--wp--preset--spacing--20);
	}

	.wp-block-group:has(> .service-card) {
		padding: 56px var(--wp--preset--spacing--30) !important;
	}
}

/* ---- Tier D: @media — 600px breakpoint (homepage / insights) ---- */
@media (max-width: 600px) {
	.newsletter-form {
		flex-direction: column;
		gap: 0 !important;
	}

	.newsletter-form input[type="email"] {
		border-right: 1px solid rgba(255,255,255,0.15) !important;
		border-bottom: none !important;
	}

	.newsletter-form button {
		border-top: 1px solid rgba(255,255,255,0.08) !important;
	}

	footer.wp-block-template-part .footer-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	/* Insights — responsive image height on mobile */
	.insights-grid .wp-block-post-template > li .wp-block-post-featured-image {
		height: auto;
	}

	.insights-grid .wp-block-post-template > li .wp-block-post-featured-image img {
		height: auto;
	}

	.has-brand-pattern {
		padding-top: var(--wp--preset--spacing--60) !important;
		padding-bottom: var(--wp--preset--spacing--60) !important;
	}

	footer.wp-block-template-part .wp-block-group {
		padding-top: 44px !important;
		padding-bottom: 44px !important;
	}

	/* Fix: hero-body left-alignment calc produces negative margin on mobile
	   (calc((375px - 660px) / 2) = -142px). Reset to auto for normal centering. */
	.is-layout-constrained > .hero-body {
		margin-left: auto !important;
	}

	/* Fix: stats bar columns stack vertically with consistent left alignment */
	.stats-bar .wp-block-columns {
		gap: var(--wp--preset--spacing--40);
	}

	/* Fix: navigation overlay — larger touch targets on mobile */
	.wp-block-navigation__responsive-container.is-menu-open
	.wp-block-navigation-item__content {
		font-size: 18px;
		padding: 12px 0;
	}
}

/* ---- Tier C: custom class — Article (single post) page ---- */

/* Tier B: contextual block — article body content typography & spacing */
.article-body .wp-block-post-content > p {
	color: rgba(20, 33, 53, 0.85);
	font-weight: 400;
	line-height: 1.78;
}

.article-body .wp-block-post-content > p + p {
	margin-top: 24px;
}

.article-body .wp-block-post-content strong {
	font-weight: 500;
	color: var(--wp--preset--color--oxford-blue);
}

.article-body .wp-block-post-content .key-findings strong {
	color: var(--wp--preset--color--off-white);
}

.article-body .wp-block-post-content a {
	color: var(--wp--preset--color--oxford-blue);
	border-bottom: 1px solid var(--wp--preset--color--zanthous);
	text-decoration: none;
	padding-bottom: 1px;
}

.article-body .wp-block-post-content blockquote {
	margin: 40px 0;
	padding: 28px 32px;
	border-left: 3px solid var(--wp--preset--color--zanthous);
	background: rgba(20, 33, 53, 0.04);
}

.article-body .wp-block-post-content blockquote p {
	font-size: var(--wp--preset--font-size--normal);
	font-style: italic;
	color: rgba(20, 33, 53, 0.7);
	margin-bottom: 0;
}

.article-body .wp-block-post-content hr {
	border: none;
	border-top: 1px solid rgba(20, 33, 53, 0.1);
	margin: 56px 0;
}

.article-body .wp-block-post-content > h2 {
	font-size: 32px;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin-top: 64px;
	margin-bottom: 20px;
}

.article-body .wp-block-post-content > h3 {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.01em;
	margin-top: 40px;
	margin-bottom: 14px;
}

/* Tier C: custom class — article stat callout (big number + description) */
.stat-callout {
	padding: 24px 28px;
	margin: 36px 0;
	background: rgba(20, 33, 53, 0.04);
	border-left: 3px solid var(--wp--preset--color--zanthous);
}

.stat-callout-num {
	font-family: var(--wp--preset--font-family--utile-display);
	font-size: 44px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--wp--preset--color--oxford-blue);
}

.stat-callout-desc {
	font-family: var(--wp--preset--font-family--matter);
	font-size: var(--wp--preset--font-size--normal);
	font-weight: 300;
	line-height: 1.6;
	color: rgba(20, 33, 53, 0.65);
}

/* Tier C: custom class — article breadcrumb nav */
.article-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 20px 0;
}

.article-breadcrumb a {
	font-family: var(--wp--preset--font-family--matter);
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--wp--preset--color--cadet-grey);
	text-decoration: none;
}

.article-breadcrumb .breadcrumb-arrow {
	font-size: 12px;
	font-weight: 300;
	line-height: 1;
	color: var(--wp--preset--color--cadet-grey);
}

.article-breadcrumb .breadcrumb-current {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--wp--preset--color--zanthous);
}

/* Tier C: custom class — article byline (avatar + meta) */
.article-byline {
	display: flex;
	align-items: center;
	gap: 14px;
}

.article-byline-avatar {
	width: 40px;
	height: 40px;
	border-radius: var(--wp--custom--border-radius-pill);
	object-fit: cover;
}

.article-byline-text {
	font-family: var(--wp--preset--font-family--matter);
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.52);
}

.article-byline-text strong {
	font-weight: 400;
	text-decoration: underline;
}

.article-byline-text a {
	color: inherit;
	text-decoration: none;
	transition: opacity var(--wp--custom--transition-default);
}

.article-byline-text a:hover {
	opacity: 0.6;
}

/* Tier B: contextual block — featured image inside article header hero */
.article-header-section .wp-block-post-featured-image {
	max-width: 660px;
	height: 360px;
	overflow: hidden;
}

.article-header-section .wp-block-post-featured-image img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: center center;
	border-radius: 0;
}

/* Tier C: custom class — share bar */
.share-bar-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 660px;
}

.share-bar-label {
	font-family: var(--wp--preset--font-family--matter);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: rgba(20, 33, 53, 0.35);
}

.share-bar-links {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
}

.share-bar-links a {
	display: inline-block;
	padding: 5px 12px;
	font-family: var(--wp--preset--font-family--matter);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(20, 33, 53, 0.5);
	border: 1px solid rgba(20, 33, 53, 0.15);
	border-radius: 0;
	text-decoration: none;
	transition: var(--wp--custom--transition-default);
}

.share-bar-links a:hover {
	background-color: var(--wp--preset--color--oxford-blue);
	border-color: var(--wp--preset--color--oxford-blue);
	color: var(--wp--preset--color--off-white);
}

/* Tier C: custom class — article share footer (bottom of article body) */
.article-share-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding-top: 40px;
}

.share-footer-label {
	font-family: var(--wp--preset--font-family--matter);
	font-size: 13px;
	font-weight: 300;
	color: rgba(20, 33, 53, 0.4);
	letter-spacing: 0.04em;
}

/* ---- Tier D: @media — 640px breakpoint (article page) ---- */
@media (max-width: 640px) {
	.article-header-section .wp-block-post-featured-image {
		height: auto;
	}

	.article-header-section .wp-block-post-featured-image img {
		height: auto;
	}

	.share-bar-inner {
		flex-wrap: wrap;
	}

	.article-share-footer {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}

	.stat-callout {
		flex-direction: column;
		gap: 8px;
	}
}

/* ---- Tier C: custom class — Newsletter page ---- */

/* Tier C: custom class — newsletter page form (square, not pill) */
.newsletter-form--page {
	display: flex;
	gap: 0;
	max-width: 560px;
	margin-top: 0;
}

.newsletter-form--page input[type="email"] {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.06);
	color: var(--wp--preset--color--off-white);
	font-family: var(--wp--preset--font-family--matter);
	font-size: 14px;
	font-weight: 300;
}

.newsletter-form--page input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.newsletter-form--page button {
	padding: 14px 32px;
	border: none;
	border-radius: 0;
	background: var(--wp--preset--color--zanthous);
	color: var(--wp--preset--color--oxford-blue);
	font-family: var(--wp--preset--font-family--matter);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--wp--custom--transition-default);
}

.newsletter-form--page button:hover {
	opacity: 0.88;
}

/* Tier C: custom class — subscriber testimonial quote */
.subscriber-quote {
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subscriber-quote-mark {
	display: block;
	font-family: var(--wp--preset--font-family--utile-display);
	font-size: 64px;
	font-weight: 500;
	line-height: 1;
	color: var(--wp--preset--color--zanthous);
	margin-bottom: 12px;
}

.subscriber-quote-text {
	font-family: var(--wp--preset--font-family--utile-display);
	font-size: 18px;
	font-weight: 500;
	font-style: italic;
	line-height: 1.55;
	color: rgba(255, 254, 248, 0.85);
	margin: 0 0 20px;
	padding: 0;
	border: none;
}

.subscriber-quote-attribution {
	font-family: var(--wp--preset--font-family--matter);
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--cadet-grey);
	margin: 0;
}

/* Tier C: custom class — newsletter features, benefit list */
.benefit-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 0;
	border-top: 1px solid rgba(20, 33, 53, 0.08);
}

.benefit-item:last-child {
	border-bottom: 1px solid rgba(20, 33, 53, 0.08);
}

.benefit-num {
	font-family: var(--wp--preset--font-family--utile-display);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	color: var(--wp--preset--color--zanthous);
	flex-shrink: 0;
	padding-top: 2px;
}

.benefit-title {
	font-family: var(--wp--preset--font-family--matter);
	font-size: var(--wp--preset--font-size--normal);
	font-weight: 500;
	line-height: 1.2;
	color: var(--wp--preset--color--oxford-blue);
	margin: 0 0 4px;
}

.benefit-desc {
	font-family: var(--wp--preset--font-family--matter);
	font-size: var(--wp--preset--font-size--normal);
	font-weight: 300;
	line-height: 1.6;
	color: rgba(20, 33, 53, 0.6);
	margin: 0;
}

/* Tier C: custom class — newsletter page privacy link */
.newsletter-hero .has-brand-pattern .has-small-font-size a,
.newsletter-hero a {
	color: inherit;
	text-decoration: none;
}

/* ---- Tier D: @media — 600px breakpoint (newsletter) ---- */
@media (max-width: 600px) {
	.newsletter-form--page {
		flex-direction: column;
	}

	.newsletter-form--page input[type="email"] {
		border-bottom: none;
	}

	.newsletter-form--page button {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
}
