/**
 * SFD Hero Block Styles
 * Generic, reusable hero block
 * Uses global .sfd-container (max-width: 1280px) from style.css
 */

/* Hero section */
.sfd-hero {
	position: relative;
	min-height: 25vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-color: #2d4a0e;
}

.sfd-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		110deg,
		rgba(86, 158, 3, 0.92) 0%,
		rgba(86, 158, 3, 0.75) 55%,
		rgba(140, 217, 51, 0.40) 100%
	);
	pointer-events: none;
}

/* For Gutenberg-selected solid/gradient backgrounds, do not force dark image overlay */
.sfd-hero--no-overlay .sfd-hero__overlay {
	display: none;
}

/* Match homepage hero default look when no image/color/gradient is set */
.sfd-hero--homepage-default .sfd-hero__headline,
.sfd-hero--homepage-default .sfd-hero__sub,
.sfd-hero--homepage-default .sfd-hero__sub strong,
.sfd-hero--homepage-default .sfd-hero__trust-bar,
.sfd-hero--homepage-default .sfd-hero__trust-bar strong,
.sfd-hero--homepage-default .sfd-hero__trust-bar a {
	color: #262626;
}

.sfd-hero--homepage-default .sfd-hero__trust-bar a:hover {
	color: #569E03;
}

.sfd-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: 2rem;
	padding-bottom: 2rem;
	width: 100%;
}

.sfd-hero--with-image .sfd-hero__inner,
.sfd-hero--with-form .sfd-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: center;
}

.sfd-hero__content {
	max-width: 50%;
}

.sfd-program-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: 999px;
	background: transparent;
	border: 1px solid #262626;
	margin-bottom: 14px;
	font-family: 'Nunito', sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
	color: #262626;
}

.sfd-program-breadcrumb__parent {
	color: #262626;
	opacity: 1;
}

.sfd-program-breadcrumb__sep {
	color: #262626;
	opacity: 0.55;
}

.sfd-program-breadcrumb__current {
	color: #262626;
}

.sfd-hero--with-image .sfd-hero__content {
	max-width: none;
}

.sfd-hero__media {
	width: 100%;
	justify-self: end;
}

.sfd-hero__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 560px;
	object-fit: contain;
}

/* Phone mock variant */
.sfd-hero__media--phone-mock {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.sfd-hero__phone-mock {
	max-width: 420px;
	height: auto;
	display: block;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
	transform: translateY(16px);
}

.sfd-hero__headline {
	font-family: 'Nunito', sans-serif;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 700;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
}

.sfd-hero__sub {
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
	margin: 0 0 2rem;
}

.sfd-hero__sub strong {
	color: #ffffff;
}

.sfd-hero__buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 2rem;
	align-items: center;
}

.sfd-hero__cta {
	/* Intentionally no visual overrides: inherit exact global .sfd-btn styling */
}

.sfd-hero__cta--left {
	min-width: 240px;
}

.sfd-hero__cta--right {
	min-width: 125px;
	border: 2px solid #569E03;
}

/* Trust bar */
.sfd-hero__trust-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem 0.8rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.78);
}

.sfd-hero__trust-avatars {
	display: inline-flex;
	align-items: center;
	margin-right: 8px;
}

.sfd-hero__trust-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	margin-left: -12px;
	background: #e8e8e8;
}

.sfd-hero__trust-avatar:first-child {
	margin-left: 0;
}

.sfd-hero--homepage-default .sfd-hero__trust-avatar {
	border-color: #f8f9fa;
}

.sfd-hero__trust-bar a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sfd-hero__trust-bar a:hover {
	color: #ffffff;
}

.sfd-hero__trust-stars {
	display: flex;
	align-items: center;
	gap: 1px;
}

.sfd-hero__trust-dot {
	opacity: 0.4;
}

.sfd-hero__trust-bar strong {
	color: #ffffff;
	font-weight: 700;
}

