/* =========================================================
   Speak Your Mind — design system
   ========================================================= */

:root {
	--sym-shadow-soft: 0 2px 8px rgba(6, 43, 34, 0.05);
	--sym-shadow-card: 0 12px 32px -12px rgba(6, 43, 34, 0.14);
	--sym-shadow-lift: 0 28px 60px -24px rgba(6, 43, 34, 0.28);
	--sym-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--sym-radius-md: 18px;
	--sym-radius-lg: 28px;
	--sym-radius-xl: 36px;
}

html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

::selection {
	background: var(--wp--preset--color--mint);
	color: var(--wp--preset--color--green-deep);
}

:where(a, button, .wp-element-button):focus-visible {
	outline: 3px solid var(--wp--preset--color--green-bright);
	outline-offset: 3px;
	border-radius: 6px;
}

/* ---------------------------------------------------------
   Scroll reveal
   --------------------------------------------------------- */

.sym-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s var(--sym-ease), transform 0.55s var(--sym-ease);
	will-change: opacity, transform;
}

.sym-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.sym-reveal,
	.sym-reveal.is-visible {
		opacity: 1;
		transform: none;
		transition: none;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */

.sym-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(247, 250, 248, 0.72);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sym-header.is-stuck {
	border-bottom-color: var(--wp--preset--color--border);
	box-shadow: 0 6px 24px -18px rgba(6, 43, 34, 0.4);
}

.sym-header .wp-block-navigation a {
	position: relative;
	color: var(--wp--preset--color--green-deep);
	padding-block: 0.35rem;
	transition: color 0.2s ease;
}

.sym-header .wp-block-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--wp--preset--color--green-bright);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.32s var(--sym-ease);
}

.sym-header .wp-block-navigation a:hover {
	color: var(--wp--preset--color--green);
}

.sym-header .wp-block-navigation a:hover::after,
.sym-header .wp-block-navigation .current-menu-item a::after {
	transform: scaleX(1);
}

.sym-header .wp-block-site-title a {
	color: var(--wp--preset--color--green);
	transition: opacity 0.2s ease;
}

.sym-header .wp-block-site-title a:hover {
	opacity: 0.75;
}

.sym-skip-link {
	position: absolute;
	left: -9999px;
}

.sym-skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 999;
	background: #fff;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	box-shadow: var(--sym-shadow-card);
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.wp-element-button,
.wp-block-button__link,
.sym-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
	text-decoration: none !important;
	transition: transform 0.25s var(--sym-ease), box-shadow 0.25s var(--sym-ease),
		background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wp-block-button__link:hover,
.sym-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -14px rgba(14, 92, 72, 0.65);
}

.wp-block-button__link:active,
.sym-btn:active {
	transform: translateY(0);
}

/* Secondary — outline */
.wp-block-button.is-style-sym-secondary .wp-block-button__link {
	background: transparent !important;
	color: var(--wp--preset--color--green) !important;
	border: 1.5px solid var(--wp--preset--color--border) !important;
	box-shadow: none;
}

.wp-block-button.is-style-sym-secondary .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--green) !important;
	background: var(--wp--preset--color--mint-soft) !important;
	box-shadow: 0 10px 24px -16px rgba(6, 43, 34, 0.5);
}

/* Soft green */
.wp-block-button.is-style-sym-ghost .wp-block-button__link {
	background: var(--wp--preset--color--mint-soft) !important;
	color: var(--wp--preset--color--green-deep) !important;
}

.wp-block-button.is-style-sym-ghost .wp-block-button__link:hover {
	background: #d3efe1 !important;
}

/* On dark surfaces */
.sym-on-dark .wp-block-button.is-style-sym-secondary .wp-block-button__link {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.35) !important;
}

.sym-on-dark .wp-block-button.is-style-sym-secondary .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.6) !important;
}

.sym-btn {
	padding: 0.7rem 1.35rem;
	border-radius: 999px;
	background: var(--wp--preset--color--green);
	color: #fff !important;
	font-size: 0.9375rem;
	border: none;
	cursor: pointer;
}

.sym-btn:hover {
	background: var(--wp--preset--color--green-mid);
}

.sym-btn--outline {
	background: transparent;
	border: 1.5px solid var(--wp--preset--color--border);
	color: var(--wp--preset--color--green) !important;
}

