/* ============================================
   PAGE TEMPLATES - SHARED STYLES
   ============================================ */

/* 404 Page */
.sfd-404-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
	text-align: center;
	background: transparent;
	border-radius: 24px;
	padding: 4rem 2rem;
	overflow: hidden;
}

/* Floating blobs behind the 404 content, same style as hero pricing */
.sfd-404-blobs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

/* Centre colour-shifting blob */
.sfd-404-wrapper::before {
	content: '';
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.22;
	mix-blend-mode: multiply;
	filter: blur(48px);
	animation: sfd404ColourShift 10s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.sfd-404-blobs::before,
.sfd-404-blobs::after,
.sfd-404-wrapper::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	opacity: 0.2;
	mix-blend-mode: multiply;
	animation: sfd404Float 20s ease-in-out infinite;
}

/* Large pink blob (bottom-left) */
.sfd-404-blobs::before {
	width: 420px;
	height: 420px;
	background: #EE728E;
	bottom: -100px;
	left: -120px;
	animation-delay: 0s;
}

/* Large green blob (top-right) */
.sfd-404-blobs::after {
	width: 380px;
	height: 380px;
	background: #8CD933;
	top: -80px;
	right: -100px;
	animation-delay: -6s;
}

/* Small yellow blob (middle) */
.sfd-404-wrapper::after {
	width: 240px;
	height: 240px;
	background: #FFE066;
	bottom: 20%;
	right: 25%;
	animation-delay: -12s;
}

@keyframes sfd404Float {
	0%   { transform: translate(0, 0); }
	25%  { transform: translate(12px, -8px); }
	50%  { transform: translate(-6px, 10px); }
	75%  { transform: translate(8px, 4px); }
	100% { transform: translate(0, 0); }
}