.sfd-hero__star {
	display: inline-block;
	vertical-align: middle;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.sfd-hero {
		min-height: 25vh;
	}

	.sfd-hero__overlay {
		background: linear-gradient(
			110deg,
			rgba(86, 158, 3, 0.92) 0%,
			rgba(86, 158, 3, 0.75) 55%,
			rgba(140, 217, 51, 0.40) 100%
		);
	}

	.sfd-hero__inner {
		padding-top: 0;
		padding-bottom: 0;
	}

	.sfd-hero__content {
		max-width: 100%;
	}
	
	.sfd-hero__sub {
		margin-bottom: 1rem;
	}

	.sfd-program-breadcrumb {
		font-size: 10px;
		padding: 4px 8px;
		margin-bottom: 14px;
	}

	.sfd-hero--with-image .sfd-hero__inner {
		display: block;
	}

	.sfd-hero__media {
		justify-self: auto;
		margin-top: 1.5rem;
	}

	.sfd-hero__trust-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.sfd-hero__trust-dot {
		display: none;
	}
	
	.sfd-hero__buttons {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}
	
	.sfd-hero__cta {
		width: 100%;
		max-width: 280px;
	}

	/* Phone mock on mobile - center and size appropriately */
	.sfd-hero__media--phone-mock {
		display: flex;
		width: min(100%, 280px);
		margin: 1.5rem auto 0;
	}

	.sfd-hero__phone-mock {
		max-width: 100%;
		height: auto;
		transform: none;
	}
}

/* Animation classes are now in style.css (theme root stylesheet).
   sfd-hero-fade-in-left and sfd-hero-fade-in-right are defined there
   with opacity: 0 + animation: sfd-hero-fade-in ... forwards.
   This file intentionally left empty to avoid duplicate/conflicting rules. */
/* ===== Hero with world map + member pulse markers ===== */
.sfd-hero--with-worldmap .sfd-hero__inner {
	display: flex;
	align-items: center;
	min-height: min(92vh, 900px);
	overflow: visible;
}