.sym-btn--outline:hover {
	background: var(--wp--preset--color--mint-soft);
	border-color: var(--wp--preset--color--green);
}

/* Arrow micro-interaction */
.sym-btn .sym-arrow,
.wp-block-button__link .sym-arrow {
	transition: transform 0.28s var(--sym-ease);
}

.sym-btn:hover .sym-arrow,
.wp-block-button__link:hover .sym-arrow {
	transform: translateX(4px);
}

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */

.sym-section {
	position: relative;
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.sym-section--tight {
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.sym-eyebrow,
.sym-section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--green-mid);
	margin-bottom: 0.85rem;
}

.sym-eyebrow::before,
.sym-section-label::before {
	content: "";
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--wp--preset--color--green-bright);
}

.sym-lead {
	font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
	color: var(--wp--preset--color--muted);
	max-width: 58ch;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.sym-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(2.5rem, 5.5vw, 4.5rem);
}

.sym-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(55% 60% at 6% -5%, rgba(125, 227, 180, 0.4), transparent 62%),
		radial-gradient(45% 55% at 96% 8%, rgba(255, 159, 110, 0.2), transparent 62%),
		linear-gradient(180deg, #f2fbf6 0%, var(--wp--preset--color--canvas) 92%);
}

.sym-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.55;
	animation: sym-float 16s ease-in-out infinite;
}

.sym-blob--1 {
	width: 420px;
	height: 420px;
	top: -140px;
	left: -120px;
	background: rgba(31, 169, 127, 0.35);
}

.sym-blob--2 {
	width: 340px;
	height: 340px;
	bottom: -120px;
	right: -80px;
	background: rgba(255, 159, 110, 0.3);
	animation-delay: -6s;
}

@keyframes sym-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(24px, -28px, 0) scale(1.08);
	}
}

.sym-hero__inner {
	position: relative;
	z-index: 1;
}

.sym-hero .wp-block-columns {
	align-items: center;
}

.sym-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.42rem 0.95rem 0.42rem 0.6rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--wp--preset--color--border);
	box-shadow: var(--sym-shadow-soft);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--wp--preset--color--green-deep);
	backdrop-filter: blur(8px);
}

.sym-pill__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wp--preset--color--green-bright);
	box-shadow: 0 0 0 4px rgba(31, 169, 127, 0.18);
	animation: sym-pulse 2.4s ease-in-out infinite;
}

@keyframes sym-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(31, 169, 127, 0.18);
	}
	50% {
		box-shadow: 0 0 0 7px rgba(31, 169, 127, 0.06);
	}
}

.sym-hero h1 {
	margin-block: 1.1rem 0.9rem;
	max-width: 19ch;
	text-wrap: balance;
	overflow-wrap: break-word;
	hyphens: auto;
}

/* Rendered as <mark>, so the UA highlight has to be cleared in CSS rather than
   with an inline style — KSES strips inline styles on server-side saves. */
.sym-accent {
	position: relative;
	background: transparent;
	color: var(--wp--preset--color--green-mid);
	white-space: nowrap;
}

.sym-accent::after {
	content: "";
	position: absolute;
	left: -0.06em;
	right: -0.06em;
	bottom: 0.02em;
	height: 0.4em;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(125, 227, 180, 0.9), rgba(255, 159, 110, 0.65));
	z-index: -1;
	transform: scaleX(0);
	transform-origin: left;
	animation: sym-underline 1s var(--sym-ease) 0.45s forwards;
}

@keyframes sym-underline {
	to {
		transform: scaleX(1);
	}
}

/* USP row — grid overrides the default columns flex layout. */
.sym-usp-row,
.wp-block-columns.sym-usp-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.wp-block-columns.sym-usp-row > .wp-block-column {
	flex-basis: auto !important;
	display: flex;
}

.wp-block-columns.sym-usp-row > .wp-block-column > .sym-usp {
	width: 100%;
}

.sym-usp {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 1rem 1.1rem;
	border-radius: var(--sym-radius-md);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--wp--preset--color--border);
	box-shadow: var(--sym-shadow-soft);
	line-height: 1.45;
	color: var(--wp--preset--color--green-deep);
	transition: transform 0.3s var(--sym-ease), box-shadow 0.3s var(--sym-ease),
		border-color 0.3s ease;
}