@keyframes sfd404ColourShift {
	0%   { background: #EE728E; }
	25%  { background: #8CD933; }
	50%  { background: #F9B233; }
	75%  { background: #4A9FDB; }
	100% { background: #EE728E; }
}

.sfd-404-content {
	position: relative;
	z-index: 1;
}

.sfd-404-content .wp-block-heading {
	margin-bottom: 0.5rem;
}


/* Hero Variations */
.sfd-hero-center {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

/* Stats Section (Results Page) */
.sfd-stats-section {
	padding: 60px 20px;
	background: white;
}

.sfd-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.sfd-stat-card {
	text-align: center;
	padding: 30px;
	background: #f8f9fa;
	border-radius: 12px;
}

.sfd-stat-number {
	font-size: 48px;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1;
	margin-bottom: 10px;
}

.sfd-stat-label {
	font-size: 16px;
	color: #6c757d;
	font-weight: 500;
}

/* Steps Grid (Our Program Page) */
.sfd-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.sfd-step-card {
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sfd-step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.sfd-step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-size: 32px;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.sfd-step-title {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 10px;
}

.sfd-step-text {
	font-size: 16px;
	color: #6c757d;
	line-height: 1.6;
}

/* Features Grid (Pricing Page) */
.sfd-included-section {
	padding: 80px 20px;
	background: #f8f9fa;
}

.sfd-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 40px auto 0;
}

.sfd-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sfd-feature-icon {
	width: 28px;
	height: 28px;
	background: #10b981;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

.sfd-feature-text {
	font-size: 16px;
	color: #2c3e50;
	font-weight: 500;
}

/* CTA Sections */
.sfd-cta-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	text-align: center;
	color: white;
}

.sfd-cta-section .sfd-section-title,
.sfd-cta-section .sfd-section-subtitle {
	color: white;
}

.sfd-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

/* Single Product Page */
.sfd-single-product-page {
	background: var(--wp--preset--color--background);
}

/* Override theme's global reset to allow constrained layout to work */
.sfd-single-product-page.is-layout-constrained > * {
	max-width: 1280px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Breadcrumbs */
.sfd-single-product-page .wc-block-breadcrumbs {
	font-size: 14px;
	color: #6c757d;
}

.sfd-single-product-page .wc-block-breadcrumbs a {
	color: var(--wp--preset--color--dark-green);
	text-decoration: none;
	transition: all 0.3s ease;
}

.sfd-single-product-page .wc-block-breadcrumbs a:hover {
	color: var(--wp--preset--color--green);
	text-decoration: underline;
}

/* Product Image Gallery */
.sfd-single-product-page .wc-block-product-image-gallery {
	position: sticky;
	top: 20px;
}

.sfd-single-product-page .wc-block-product-image-gallery img {
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Add to Cart Form — quantity + button row */
.sfd-single-product-page .wc-block-add-to-cart-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* Quantity selector — bordered container with minus/plus */
.sfd-single-product-page .wc-block-add-to-cart-form .quantity {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid #E6E6E6;
	border-radius: 12px;
	overflow: hidden;
	height: 44px;
	width: 131px;
	flex-shrink: 0;
}

.sfd-single-product-page .wc-block-add-to-cart-form .quantity .minus,
.sfd-single-product-page .wc-block-add-to-cart-form .quantity .plus {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: #646464;
	font-size: 20px;
	font-weight: 400;
	cursor: pointer;
	transition: background 0.15s;
	padding: 0;
	line-height: 1;
}

.sfd-single-product-page .wc-block-add-to-cart-form .quantity .minus:hover,
.sfd-single-product-page .wc-block-add-to-cart-form .quantity .plus:hover {
	background: #f5f5f5;
}

.sfd-single-product-page .wc-block-add-to-cart-form .quantity input.qty {
	width: 43px;
	height: 44px;
	border: none;
	border-left: 1.5px solid #E6E6E6;
	border-right: 1.5px solid #E6E6E6;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #262626;
	background: transparent;
	padding: 0;
	-moz-appearance: textfield;
}

.sfd-single-product-page .wc-block-add-to-cart-form .quantity input.qty::-webkit-outer-spin-button,
.sfd-single-product-page .wc-block-add-to-cart-form .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Add to Cart Button */
.sfd-single-product-page .wc-block-add-to-cart-form button {
	background: #8CD933;
	color: #262626;
	border: none;
	padding: 0 24px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.15s ease;
	height: 44px;
	flex: 1;
	min-width: 200px;
	max-width: 480px;
	box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.sfd-single-product-page .wc-block-add-to-cart-form button:hover {
	background: #7cc92e;
	box-shadow: 0 2px 4px rgba(10, 13, 18, 0.1);
}

.sfd-single-product-page .wc-block-add-to-cart-form button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Related Products Section */
.sfd-related-products.is-layout-constrained > * {
	max-width: 1280px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Related Products Grid */
.sfd-related-products .wc-block-grid__products,
.sfd-related-products .wp-block-query,
.sfd-related-products .products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.sfd-related-products .wc-block-grid__product,
.sfd-related-products .product {
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.sfd-stats-grid,
	.sfd-steps-grid,
	.sfd-features-grid {
		grid-template-columns: 1fr;
	}

	.sfd-cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.sfd-cta-buttons .sfd-btn {
		width: 100%;
		max-width: 100%;
	}

	.sfd-stat-number {
		font-size: 36px;
	}

	/* Tighten vertical breathing room — 80px top/bottom feels sparse on phones */
	.sfd-stats-section,
	.sfd-included-section,
	.sfd-cta-section {
		padding: 48px 16px;
	}
	
	/* Single Product Page Mobile */
	.sfd-single-product-page {
		padding: 40px 15px;
	}
	
	.sfd-single-product-page .wp-block-post-title {
		font-size: 24px;
	}
	
	.sfd-single-product-page .wc-block-components-product-price {
		font-size: 22px;
	}
	
	.sfd-single-product-page .wc-block-add-to-cart-form button {
		max-width: 100%;
	}
	
	.sfd-single-product-page .wc-block-product-image-gallery {
		position: relative;
		top: 0;
		margin-bottom: 30px;
	}
	
	.sfd-related-products {
		padding: 60px 15px;
	}
	
	.sfd-related-products .sfd-section-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
}

/* ── sfd/text-section heading centering ────────────────────── */
.sfd-text-section .section__heading {
	text-align: center;
}

/* ============================================
   COACH DETAIL CARDS (Full Layout)
   ============================================ */
.sfd-coach-detail {
	background: #fff;
	padding: 60px 20px;
	position: relative;
}

/* Single-column grid — each card is a row */
.sfd-coach-detail__grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: start;
}

/* Each card is a flex row with two columns */
.sfd-coach-detail__card {
	display: flex;
	flex-direction: row;
	gap: 40px;
	align-items: flex-start;
}

/* Left column: avatar + content stacked vertically */
.sfd-coach-detail__card-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
	min-width: 0;
}

/* ── Avatar column (avatar + meta side by side) ── */
.sfd-coach-detail__card-avatar-col {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0;
	position: relative;
	z-index: 2;
}

/* ── Content column (bio only) ── */
.sfd-coach-detail__card-content-col {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	position: relative;
	z-index: 50;
}

/* Pointer arrow from content-col pointing up toward the avatar */
.sfd-coach-detail__card-content-col::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 60px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-left: 1px solid #E2E8F0;
	border-top: 1px solid #E2E8F0;
	transform: rotate(45deg);
}

/* Right column: labels */
.sfd-coach-detail__card-labels {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 12px;
	max-width: 500px;
	flex-shrink: 0;
}

/* ── Avatar — bigger, broken out of card ── */
.sfd-coach-detail__card-avatar {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	background: #f0f0f0;
	flex-shrink: 0;
	position: relative;
	transform: rotate(-3deg);
	transition: transform 0.3s ease;
	border: 4px solid #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.sfd-coach-detail__card--content-right .sfd-coach-detail__card-avatar {
	transform: rotate(3deg);
}

.sfd-coach-detail__card-avatar:hover {
	transform: rotate(0deg) scale(1.05);
}

.sfd-coach-detail__card-avatar::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 3px solid rgba(238, 114, 142, 0.3);
	z-index: -1;
}

.sfd-coach-detail__card-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ── Meta (name + role) sits next to avatar ── */
.sfd-coach-detail__card-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	word-break: break-word;
}

.sfd-coach-detail__card-name {
	font-family: 'Nunito', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #181D27;
	margin: 0;
}

.sfd-coach-detail__card-role {
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #EE728E;
	margin: 0;
}

.sfd-coach-detail__card-bio {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #535862;
	margin: 0;
}

.sfd-coach-detail__floating-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	border-radius: 100px;
	padding: 8px 16px 8px 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.sfd-coach-detail__floating-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}

.sfd-coach-detail__floating-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.sfd-coach-detail__floating-text-wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sfd-coach-detail__floating-label-title {
	font-family: 'Nunito', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #808080;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
}

.sfd-coach-detail__floating-text {
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #262626;
	line-height: 1.3;
}


@media (max-width: 900px) {
	.sfd-coach-detail__grid {
		grid-template-columns: 1fr;
	}

	.sfd-coach-detail__card {
		flex-direction: column;
		gap: 24px;
	}

	.sfd-coach-detail__card-left {
		order: 1;
	}

	.sfd-coach-detail__card-labels {
		order: 2;
		align-items: flex-start;
		max-width: 100%;
	}

	.sfd-coach-detail__card-avatar {
		margin: 0 auto;
		transform: none !important;
	}

	.sfd-coach-detail__card-avatar-col {
		flex-direction: column;
		text-align: center;
	}

	.sfd-coach-detail__card-content-col {
		text-align: center;
		align-items: center;
	}
}

/* ============================================
   BLOG ARCHIVE, FEATURED STORIES SLIDER
   ============================================ */

.sfd-faq-alt-section {
	padding: 3rem 1.5rem;
}

.sfd-faq-alt-inner {
	max-width: 1280px;
	margin: 0 auto;
}

/* Single column card layout for FAQ items */
.sfd-faq-alt-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}


/* FAQ item as a card */
.sfd-faq-alt-item {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 1.25rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
	transition: box-shadow 0.2s ease;
}

.sfd-faq-alt-item:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}



.sfd-faq-alt-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.sfd-faq-alt-heading {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0;
	text-align: left;
}

/* Color variants for heading */
.sfd-faq-alt--pink .sfd-faq-alt-heading {
	color: #E91E8C;
}

.sfd-faq-alt--orange .sfd-faq-alt-heading {
	color: #F47B20;
}

.sfd-faq-alt--green .sfd-faq-alt-heading {
	color: #8CD933;
}


.sfd-faq-alt-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.75rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	color: inherit;
	gap: 1rem;
}


.sfd-faq-alt-question-text {
	flex: 1;
}

.sfd-faq-alt-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	transition: transform 0.25s ease;
}