/* Australia Region Highlight */
.sfd-hero__worldmap-region {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.sfd-hero__worldmap-region--australia {
	top: 78%;
	right: 16%;
	width: 12%;
	height: 16%;
	transform: translate(50%, -50%);
}

.sfd-hero__worldmap-region-glow {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/aus.svg') no-repeat center/contain;
	animation: sfdGlow 3s ease-in-out infinite alternate;
}

.sfd-hero__worldmap-region-label {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Nunito', sans-serif;
	font-size: 12px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	opacity: 0.8;
}

@keyframes sfdGlow {
	from { opacity: 0.5; filter: drop-shadow(0 0 10px rgba(140, 217, 51, 0.4)); }
	to { opacity: 1; filter: drop-shadow(0 0 20px rgba(140, 217, 51, 0.8)); }
}

.sfd-hero--with-worldmap .sfd-hero__content {
	position: relative;
	z-index: 3;
	max-width: min(48%, 610px);
}

.sfd-hero__media--worldmap {
	/* Split map container: handles left/right anchoring without distortion */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: 0;
	pointer-events: none;
	overflow: hidden;
}

.sfd-hero__media--worldmap-mobile {
	display: none;
}

.sfd-hero__worldmap {
	position: absolute;
	top: 50%;
	/* Shift the map upward so Russia (top of the SVG) is cropped out
	   and Australia/the southern hemisphere sits closer to the centre. */
	transform: translateY(-62%);
	height: calc(100% + 8rem);
	aspect-ratio: 950 / 620;
	width: auto;
	max-width: none;
	isolation: isolate;
}

.sfd-hero__worldmap--left {
	left: 0;
	transform: translate(-25%, -62%); /* Match the upward shift on the right map so both halves stay aligned */
	/* Fade out the right side of the left map */
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 22%, transparent 35%), linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image: linear-gradient(90deg, #000 0%, #000 22%, transparent 35%), linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	mask-composite: intersect;
}

@media (max-width: 1600px) {
	.sfd-hero__media--worldmap-desktop .sfd-hero__worldmap--left {
		display: none;
	}
}

.sfd-hero__worldmap--right {
	right: 0;
	/* Fade out the left side of the right map, keep Americas hidden, show Eurasia/Australia */
	-webkit-mask-image: linear-gradient(90deg, transparent 38%, rgba(0,0,0,0.3) 42%, #000 46%, #000 100%), linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image: linear-gradient(90deg, transparent 38%, rgba(0,0,0,0.3) 42%, #000 46%, #000 100%), linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	mask-composite: intersect;
}

.sfd-hero__image--worldmap {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: none;
	opacity: 0.35;
	filter: brightness(0) saturate(100%) invert(56%) sepia(83%) saturate(1094%) hue-rotate(48deg) brightness(94%) contrast(93%);
}

.sfd-hero__worldmap-pin {
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	animation: sfdPinFadeIn 0.6s ease-out forwards;
	animation-delay: var(--pin-delay, 0s);
	z-index: 2;
}

/* Right-map pins use `right` instead of `left`, so flip the horizontal offset */
.sfd-hero__worldmap--right .sfd-hero__worldmap-pin {
	transform: translate(50%, -50%);
}

.sfd-hero__worldmap-pin-dot {
	display: block;
	width: 18px;
	height: 18px;
	animation: sfdPinPulse 2.6s ease-in-out infinite;
	animation-delay: var(--pin-delay, 0s);
	filter: drop-shadow(0 3px 8px rgba(238, 114, 142, 0.28));
}

.sfd-hero__worldmap-pin-dot svg {
	width: 100%;
	height: 100%;
	display: block;
	transform-origin: center;
}

/* Slightly larger markers for featured member stories, without large labels. */
.sfd-hero__worldmap-pin--featured .sfd-hero__worldmap-pin-dot {
	width: 22px;
	height: 22px;
}

/* Pink label + avatar tag */
.sfd-hero__worldmap-tag {
	position: absolute;
	top: 50%;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 8px 3px 3px;
	background: rgba(238, 114, 142, 0.94);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(238, 114, 142, 0.28);
	white-space: nowrap;
	font-family: 'Nunito', sans-serif;
	line-height: 1.1;
	pointer-events: none;
	/* label-dy lets each pin shift its label up/down to avoid overlaps with neighbours */
	transform: translateY(calc(-50% + var(--label-dy, 0px)));
}

.sfd-hero__worldmap-pin--label-right .sfd-hero__worldmap-tag {
	left: calc(100% + 4px);
}

.sfd-hero__worldmap-pin--label-left .sfd-hero__worldmap-tag {
	right: calc(100% + 4px);
	flex-direction: row-reverse;
	padding: 3px 3px 3px 8px;
}

.sfd-hero__worldmap-avatar {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 auto;
}

.sfd-hero__worldmap-avatar-svg {
	width: 100%;
	height: 100%;
	display: block;
}

.sfd-hero__worldmap-tag-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.sfd-hero__worldmap-pin--label-left .sfd-hero__worldmap-tag-copy {
	align-items: flex-end;
}

.sfd-hero__worldmap-tag-name {
	font-size: 8px;
	font-weight: 700;
	opacity: 0.85;
	letter-spacing: 0.02em;
}

.sfd-hero__worldmap-tag-result {
	font-size: 10px;
	font-weight: 800;
}

/* Lift label above neighbours on hover for readability. */
.sfd-hero__worldmap-pin:hover,
.sfd-hero__worldmap-pin:focus-within {
	z-index: 5;
}

@keyframes sfdPinFadeIn {
	from { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
	to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Right-map pins use translate(50%, -50%), override the keyframe */
.sfd-hero__worldmap--right .sfd-hero__worldmap-pin {
	animation-name: sfdPinFadeInRight;
}

@keyframes sfdPinFadeInRight {
	from { opacity: 0; transform: translate(50%, -50%) scale(0.85); }
	to   { opacity: 1; transform: translate(50%, -50%) scale(1); }
}

@keyframes sfdPinPulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
	.sfd-hero__worldmap-pin {
		animation: none;
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.sfd-hero--with-worldmap .sfd-hero__inner {
		display: block;
		min-height: 0;
	}

	.sfd-hero--with-worldmap .sfd-hero__content {
		max-width: 100%;
	}

	.sfd-hero__media--worldmap-desktop {
		display: none;
	}

	.sfd-hero__media--worldmap-mobile {
		position: relative;
		display: block;
		width: 100%;
		aspect-ratio: 950 / 620;
		height: auto;
		margin: 0 0 1.5rem;
		overflow: visible;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		transform: none;
	}

	.sfd-hero__media--worldmap-mobile .sfd-hero__worldmap {
		position: absolute;
		top: 0;
		left: 0 !important;
		right: auto !important;
		width: 100%;
		height: 100%;
		transform: none !important;
		-webkit-mask-image: none !important;
		mask-image: none !important;
		display: block !important;
	}

	/* Hide the duplicate SVG image in the left wrapper to avoid doubling opacity */
	.sfd-hero__media--worldmap-mobile .sfd-hero__worldmap--left .sfd-hero__image--worldmap {
		display: none;
	}

	.sfd-hero__worldmap-pin-dot {
		width: 14px;
		height: 14px;
	}

	.sfd-hero__worldmap-pin--featured .sfd-hero__worldmap-pin-dot {
		width: 18px;
		height: 18px;
	}

	.sfd-hero__worldmap-tag {
		display: none;
	}
}

/* ===== Hero with embedded contact form widget ===== */
.sfd-hero--with-form .sfd-hero__content {
	max-width: none;
}

.sfd-hero--with-form .sfd-hero__headline {
	font-size: clamp(2rem, 4vw, 3rem);
}

/* When the hero has the contact-form widget, force the left column text to black.
   The contact hero runs on a light gradient so white text is unreadable. */
.sfd-hero--with-form .sfd-hero__headline,
.sfd-hero--with-form .sfd-hero__sub,
.sfd-hero--with-form .sfd-hero__sub strong,
.sfd-hero--with-form .sfd-hero__trust-bar,
.sfd-hero--with-form .sfd-hero__trust-bar strong,
.sfd-hero--with-form .sfd-hero__trust-bar a {
	color: #262626;
}

.sfd-hero--with-form .sfd-hero__trust-bar a:hover {
	color: #569E03;
}

.sfd-hero--with-form .sfd-program-breadcrumb {
	color: #262626;
	border-color: rgba(0, 0, 0, 0.25);
}

.sfd-hero--with-form .sfd-program-breadcrumb__current {
	color: #262626;
}

.sfd-hero__form-wrap {
	width: 100%;
	justify-self: end;
	max-width: 520px;
}

.sfd-hero__form-card.contact-form-card {
	background: #ffffff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.10);
	color: #262626;
}

.sfd-hero__form-card .contact-form-card__heading {
	margin: 0;
	font-family: 'Nunito', sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	color: #1A202C;
}

.sfd-hero__form-card .contact-form-card__sub {
	margin: 6px 0 18px;
	font-size: 0.95rem;
	color: #718096;
}

.sfd-hero__form-card .contact-form-card__form {
	display: grid;
	gap: 10px;
}

.sfd-hero__form-card .contact-form-card__form label {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: #2D3748;
}

.sfd-hero__form-card .contact-form-card__form input,
.sfd-hero__form-card .contact-form-card__form textarea {
	width: 100%;
	border: 1px solid #CBD5E0;
	border-radius: 10px;
	padding: 10px 14px;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.4;
	color: #1A202C;
	background: #fff;
}

.sfd-hero__form-card .contact-form-card__form input:focus,
.sfd-hero__form-card .contact-form-card__form textarea:focus {
	outline: none;
	border-color: #8CD933;
	box-shadow: 0 0 0 3px rgba(140, 217, 51, 0.18);
}

.sfd-hero__form-card .contact-form-card__form button {
	margin-top: 6px;
	justify-self: start;
}

@media (max-width: 900px) {
	.sfd-hero--with-form .sfd-hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.sfd-hero__form-wrap {
		max-width: 100%;
		justify-self: stretch;
	}
}

/* Pricing Page Overrides */
.sfd-hero.sfd-hero-pricing {
	min-height: 25vh;
}
.sfd-pricing-overlap {
	margin-top: -100px;
	position: relative;
	z-index: 10;
}
@media (max-width: 768px) {
	.sfd-hero.sfd-hero-pricing {
		min-height: 25vh;
	}
	.sfd-pricing-overlap {
		margin-top: -60px;
	}
}

/* When hero animation is enabled, hide placeholder photos initially so they
   don't flash before the JS-driven slide-in animation starts. */
body:not(.sfd-hero-animation-disabled) .sfd-hero--with-placeholder .sfd-hero__placeholder-photo {
	opacity: 0;
	transform: translateY(30px);
}

/* =============================================
   Image placeholder (when showImagePlaceholder is true)
   Single green circle with 3 photos positioned inside it,
   near their corresponding floating labels.
   ============================================= */
.sfd-hero__media--placeholder {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* Single green background circle, sits behind all photos */
.sfd-hero__placeholder-bg {
	position: absolute;
	width: 100%;
	aspect-ratio: 1 / 1;
	max-width: 480px;
	border-radius: 50%;
	background: rgba(232, 245, 208, 0.35);
	mix-blend-mode: multiply;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translate(12px, 12px);
	z-index: 1;
}

/* Container for the three photos, sits on top of the circle */
.sfd-hero__placeholder-photos {
	position: relative;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 1 / 1;
	z-index: 2;
}

/* Each photo wrapper, positioned absolutely within the container */
.sfd-hero__placeholder-photo {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* The actual image, circular mask with light pink placeholder when empty */
.sfd-hero__placeholder-photo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 50%;
	background: #f2f2f2;
}

/* SuperFast photo, top-right, medium size, moved deeper inside the circle */
.sfd-hero__placeholder-photo--superfast {
	top: 12%;
	right: 8%;
	width: 32%;
	aspect-ratio: 1 / 1;
}

/* SuperFood photo, bottom-right, slightly larger, moved deeper inside */
.sfd-hero__placeholder-photo--superfood {
	bottom: 10%;
	right: 8%;
	width: 36%;
	aspect-ratio: 1 / 1;
}

/* SuperLife photo, centre-left, slightly smaller, moved deeper inside */
.sfd-hero__placeholder-photo--superlife {
	top: 50%;
	left: 10%;
	width: 28%;
	aspect-ratio: 1 / 1;
	transform: translateY(-50%);
}

/* Floating labels, float around the subject, not masked */
.sfd-hero__floating-labels {
	position: absolute;
	inset: -10px -15px -10px -15px;
	pointer-events: none;
	z-index: 3;
}

.sfd-hero__floating-label {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	border-radius: 100px;
	padding: 10px 20px 10px 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
	animation: sfd-hero-float 4s ease-in-out infinite;
	white-space: nowrap;
}

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

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

.sfd-hero__floating-text {
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	font-weight: 800;
	color: #262626;
}

/* Position each label around the subject, overlapping the circle edge */
.sfd-hero__floating-label--superfast {
	top: 5%;
	right: -5px;
	animation-delay: 0s;
}

.sfd-hero__floating-label--superfood {
	bottom: 5%;
	right: -5px;
	animation-delay: 1.3s;
}

.sfd-hero__floating-label--superlife {
	top: 50%;
	left: -10px;
	transform: translateY(-50%);
	animation-delay: 2.6s;
}

@keyframes sfd-hero-float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.sfd-hero__floating-label--superlife {
	animation-name: sfd-hero-float-side;
}

@keyframes sfd-hero-float-side {
	0%, 100% {
		transform: translateY(-50%) translateX(0);
	}
	50% {
		transform: translateY(-50%) translateX(-6px);
	}
}

@media (max-width: 1024px) {
	.sfd-hero__placeholder-bg,
	.sfd-hero__placeholder-photos {
		max-width: min(360px, 72vw);
	}

	.sfd-hero__floating-label {
		gap: 8px;
		padding: 8px 14px 8px 8px;
	}

	.sfd-hero__floating-icon {
		width: 30px;
		height: 30px;
	}

	.sfd-hero__floating-text {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.sfd-hero__media--placeholder {
		display: flex;
		width: min(100%, 340px);
		aspect-ratio: 1 / 1;
		height: auto;
		margin: 1.5rem auto 0;
	}

	.sfd-hero__placeholder-bg,
	.sfd-hero__placeholder-photos {
		max-width: min(300px, 72vw);
	}

	.sfd-hero__floating-labels {
		inset: 0;
	}

	.sfd-hero__floating-label {
		padding: 7px 12px 7px 7px;
		gap: 7px;
	}

	.sfd-hero__floating-icon {
		width: 28px;
		height: 28px;
	}

	.sfd-hero__floating-text {
		font-size: 12px;
	}

	.sfd-hero__floating-label--superfast {
		top: 0;
		right: 0;
	}

	.sfd-hero__floating-label--superfood {
		bottom: 0;
		right: 0;
	}

	.sfd-hero__floating-label--superlife {
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

}

@media (max-width: 420px) {
	.sfd-hero__media--placeholder {
		width: min(100%, 300px);
	}

	.sfd-hero__placeholder-bg,
	.sfd-hero__placeholder-photos {
		max-width: min(260px, 70vw);
	}

	.sfd-hero__floating-label {
		padding: 6px 10px 6px 6px;
	}

	.sfd-hero__floating-icon {
		width: 24px;
		height: 24px;
	}

	.sfd-hero__floating-text {
		font-size: 11px;
	}
}