.sym-usp:hover {
	transform: translateY(-4px);
	box-shadow: var(--sym-shadow-card);
	border-color: rgba(31, 169, 127, 0.45);
}

.sym-usp p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
}

.sym-usp p strong {
	display: block;
	font-size: 0.95rem;
	color: var(--wp--preset--color--green-deep);
}

/* Compact icon variant for the hero USP row */
.sym-usp[class*="sym-icon--"]::before {
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 11px;
	background-size: 1.05rem;
	margin-bottom: 0;
	flex-shrink: 0;
}

/* Hero media — wrapper stays overflow-visible so the badges can hang out. */
.sym-hero__media {
	position: relative;
	animation: sym-rise 1s var(--sym-ease) both;
}

.sym-hero__media .wp-block-image,
.sym-hero__img {
	margin: 0;
	border-radius: var(--sym-radius-xl);
	overflow: hidden;
	box-shadow: var(--sym-shadow-lift);
	background: var(--wp--preset--color--mint-soft);
}

.sym-hero__media .wp-block-image img,
.sym-hero__img img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
	border-radius: var(--sym-radius-xl);
	transform: scale(1.02);
	transition: transform 1.2s var(--sym-ease);
}

.sym-hero__media:hover .wp-block-image img,
.sym-hero__img:hover img {
	transform: scale(1.06);
}

@keyframes sym-rise {
	from {
		opacity: 0;
		transform: translateY(28px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.sym-float-card {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.75rem 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	box-shadow: var(--sym-shadow-card);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--wp--preset--color--green-deep);
	animation: sym-bob 6s ease-in-out infinite;
}

.sym-float-card--meet {
	left: -12px;
	bottom: 18%;
}

.sym-float-card--rating {
	right: -8px;
	top: 12%;
	animation-delay: -3s;
}

.sym-float-card small {
	display: block;
	font-weight: 500;
	color: var(--wp--preset--color--muted);
	font-size: 0.75rem;
}

.sym-float-card [class*="sym-icon--"]::before {
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 10px;
	background-size: 1.05rem;
	margin-bottom: 0;
	flex-shrink: 0;
}

@keyframes sym-bob {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-9px);
	}
}

/* ---------------------------------------------------------
   Cards
   --------------------------------------------------------- */

.is-style-sym-card,
.sym-card,
.is-style-sym-cards > .wp-block-column {
	position: relative;
	height: 100%;
	padding: 1.75rem 1.6rem;
	border-radius: var(--sym-radius-lg);
	border: 1px solid var(--wp--preset--color--border);
	box-shadow: var(--sym-shadow-soft);
	overflow: hidden;
	background-color: #fff;
	/* Animated top accent line — background-size keeps ::before free for icons. */
	background-image: linear-gradient(
		90deg,
		var(--wp--preset--color--green-bright),
		var(--wp--preset--color--mint)
	);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 0% 3px;
	transition: transform 0.35s var(--sym-ease), box-shadow 0.35s var(--sym-ease),
		border-color 0.35s ease, background-size 0.45s var(--sym-ease);
}

.is-style-sym-card:hover,
.sym-card:hover,
.is-style-sym-cards > .wp-block-column:hover {
	transform: translateY(-6px);
	box-shadow: var(--sym-shadow-card);
	border-color: rgba(31, 169, 127, 0.35);
	background-size: 100% 3px;
}

/* ---------------------------------------------------------
   CSS icon system
   Add e.g. "sym-icon--heart" as an extra CSS class on any card
   group in the editor; the icon renders above the content.
   --------------------------------------------------------- */

[class*="sym-icon--"]::before {
	content: "";
	display: block;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.15rem;
	border-radius: 16px;
	background-color: var(--wp--preset--color--mint-soft);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.45rem;
	transition: transform 0.35s var(--sym-ease), background-color 0.35s ease;
}

[class*="sym-icon--"]:hover::before {
	transform: translateY(-2px) rotate(-4deg);
	background-color: var(--wp--preset--color--mint);
}

.sym-icon--wind::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.7 7.7A2.5 2.5 0 1 1 19.5 12H2'/%3E%3Cpath d='M9.6 4.6A2 2 0 1 1 11 8H2'/%3E%3Cpath d='M12.6 19.4A2 2 0 1 0 14 16H2'/%3E%3C/svg%3E");
}