.sfd-faq-alt-item.is-open .sfd-faq-alt-icon {
	transform: rotate(45deg);
}

.sfd-faq-alt-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.sfd-faq-alt-item.is-open .sfd-faq-alt-answer {
	max-height: 1000px;
}

.sfd-faq-alt-answer-inner {
	padding: 0 0 1.25rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4A5568;
}

.sfd-faq-alt-answer-inner p {
	margin: 0 0 0.75rem;
}

.sfd-faq-alt-answer-inner p:last-child {
	margin-bottom: 0;
}

.sfd-faq-alt-answer-inner a {
	text-decoration: underline;
}

/* Color variant for answer backgrounds */
.sfd-faq-alt--pink .sfd-faq-alt-answer-inner {
	color: #4A5568;
}

.sfd-faq-alt--orange .sfd-faq-alt-answer-inner {
	color: #4A5568;
}

.sfd-faq-alt--green .sfd-faq-alt-answer-inner {
	color: #4A5568;
}

/* Responsive */
@media (max-width: 640px) {
	.sfd-faq-alt-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.sfd-faq-alt-heading {
		font-size: 1.4rem;
	}
}


/* ============================================
   BLOG ARCHIVE, FEATURED STORIES SLIDER
   ============================================ */

.sfd-blog-hero-wrap {
	margin-top: 32px;
}