.sym-icon--users::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.9'/%3E%3Cpath d='M16 3.1A4 4 0 0 1 16 11'/%3E%3C/svg%3E");
}

.sym-icon--heart::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 14c1.5-1.5 3-3.3 3-5.5A4.5 4.5 0 0 0 12 5.5 4.5 4.5 0 0 0 2 8.5C2 10.7 3.5 12.5 5 14l7 7z'/%3E%3C/svg%3E");
}

.sym-icon--compass::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m16.2 7.8-2.4 6.4-6.4 2.4 2.4-6.4z'/%3E%3C/svg%3E");
}

.sym-icon--shield::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.sym-icon--video::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 8-6 4 6 4V8z'/%3E%3Crect x='2' y='6' width='14' height='12' rx='2'/%3E%3C/svg%3E");
}

.sym-icon--wallet::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12V7H5a2 2 0 0 1 0-4h14v4'/%3E%3Cpath d='M3 5v14a2 2 0 0 0 2 2h16v-5'/%3E%3Cpath d='M18 12a2 2 0 0 0 0 4h4v-4z'/%3E%3C/svg%3E");
}

.sym-icon--clock::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.sym-icon--star::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 3.1 6.3 6.9 1-5 4.9 1.2 6.8L12 17.8 5.8 21l1.2-6.8-5-4.9 6.9-1z'/%3E%3C/svg%3E");
}

.sym-icon--globe::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15 15 0 0 1 0 20 15 15 0 0 1 0-20z'/%3E%3C/svg%3E");
}

.sym-icon--sparkles::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.9 4.6L18.5 9.5 13.9 11.4 12 16l-1.9-4.6L5.5 9.5l4.6-1.9z'/%3E%3Cpath d='M19 15l.9 2.1L22 18l-2.1.9L19 21l-.9-2.1L16 18l2.1-.9z'/%3E%3C/svg%3E");
}

/* Icon-only decoration inside dark bands */
.sym-on-dark [class*="sym-icon--"]::before {
	background-color: rgba(255, 255, 255, 0.12);
}

.sym-card h3,
.is-style-sym-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	text-wrap: balance;
}

.sym-card p,
.is-style-sym-card p,
.is-style-sym-cards > .wp-block-column p {
	color: var(--wp--preset--color--muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.sym-card > :last-child,
.is-style-sym-card > :last-child {
	margin-bottom: 0;
}

/* Card rows: auto-fitting grid instead of the default columns flexbox, so
   4 cards degrade 4 -> 2 -> 1 instead of jumping straight to one column. */
.wp-block-columns.sym-card-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.15rem;
}

.wp-block-columns.sym-card-row > .wp-block-column {
	flex-basis: auto !important;
	display: flex;
	margin-left: 0 !important;
}

.wp-block-columns.sym-card-row > .wp-block-column > * {
	width: 100%;
	margin-top: 0;
}

/* Feature grid used by patterns */
.sym-grid {
	display: grid;
	gap: 1.15rem;
}

.sym-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sym-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sym-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ---------------------------------------------------------
   Stats
   --------------------------------------------------------- */

.sym-stat {
	height: 100%;
	padding: 1.5rem 1.35rem;
	border-radius: var(--sym-radius-lg);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--wp--preset--color--border);
	text-align: left;
	transition: transform 0.35s var(--sym-ease), box-shadow 0.35s var(--sym-ease);
}

.sym-stat p {
	margin: 0;
}

.sym-stat:hover {
	transform: translateY(-4px);
	box-shadow: var(--sym-shadow-card);
}

.sym-stat strong {
	display: block;
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2rem, 4.5vw, 2.9rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 0.55rem;
	background: linear-gradient(120deg, var(--wp--preset--color--green), var(--wp--preset--color--green-bright));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sym-stat span {
	display: block;
	font-size: 0.9rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.5;
}

/* ---------------------------------------------------------
   Steps
   --------------------------------------------------------- */

.sym-steps {
	counter-reset: sym-step;
	position: relative;
}

/* Dashed connector between the numbered badges. */
@media (min-width: 900px) {
	.sym-steps::before {
		content: "";
		position: absolute;
		top: 0;
		left: 14%;
		right: 14%;
		height: 2px;
		background: repeating-linear-gradient(
			90deg,
			rgba(31, 169, 127, 0.45) 0 8px,
			transparent 8px 18px
		);
	}
}

.sym-step {
	position: relative;
	counter-increment: sym-step;
	padding: 2.25rem 1.5rem 1.75rem;
	border-radius: var(--sym-radius-lg);
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	transition: transform 0.35s var(--sym-ease), box-shadow 0.35s var(--sym-ease),
		border-color 0.35s ease;
	height: 100%;
}

.sym-step::before {
	content: "0" counter(sym-step);
	position: absolute;
	top: -1.1rem;
	left: 1.5rem;
	display: grid;
	place-items: center;
	min-width: 2.6rem;
	height: 2.6rem;
	padding-inline: 0.55rem;
	border-radius: 999px;
	background: var(--wp--preset--color--green);
	color: #fff;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: -0.02em;
	box-shadow: 0 10px 22px -12px rgba(14, 92, 72, 0.8);
	transition: transform 0.35s var(--sym-ease), background 0.3s ease;
}

.sym-step:hover {
	transform: translateY(-6px);
	box-shadow: var(--sym-shadow-card);
	border-color: rgba(31, 169, 127, 0.35);
}

.sym-step:hover::before {
	transform: scale(1.08);
	background: var(--wp--preset--color--green-mid);
}

.sym-step h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
}

.sym-step p {
	margin: 0;
	color: var(--wp--preset--color--muted);
	font-size: 0.95rem;
}

/* ---------------------------------------------------------
   Psychologist cards
   --------------------------------------------------------- */

.sym-psych-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sym-psych-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--sym-radius-lg);
	overflow: hidden;
	box-shadow: var(--sym-shadow-soft);
	transition: transform 0.35s var(--sym-ease), box-shadow 0.35s var(--sym-ease),
		border-color 0.35s ease;
}

.sym-psych-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--sym-shadow-card);
	border-color: rgba(31, 169, 127, 0.35);
}

.sym-psych-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--wp--preset--color--mint-soft);
}

.sym-psych-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s var(--sym-ease);
}

.sym-psych-card:hover .sym-psych-card__media img {
	transform: scale(1.05);
}

.sym-psych-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(6, 43, 34, 0.35));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.sym-psych-card:hover .sym-psych-card__media::after {
	opacity: 1;
}

.sym-psych-card__fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	font-size: clamp(2.5rem, 6vw, 3.4rem);
	letter-spacing: -0.05em;
	color: rgba(14, 92, 72, 0.72);
	background:
		radial-gradient(70% 70% at 25% 20%, rgba(125, 227, 180, 0.55), transparent 70%),
		linear-gradient(140deg, #eef8f3, #dcf1e6);
}

.sym-psych-card__badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 2;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--wp--preset--color--green-deep);
	box-shadow: var(--sym-shadow-soft);
}

.sym-psych-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	flex: 1;
	padding: 1.3rem 1.4rem 1.5rem;
}

.sym-psych-card__title {
	margin: 0;
	font-size: 1.2rem;
	letter-spacing: -0.025em;
}

.sym-psych-card__title a {
	color: var(--wp--preset--color--green-deep);
	transition: color 0.2s ease;
}

.sym-psych-card:hover .sym-psych-card__title a {
	color: var(--wp--preset--color--green);
}

.sym-psych-card__meta {
	margin: 0;
	font-size: 0.9rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.5;
}

.sym-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sym-tags li {
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: var(--wp--preset--color--mint-soft);
	color: var(--wp--preset--color--green-deep);
	font-size: 0.75rem;
	font-weight: 600;
	transition: background 0.25s ease;
}

.sym-psych-card:hover .sym-tags li {
	background: #d3efe1;
}

.sym-psych-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--wp--preset--color--border);
}

.sym-price {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--wp--preset--color--green-deep);
	letter-spacing: -0.02em;
}

.sym-price small {
	display: block;
	font-family: var(--wp--preset--font-family--body);
	font-weight: 500;
	font-size: 0.72rem;
	color: var(--wp--preset--color--muted);
	letter-spacing: 0;
}

/* ---------------------------------------------------------
   Single psychologist
   --------------------------------------------------------- */