.sfd-blog-hero {
	position: relative;
	width: 100%;
}

/* ── Slider container ──────────────────────── */
.sfd-blog-hero__slider {
	position: relative;
	overflow: hidden;
}

/* ── Slides track ──────────────────────────── */
.sfd-blog-hero__slides {
	position: relative;
	width: 100%;
	height: 460px;
}

/* ── Individual slide ──────────────────────── */
.sfd-blog-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: stretch;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	z-index: 1;
}

.sfd-blog-hero-slide--active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* ── Stretched link covers the whole slide ──── */
.sfd-blog-hero-slide__full-link {
	position: absolute;
	inset: 0;
	z-index: 0;
	text-decoration: none;
}


/* ── Slide image (right column, pastel bg + circle) */
.sfd-blog-hero-slide__image {
	order: 2;
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* push circle toward content */
	padding: 24px 32px 24px 40px;
}

.sfd-blog-hero-slide__image-wrap {
	position: relative;
	flex-shrink: 0;
}

.sfd-blog-hero-slide__img-main {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	box-shadow: 0 0 0 6px rgba(255,255,255,0.7), 0 12px 40px rgba(0,0,0,0.12);
}

/* ── Skeleton loading states ───────────────── */
.sfd-blog-hero-slide__img-main.sfd-skeleton,
.sfd-blog-hero-slide__img-secondary.sfd-skeleton,
.sfd-blog-hero-slide__circle-fallback.sfd-skeleton {
	background: #E2E8F0;
	animation: sfdSkeletonPulse 1.5s ease-in-out infinite;
}

.sfd-blog-hero-slide__content .sfd-skeleton-text {
	background: #E2E8F0;
	border-radius: 6px;
	animation: sfdSkeletonPulse 1.5s ease-in-out infinite;
	display: inline-block;
}

.sfd-blog-hero-slide__content .sfd-skeleton-text--short {
	width: 80px;
	height: 14px;
	margin-bottom: 12px;
}

.sfd-blog-hero-slide__content .sfd-skeleton-text--medium {
	width: 200px;
	height: 14px;
	margin-bottom: 8px;
}

.sfd-blog-hero-slide__content .sfd-skeleton-text--long {
	width: 100%;
	max-width: 340px;
	height: 14px;
	margin-bottom: 8px;
}

.sfd-blog-hero-slide__content .sfd-skeleton-text--title {
	width: 280px;
	height: 28px;
	margin-bottom: 12px;
}

.sfd-blog-hero-slide__content .sfd-skeleton-text--button {
	width: 120px;
	height: 16px;
	margin-top: 16px;
}

@keyframes sfdSkeletonPulse {
	0%   { opacity: 0.6; }
	50%  { opacity: 1; }
	100% { opacity: 0.6; }
}