.sym-single-psych {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 900px) {
	.sym-single-psych {
		grid-template-columns: 1.15fr 0.85fr;
		align-items: start;
	}
}

.sym-booking-panel {
	position: sticky;
	top: 6.5rem;
	padding: 1.75rem;
	border-radius: var(--sym-radius-lg);
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	box-shadow: var(--sym-shadow-card);
}

.sym-booking-panel h2 {
	margin-top: 0;
	font-size: 1.4rem;
}

.sym-booking-note {
	margin-top: 0.9rem;
	font-size: 0.85rem;
	color: var(--wp--preset--color--muted);
}

.sym-psych-meta {
	margin: 1rem 0 1.75rem;
}

.sym-psych-meta__role {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	color: var(--wp--preset--color--muted);
}

.sym-psych-meta__price {
	margin: 0 0 1rem;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--green-deep);
}

.sym-psych-meta__price span {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--wp--preset--color--muted);
}

.sym-psych-meta .sym-tags {
	margin-bottom: 0.85rem;
}

.sym-booking-placeholder {
	padding: 2rem 1.25rem;
	border-radius: var(--sym-radius-md);
	border: 1.5px dashed rgba(31, 169, 127, 0.4);
	background: var(--wp--preset--color--mint-soft);
	color: var(--wp--preset--color--muted);
	text-align: center;
}

/* ---------------------------------------------------------
   Trust list
   --------------------------------------------------------- */

.sym-trust-list {
	display: grid;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sym-trust-list li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	padding: 1.15rem 1.25rem;
	border-radius: var(--sym-radius-md);
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	transition: transform 0.3s var(--sym-ease), box-shadow 0.3s var(--sym-ease),
		border-color 0.3s ease;
}

.sym-trust-list li:hover {
	transform: translateX(4px);
	box-shadow: var(--sym-shadow-card);
	border-color: rgba(31, 169, 127, 0.35);
}

.sym-trust-list li::before {
	content: "";
	flex-shrink: 0;
	width: 1.6rem;
	height: 1.6rem;
	margin-top: 0.15rem;
	border-radius: 50%;
	background: var(--wp--preset--color--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
		center / 0.85rem no-repeat;
}

.sym-trust-list strong {
	display: block;
	color: var(--wp--preset--color--green-deep);
	margin-bottom: 0.15rem;
}

.sym-trust-list li > div {
	font-size: 0.95rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.6;
}

/* Block-editor friendly variant: core groups with an icon class. */
.sym-trust-stack {
	display: grid;
	gap: 0.85rem;
}

.sym-trust-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.2rem 1.35rem;
	border-radius: var(--sym-radius-md);
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	transition: transform 0.3s var(--sym-ease), box-shadow 0.3s var(--sym-ease),
		border-color 0.3s ease;
}

.sym-trust-item:hover {
	transform: translateX(5px);
	box-shadow: var(--sym-shadow-card);
	border-color: rgba(31, 169, 127, 0.35);
}

.sym-trust-item[class*="sym-icon--"]::before {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 13px;
	background-size: 1.25rem;
	margin-bottom: 0;
	flex-shrink: 0;
}

.sym-trust-item p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--wp--preset--color--muted);
}

.sym-trust-item p strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 1.02rem;
	color: var(--wp--preset--color--green-deep);
}

/* ---------------------------------------------------------
   Media panel (section image)
   --------------------------------------------------------- */

.sym-media {
	position: relative;
	border-radius: var(--sym-radius-xl);
	overflow: hidden;
	box-shadow: var(--sym-shadow-card);
}

.sym-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--sym-ease);
}

.sym-media:hover img {
	transform: scale(1.04);
}

/* ---------------------------------------------------------
   CTA band
   --------------------------------------------------------- */

.sym-cta-band,
.is-style-sym-cta-band {
	position: relative;
	overflow: hidden;
	padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
	border-radius: var(--sym-radius-xl);
	background: linear-gradient(135deg, #062b22 0%, #0e5c48 55%, #12785e 100%);
	color: #fff;
	text-align: center;
	isolation: isolate;
}

.sym-cta-band::before,
.sym-cta-band::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	z-index: -1;
}