.sfd-blog-hero-slide__img-secondary {
	position: absolute;
	bottom: -24px;
	right: -48px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Offset coloured circle when no secondary image exists */
.sfd-blog-hero-slide__circle-fallback {
	position: absolute;
	bottom: -24px;
	right: -48px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	display: block;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.sfd-blog-hero-slide__circle-fallback--pink {
	background: #EC4899;
}

.sfd-blog-hero-slide__circle-fallback--green {
	background: #8CD933;
}

.sfd-blog-hero-slide__circle-fallback--orange {
	background: #F9B233;
}

/* ── Overlay removed ─────────────────────────── */
.sfd-blog-hero-slide__overlay {
	display: none;
}

/* ── Slide content (left, aligned to 1280px container) */
.sfd-blog-hero-slide__content {
	order: 1;
	flex-shrink: 0;
	width: 50%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 48px 48px 48px 20px;
	color: #000;
	background: #fff;
}

/* Decorative blobs, far left of content column */
.sfd-blog-hero-slide__content::before {
	content: '';
	position: absolute;
	top: -40px;
	left: -100px;
	width: 260px;
	height: 240px;
	background: rgba(243, 65, 136, 0.08);
	border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
	pointer-events: none;
	z-index: 0;
	animation: sfd-blob-float-1 18s ease-in-out infinite;
}

.sfd-blog-hero-slide__content::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: -60px;
	width: 200px;
	height: 190px;
	background: rgba(249, 178, 51, 0.10);
	border-radius: 45% 55% 62% 38% / 52% 48% 52% 48%;
	pointer-events: none;
	z-index: 0;
	animation: sfd-blob-float-2 22s ease-in-out infinite;
}

@media (min-width: 1280px) {
	.sfd-blog-hero-slide__content {
		padding-left: calc((100vw - 1280px) / 2);
	}
}

.sfd-blog-hero-slide__top-row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.sfd-blog-hero-slide__category {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sfd-blog-hero-slide__category a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	background: #fff;
	border: 1px solid #E4E4E4;
	border-radius: 100px;
	font-family: 'Nunito Sans', 'Nunito', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #808080;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.sfd-blog-hero-slide__category a::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23808080' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23808080'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.sfd-blog-hero-slide__category a:hover {
	color: #262626;
}

/* Brand colour variants, applied via data-sfd-tag-color */
.sfd-blog-hero-slide__category a[data-sfd-tag-color="pink"] {
	background: #fff0f5;
	border-color: #ffc2d8;
	color: #C80468;
}
.sfd-blog-hero-slide__category a[data-sfd-tag-color="pink"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23C80468' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23C80468'/%3E%3C/svg%3E");
}
.sfd-blog-hero-slide__category a[data-sfd-tag-color="pink"]:hover {
	background: #ffe0ed;
	color: #9e0350;
}

.sfd-blog-hero-slide__category a[data-sfd-tag-color="green"] {
	background: #f3ffe6;
	border-color: #b8e87a;
	color: #325D00;
}
.sfd-blog-hero-slide__category a[data-sfd-tag-color="green"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23325D00' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23325D00'/%3E%3C/svg%3E");
}
.sfd-blog-hero-slide__category a[data-sfd-tag-color="green"]:hover {
	background: #dff5bb;
	color: #204000;
}

.sfd-blog-hero-slide__category a[data-sfd-tag-color="orange"] {
	background: #fff8ea;
	border-color: #fdd98a;
	color: #9a5c00;
}
.sfd-blog-hero-slide__category a[data-sfd-tag-color="orange"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%239a5c00' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%239a5c00'/%3E%3C/svg%3E");
}
.sfd-blog-hero-slide__category a[data-sfd-tag-color="orange"]:hover {
	background: #fdecc4;
	color: #7a4800;
}

.sfd-blog-hero-slide__title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 8px;
	color: #000000;
}

.sfd-blog-hero-slide__excerpt {
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 16px;
	opacity: 0.9;
	max-width: 450px;
}

.sfd-blog-hero-slide__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	opacity: 0.8;
}

.sfd-blog-hero-slide__reading-time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}



.sfd-blog-hero-slide__read-more {
	display: block;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 700;
	color: #8CD933;
	transition: color 0.2s;
}

.sfd-blog-hero-slide__link:hover .sfd-blog-hero-slide__read-more {
	color: #a8e85e;
}

/* ── Prev / Next buttons ───────────────────── */
.sfd-blog-hero__slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);
	border: none;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	transition: background 0.2s;
}

.sfd-blog-hero__slider-btn:hover {
	background: rgba(255, 255, 255, 0.4);
}

.sfd-blog-hero__slider-btn--prev {
	left: 16px;
}

.sfd-blog-hero__slider-btn--next {
	right: 16px;
}

/* ── Dot navigation ────────────────────────── */
.sfd-blog-hero__slider-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 8px;
}

.sfd-blog-hero__slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.6);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, border-color 0.2s;
}

.sfd-blog-hero__slider-dot:hover {
	border-color: #fff;
}

.sfd-blog-hero-slider-dot--active {
	background: #fff;
	border-color: #fff;
}

/* ── Placeholder (no posts) ────────────────── */
.sfd-blog-hero__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	background: #F3FFE6;
	text-align: center;
}

.sfd-blog-hero__placeholder-icon {
	margin-bottom: 16px;
	opacity: 0.5;
}

.sfd-blog-hero__placeholder-text {
	font-size: 18px;
	color: #569E03;
	font-weight: 600;
}

/* ============================================
   BLOG ARCHIVE, BLOG CARD CATEGORY PILLS
   ============================================ */

.sfd-blog-card__meta {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.sfd-blog-card__date {
	font-family: 'Nunito', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #999;
	white-space: nowrap;
}

.sfd-blog-card__date time {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}


.sfd-blog-card__category {
	display: flex;
	flex-direction: row;
	gap: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	/* Faded edges for scroll effect */
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		#000 12px,
		#000 calc(100% - 12px),
		transparent 100%
	);
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		#000 12px,
		#000 calc(100% - 12px),
		transparent 100%
	);
}

.sfd-blog-card__category::-webkit-scrollbar {
	display: none;
}

/* Hide the comma separator between category links */
.sfd-blog-card__category .wp-block-post-terms__separator {
	display: none;
}

.sfd-blog-card__category a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	background: #fff;
	border: 1px solid #E4E4E4;
	border-radius: 100px;
	font-family: 'Nunito Sans', 'Nunito', sans-serif;
	font-size: 10px;
	font-weight: 600;
	color: #808080;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.sfd-blog-card__category a::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23808080' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23808080'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.sfd-blog-card__category a:hover {
	color: #262626;
}

/* Brand colour variants, applied via data-sfd-tag-color */
.sfd-blog-card__category a[data-sfd-tag-color="pink"] {
	background: #fff0f5;
	border-color: #ffc2d8;
	color: #C80468;
}
.sfd-blog-card__category a[data-sfd-tag-color="pink"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23C80468' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23C80468'/%3E%3C/svg%3E");
}
.sfd-blog-card__category a[data-sfd-tag-color="pink"]:hover {
	background: #ffe0ed;
	color: #9e0350;
}

.sfd-blog-card__category a[data-sfd-tag-color="green"] {
	background: #f3ffe6;
	border-color: #b8e87a;
	color: #325D00;
}
.sfd-blog-card__category a[data-sfd-tag-color="green"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23325D00' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23325D00'/%3E%3C/svg%3E");
}
.sfd-blog-card__category a[data-sfd-tag-color="green"]:hover {
	background: #dff5bb;
	color: #204000;
}

.sfd-blog-card__category a[data-sfd-tag-color="orange"] {
	background: #fff8ea;
	border-color: #fdd98a;
	color: #9a5c00;
}
.sfd-blog-card__category a[data-sfd-tag-color="orange"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%239a5c00' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%239a5c00'/%3E%3C/svg%3E");
}
.sfd-blog-card__category a[data-sfd-tag-color="orange"]:hover {
	background: #fdecc4;
	color: #7a4800;
}

/* ============================================
   BLOG ARCHIVE, CATEGORY FILTER PILLS
   ============================================ */

.sfd-blog-filters {
	padding: 24px 0;
	border-bottom: 1px solid #E4E4E4;
}

.sfd-blog-filter__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.sfd-blog-tabs-scroll-wrap {
	position: relative;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	/* fade hint on right edge */
	mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%);
}

.sfd-blog-tabs-scroll-wrap::-webkit-scrollbar {
	display: none;
}

.sfd-blog-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 6px;
	padding: 8px;
	background: #ffffff;
}

.sfd-blog-tab {
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	border: 1px solid #D9D9D9;
	border-radius: 100px;
	background: #ffffff;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #646464;
	cursor: pointer;
	transition: all 0.15s;
	white-space: nowrap;
}