.sym-cta-band::before {
	width: 340px;
	height: 340px;
	top: -140px;
	right: -80px;
	background: rgba(125, 227, 180, 0.4);
	animation: sym-float 18s ease-in-out infinite;
}

.sym-cta-band::after {
	width: 300px;
	height: 300px;
	bottom: -150px;
	left: -60px;
	background: rgba(31, 169, 127, 0.45);
	animation: sym-float 20s ease-in-out infinite reverse;
}

.sym-cta-band h2,
.sym-cta-band p {
	color: #fff !important;
}

.sym-cta-band h2 {
	text-wrap: balance;
}

.sym-cta-band .sym-eyebrow,
.is-style-sym-cta-band .sym-eyebrow {
	color: var(--wp--preset--color--mint);
}

.sym-cta-band .sym-eyebrow::before,
.is-style-sym-cta-band .sym-eyebrow::before {
	background: var(--wp--preset--color--mint);
}

.sym-eyebrow--center {
	display: flex;
	justify-content: center;
}

.sym-cta-meta {
	margin-top: 1.5rem !important;
	color: rgba(255, 255, 255, 0.72) !important;
}

.sym-cta-band .wp-block-button__link {
	background: #fff !important;
	color: var(--wp--preset--color--green-deep) !important;
}

.sym-cta-band .wp-block-button.is-style-sym-secondary .wp-block-button__link {
	background: transparent !important;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}

.sym-cta-band .wp-block-button.is-style-sym-secondary .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.14) !important;
	border-color: rgba(255, 255, 255, 0.7) !important;
}

.sym-cta-band .wp-block-button__link:hover {
	background: var(--wp--preset--color--mint) !important;
	box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.6);
}

/* Dark section helper */
.sym-on-dark,
.sym-on-dark h1,
.sym-on-dark h2,
.sym-on-dark h3,
.sym-on-dark p,
.sym-on-dark li {
	color: #fff;
}

.sym-on-dark .sym-eyebrow,
.sym-on-dark .sym-section-label {
	color: var(--wp--preset--color--mint);
}

.sym-on-dark .sym-eyebrow::before,
.sym-on-dark .sym-section-label::before {
	background: var(--wp--preset--color--mint);
}

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.sym-faq details {
	margin-bottom: 0.7rem;
	padding: 1.1rem 1.3rem;
	border-radius: var(--sym-radius-md);
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sym-faq details[open] {
	border-color: rgba(31, 169, 127, 0.4);
	box-shadow: var(--sym-shadow-card);
}

.sym-faq summary {
	position: relative;
	cursor: pointer;
	list-style: none;
	padding-right: 2.25rem;
	font-weight: 600;
	color: var(--wp--preset--color--green-deep);
	transition: color 0.2s ease;
}

.sym-faq summary:hover {
	color: var(--wp--preset--color--green);
}

.sym-faq summary::-webkit-details-marker {
	display: none;
}

.sym-faq summary::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1.5rem;
	height: 1.5rem;
	margin-top: -0.75rem;
	border-radius: 50%;
	background: var(--wp--preset--color--mint-soft)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
		center / 0.8rem no-repeat;
	transition: transform 0.3s var(--sym-ease), background-color 0.3s ease;
}

.sym-faq details[open] summary::after {
	transform: rotate(180deg);
	background-color: var(--wp--preset--color--mint);
}

.sym-faq details p {
	margin: 0.85rem 0 0;
	color: var(--wp--preset--color--muted);
	animation: sym-fade 0.35s var(--sym-ease);
}