.sfd-blog-tab:hover {
	border-color: #8CD933;
	color: #262626;
}

.sfd-blog-tab--active {
	background: #8CD933;
	border-color: #8CD933;
	color: #262626;
	font-weight: 700;
}

.sfd-blog-tab--active:hover {
	background: #8CD933;
	border-color: #8CD933;
	color: #262626;
	font-weight: 700;
}

/* Mobile dropdown select — hidden on desktop, shown on mobile */
.sfd-blog-filter__select {
	display: none;
}

@media (max-width: 768px) {
	.sfd-blog-tabs-scroll-wrap {
		display: none;
	}

	.sfd-blog-filter__select {
		display: block;
		width: 100%;
		padding: 10px 16px;
		border: 1px solid #D9D9D9;
		border-radius: 100px;
		background: #ffffff;
		font-family: 'Nunito', sans-serif;
		font-size: 14px;
		font-weight: 600;
		color: #262626;
		cursor: pointer;
		appearance: auto;
		-webkit-appearance: auto;
	}

	.sfd-blog-filter__select:focus {
		outline: none;
		border-color: #8CD933;
		box-shadow: 0 0 0 3px rgba(140, 217, 51, 0.15);
	}
}

/* ============================================
   SINGLE POST, SIDEBAR SUBSCRIBE FORM
   ============================================ */

.sfd-single-subscribe {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: left;
}

.sfd-single-subscribe__eyebrow {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #8CD933;
	margin: 0 0 8px;
}

.sfd-single-subscribe__title {
	font-size: 22px;
	font-weight: 800;
	color: #181D27;
	margin: 0 0 12px;
}

.sfd-single-subscribe__text {
	font-size: 14px;
	line-height: 1.6;
	color: #535862;
	margin: 0 0 24px;
}

.sfd-single-subscribe__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sfd-single-subscribe__input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	color: #181D27;
	background: #fff;
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.sfd-single-subscribe__input:focus {
	border-color: #8CD933;
	box-shadow: 0 0 0 3px rgba(140, 217, 51, 0.15);
}

.sfd-single-subscribe__btn {
	width: 100%;
	padding: 12px 24px;
	background: #8CD933;
	color: #181D27;
	border: none;
	border-radius: 12px;
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease;
}

.sfd-single-subscribe__btn:hover {
	background: #7cc92e;
}

.sfd-single-subscribe__btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.sfd-single-subscribe__feedback {
	font-size: 13px;
	margin: 0;
	padding: 8px 12px;
	border-radius: 8px;
}

.sfd-single-subscribe__feedback.is-success {
	background: #E8F5E9;
	color: #2E7D32;
}

.sfd-single-subscribe__feedback.is-error {
	background: #FFEBEE;
	color: #C62828;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
	.sfd-blog-hero__slides {
		height: 520px;
	}

	.sfd-blog-hero-slide {
		flex-direction: column;
	}

	.sfd-blog-hero-slide__image {
		order: 1;
		width: 100%;
		height: 220px;
		flex-shrink: 0;
		padding: 24px;
	}

	.sfd-blog-hero-slide__img-main {
		width: 200px;
		height: 200px;
	}

	.sfd-blog-hero-slide__img-secondary {
		width: 80px;
		height: 80px;
		right: -24px;
		bottom: -16px;
	}

	.sfd-blog-hero-slide__circle-fallback {
		width: 80px;
		height: 80px;
		right: -24px;
		bottom: -16px;
	}

	.sfd-blog-hero-slide__content {
		order: 2;
		flex: 1;
		width: 100%;
		padding: 24px 20px;
		justify-content: flex-start;
	}

	.sfd-blog-hero-slide__title {
		font-size: 20px;
	}

	.sfd-blog-hero-slide__excerpt {
		font-size: 13px;
	}

	.sfd-blog-hero__slider-btn {
		width: 36px;
		height: 36px;
	}

	.sfd-blog-hero__slider-btn--prev {
		left: 8px;
	}

	.sfd-blog-hero__slider-btn--next {
		right: 8px;
	}
}

/* ============================================
   SINGLE POST, HERO META (category, date, reading time)
   ============================================ */

.sfd-single-hero__meta {
	margin-top: 24px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ── Category pill ─────────────────────────── */
.sfd-single-hero__category {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
}

.sfd-single-hero__category a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	background: #fff;
	border: 1px solid #E4E4E4;
	border-radius: 100px;
	font-family: 'Nunito Sans', 'Nunito', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #808080;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.sfd-single-hero__category a::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23808080' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23808080'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.sfd-single-hero__category a:hover {
	color: #262626;
}

/* Brand colour variants, applied via data-sfd-tag-color */
.sfd-single-hero__category a[data-sfd-tag-color="pink"] {
	background: #fff0f5;
	border-color: #ffc2d8;
	color: #C80468;
}
.sfd-single-hero__category a[data-sfd-tag-color="pink"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23C80468' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23C80468'/%3E%3C/svg%3E");
}
.sfd-single-hero__category a[data-sfd-tag-color="pink"]:hover {
	background: #ffe0ed;
	color: #9e0350;
}

.sfd-single-hero__category a[data-sfd-tag-color="green"] {
	background: #f3ffe6;
	border-color: #b8e87a;
	color: #325D00;
}
.sfd-single-hero__category a[data-sfd-tag-color="green"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%23325D00' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%23325D00'/%3E%3C/svg%3E");
}
.sfd-single-hero__category a[data-sfd-tag-color="green"]:hover {
	background: #dff5bb;
	color: #204000;
}

.sfd-single-hero__category a[data-sfd-tag-color="orange"] {
	background: #fff8ea;
	border-color: #fdd98a;
	color: #9a5c00;
}
.sfd-single-hero__category a[data-sfd-tag-color="orange"]::before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5h4.17l4.33 4.33a1 1 0 0 1 0 1.41L7.24 10a1 1 0 0 1-1.41 0L1.5 5.67V1.5z' stroke='%239a5c00' stroke-width='1.25' stroke-linejoin='round'/%3E%3Ccircle cx='3.5' cy='3.5' r='.75' fill='%239a5c00'/%3E%3C/svg%3E");
}
.sfd-single-hero__category a[data-sfd-tag-color="orange"]:hover {
	background: #fdecc4;
	color: #7a4800;
}

/* ── Date with calendar icon ──────────────── */
.sfd-single-hero__date {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: 'Nunito Sans', 'Nunito', sans-serif;
	font-size: 13px;
	color: #808080;
}

.sfd-single-hero__date::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.5' y='2.5' width='11' height='10' rx='2' stroke='%23808080' stroke-width='1.25'/%3E%3Cpath d='M1.5 5.5h11' stroke='%23808080' stroke-width='1.25'/%3E%3Cpath d='M4.5 1v3M9.5 1v3' stroke='%23808080' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* ── Reading time with clock icon ─────────── */
.sfd-single-hero__reading-time {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: 'Nunito Sans', 'Nunito', sans-serif;
	font-size: 13px;
	color: #808080;
}

.sfd-single-hero__reading-time::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='5.5' stroke='%23808080' stroke-width='1.25'/%3E%3Cpath d='M7 4v3.5L9.5 9' stroke='%23808080' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* ── Default Page Template (Privacy Policy, Terms, etc.) ── */
.sfd-page {
	padding: 4rem 1.5rem;
}

.sfd-page__content {
	max-width: 720px;
	margin: 0 auto;
}

.sfd-page__title {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 2rem;
	color: #1A202C;
}

.sfd-page__content .wp-block-post-content p {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #2D3748;
	margin: 0 0 1.25rem;
}

.sfd-page__content .wp-block-post-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 2.5rem 0 1rem;
	color: #1A202C;
}

.sfd-page__content .wp-block-post-content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 2rem 0 0.75rem;
	color: #1A202C;
}

.sfd-page__content .wp-block-post-content ul,
.sfd-page__content .wp-block-post-content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.5rem;
}

.sfd-page__content .wp-block-post-content li {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #2D3748;
	margin-bottom: 0.5rem;
}

.sfd-page__content .wp-block-post-content a {
	color: #569E03;
	text-decoration: underline;
}

.sfd-page__content .wp-block-post-content a:hover {
	color: #3D7A02;
}

@media (max-width: 768px) {
	.sfd-page {
		padding: 2.5rem 1.25rem;
	}

	.sfd-page__title {
		font-size: 1.625rem;
		margin-bottom: 1.5rem;
	}
}