@keyframes sym-fade {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.sym-footer {
	position: relative;
	margin-top: 0;
	background: var(--wp--preset--color--green-deep);
	color: rgba(255, 255, 255, 0.75);
	overflow: hidden;
}

.sym-footer::before {
	content: "";
	position: absolute;
	top: -180px;
	left: 50%;
	transform: translateX(-50%);
	width: 640px;
	height: 360px;
	border-radius: 50%;
	background: rgba(31, 169, 127, 0.22);
	filter: blur(80px);
	pointer-events: none;
}

.sym-footer > * {
	position: relative;
}

.sym-footer a {
	color: rgba(255, 255, 255, 0.78) !important;
	transition: color 0.2s ease, transform 0.2s ease;
	display: inline-block;
}

.sym-footer a:hover {
	color: #fff !important;
	transform: translateX(3px);
}

.sym-footer h3,
.sym-footer .wp-block-heading {
	margin-bottom: 0.9rem;
	color: #fff !important;
	font-family: var(--wp--preset--font-family--body) !important;
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sym-footer .wp-block-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.55rem;
}

.sym-footer .wp-block-list a,
.sym-footer p {
	font-size: 0.93rem;
}

.sym-footer .sym-brand {
	font-family: var(--wp--preset--font-family--display) !important;
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	letter-spacing: -0.04em !important;
	text-transform: lowercase !important;
	color: #fff !important;
}

/* ---------------------------------------------------------
   Forms
   --------------------------------------------------------- */

.sym-contact-form input,
.sym-contact-form textarea,
.wpcf7 input,
.wpcf7 textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1.5px solid var(--wp--preset--color--border);
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: var(--wp--preset--color--ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--wp--preset--color--green-bright);
	box-shadow: 0 0 0 4px rgba(31, 169, 127, 0.14);
}

/* ---------------------------------------------------------
   Booking plugin harmonisation
   --------------------------------------------------------- */

.creavibc-booking-inline,
.creavibc-booking-popup,
.booktics-booking-form {
	font-family: var(--wp--preset--font-family--body) !important;
}

/* ---------------------------------------------------------
   Editor block styles
   --------------------------------------------------------- */

.is-style-sym-cta-band {
	padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
	border-radius: var(--sym-radius-xl);
	background: linear-gradient(135deg, #062b22 0%, #0e5c48 55%, #12785e 100%);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.is-style-sym-cta-band :where(h1, h2, h3, h4, p, li) {
	color: #fff;
}

.is-style-sym-cta-band .wp-block-button__link {
	background: #fff !important;
	color: var(--wp--preset--color--green-deep) !important;
}

.is-style-sym-cta-band .wp-block-button__link:hover {
	background: var(--wp--preset--color--mint) !important;
}

.is-style-sym-cards {
	align-items: stretch;
}

.is-style-sym-checklist {
	list-style: none;
	padding-left: 0;
	display: grid;
	gap: 0.65rem;
}

.is-style-sym-checklist li {
	position: relative;
	padding-left: 2.1rem;
	color: var(--wp--preset--color--muted);
}

.is-style-sym-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	background: var(--wp--preset--color--mint-soft)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C48' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
		center / 0.75rem no-repeat;
}

.wp-block-image.is-style-sym-framed img {
	border-radius: var(--sym-radius-xl);
	box-shadow: var(--sym-shadow-card);
	transition: transform 0.8s var(--sym-ease), box-shadow 0.4s ease;
}

.wp-block-image.is-style-sym-framed:hover img {
	transform: translateY(-4px) scale(1.01);
	box-shadow: var(--sym-shadow-lift);
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 1024px) {
	.sym-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.sym-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sym-booking-panel {
		position: static;
	}

	.sym-float-card--meet {
		left: 8px;
	}

	.sym-float-card--rating {
		right: 8px;
	}
}

@media (max-width: 782px) {
	.sym-usp-row {
		grid-template-columns: 1fr;
	}

	.sym-hero h1 {
		max-width: none;
	}

	.sym-hero__media {
		aspect-ratio: 4 / 3;
	}

	.sym-step::before {
		position: static;
		margin-bottom: 0.9rem;
	}

	.sym-step {
		padding-top: 1.5rem;
	}
}

@media (max-width: 600px) {
	.sym-grid--4,
	.sym-grid--3,
	.sym-grid--2 {
		grid-template-columns: 1fr;
	}

	.sym-float-card {
		display: none;
	}

	/* Keep logo + hamburger + CTA on one line. */
	.sym-header .wp-block-button__link {
		padding: 0.6rem 1.05rem !important;
		font-size: 0.875rem !important;
	}

	.sym-header .wp-block-buttons {
		gap: 0.5rem;
	}

	.sym-psych-card__footer {
		flex-wrap: wrap;
	}

	.sym-trust-item {
		padding: 1.05rem 1.1rem;
	}

	.sym-pill {
		font-size: 0.8rem;
	}
}

@media (max-width: 420px) {
	/* Below this the header CTA competes with the brand; the hero CTA carries it. */
	.sym-header .wp-block-buttons {
		display: none;
	}
}
