/*
Theme Name: Mzawa Blends
Template: twentytwentyfive
Description: Child theme for Mzawa Blends, based on Twenty Twenty-Five.
Author: Mzawa
Version: 1.0.0
*/

/* Brand palette, shared across header/footer and premium sections */
:root {
	--mzawa-teal: #1d585b;
	--mzawa-gold: #e4bb4b;
	--mzawa-terracotta: #ca8e5e;
	--mzawa-sage: #bdce89;
	--mzawa-cream: #f4f4e0;
	--mzawa-ink: #231f20;
}

/* Header: logo + utility row + nav bar (matches agreed reference layout) */
.site-header-utility-inner {
	gap: 24px;
}

.site-header-spacer,
.site-header-utilities {
	flex: 1 1 0%;
}

.site-header-spacer {
	padding-left: 32px;
}

.site-header-utilities {
	/* WordPress drops justify-content from its generated CSS for this flex group
	   when both gap and justifyContent are set on the block, so set it explicitly. */
	justify-content: flex-end;
	padding-right: 32px;
}

.mzawa-logo-lockup {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.mzawa-logo-lockup__icon {
	display: block;
	/* !important: WooCommerce's ".woocommerce img, .woocommerce-page img" reset
	   (woocommerce-layout.css) outranks a single class selector and would
	   otherwise force these back to their native pixel size on shop/cart/etc. */
	height: 40px !important;
	width: auto !important;
}

.mzawa-logo-lockup__wordmark {
	display: block;
	height: 24px !important;
	width: auto !important;
}

.site-header-utilities a {
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.7rem;
	color: #2b2b2b;
}

.site-header-cart {
	align-items: center;
}

.site-header-cart .wc-block-mini-cart {
	display: flex;
}

.site-header-main-nav {
	justify-content: center;
}

@media (max-width: 600px) {
	.site-header-main-nav {
		justify-content: flex-start;
	}
}

.site-header-main-nav .wp-block-navigation-item a {
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.8rem;
	font-weight: 600;
	color: #2b2b2b;
}

.site-header-main-nav .wp-block-navigation-item.current-menu-item > a {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

/* Image carousel (homepage hero) */
.mzawa-carousel {
	position: relative;
	overflow: hidden;
}

.mzawa-carousel__track {
	display: flex;
	transition: transform 0.5s ease;
}

.mzawa-carousel__slide {
	flex: 0 0 100%;
	min-width: 0;
	aspect-ratio: 16 / 7;
	overflow: hidden;
}

.mzawa-carousel__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 600px) {
	.mzawa-carousel__slide {
		aspect-ratio: 4 / 3;
	}
}

.mzawa-carousel__prev,
.mzawa-carousel__next {
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 44px;
	height: 44px;
	transform: translateY(-50%);
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	color: #2b2b2b;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.mzawa-carousel__prev {
	left: 16px;
}

.mzawa-carousel__next {
	right: 16px;
}

.mzawa-carousel__dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	z-index: 1;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.mzawa-carousel__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}

.mzawa-carousel__dot.is-active {
	background: #fff;
}

/* "Our Process Methods" floating cards (homepage), each links to the shop */
.mzawa-process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.mzawa-process-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mzawa-process-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 48px -20px rgba(0, 0, 0, 0.4);
}

.mzawa-process-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.mzawa-process-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mzawa-process-card:hover .mzawa-process-card__image img {
	transform: scale(1.06);
}

.mzawa-process-card__title {
	position: relative;
	margin: 24px 20px 0;
	padding-top: 16px;
	font-family: "Fraunces", serif;
	font-size: 1.15rem;
	font-weight: 600;
	text-align: center;
	color: var(--mzawa-teal);
}

.mzawa-process-card__title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 36px;
	height: 3px;
	background: var(--mzawa-gold);
	transform: translateX(-50%);
}

.mzawa-process-card__text {
	margin: 10px 20px 24px;
	color: var(--mzawa-ink);
	font-size: 0.95rem;
	line-height: 1.6;
	text-align: center;
	opacity: 0.8;
}

@media (max-width: 781px) {
	.mzawa-process-grid {
		grid-template-columns: 1fr;
	}
}

/* Homepage "Featured Products" grid */
.mzawa-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.mzawa-product-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mzawa-product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 48px -20px rgba(0, 0, 0, 0.4);
}

.mzawa-product-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.mzawa-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mzawa-product-card:hover .mzawa-product-card__image img {
	transform: scale(1.06);
}

.mzawa-product-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	padding: 24px 20px 28px;
	text-align: center;
}

.mzawa-product-card__title {
	position: relative;
	margin: 0;
	padding-top: 16px;
	font-family: "Fraunces", serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--mzawa-teal);
}

.mzawa-product-card__title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 36px;
	height: 3px;
	background: var(--mzawa-gold);
	transform: translateX(-50%);
}

.mzawa-product-card__price {
	margin: 10px 0 0;
	color: var(--mzawa-terracotta);
	font-weight: 600;
}

.mzawa-product-card__cta {
	display: inline-block;
	margin-top: 18px;
	padding: 0.7em 1.8em;
	border-radius: 2px;
	background-color: var(--mzawa-teal);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	transition: background-color 0.2s ease;
}

.mzawa-product-card__cta:hover {
	background-color: var(--mzawa-terracotta);
}

@media (max-width: 781px) {
	.mzawa-product-grid {
		grid-template-columns: 1fr;
	}
}

/* Homepage "Our Story" — emphasis lines and by-the-numbers stat band */
.mzawa-story-emphasis {
	font-family: "Fraunces", serif;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--mzawa-teal);
}

.mzawa-story-closing {
	font-family: "Fraunces", serif;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	color: var(--mzawa-teal);
}

.mzawa-story-tagline {
	position: relative;
	margin-top: 1.2em;
	padding-top: 1.1em;
	font-family: "Fraunces", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	letter-spacing: -0.01em;
	color: var(--mzawa-teal);
}

.mzawa-story-tagline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 48px;
	height: 3px;
	background: var(--mzawa-gold);
	transform: translateX(-50%);
}

.mzawa-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.mzawa-stat__number {
	display: block;
	font-family: "Fraunces", serif;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1;
	color: var(--mzawa-gold);
}

.mzawa-stat__label {
	display: block;
	margin-top: 0.6em;
	color: var(--mzawa-cream);
	font-size: 0.9rem;
	line-height: 1.5;
	opacity: 0.9;
}

@media (max-width: 781px) {
	.mzawa-stat-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 24px;
	}
}

/* Homepage "Customer Reviews" */
.mzawa-review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.mzawa-review-card {
	padding: 32px 28px;
	background: #fff;
	border-radius: 10px;
	border-top: 3px solid var(--mzawa-gold);
	box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.3);
}

.mzawa-review-card__stars {
	color: var(--mzawa-gold);
	letter-spacing: 0.1em;
}

.mzawa-review-card__quote {
	margin: 0.8em 0 0;
	color: var(--mzawa-ink);
	line-height: 1.7;
	opacity: 0.85;
}

.mzawa-review-card__author {
	display: block;
	margin-top: 1.2em;
	font-weight: 600;
	color: var(--mzawa-teal);
}

@media (max-width: 781px) {
	.mzawa-review-grid {
		grid-template-columns: 1fr;
	}
}

/* Homepage "FAQs" — native details/summary accordion */
.mzawa-faq details {
	border-bottom: 1px solid color-mix(in srgb, var(--mzawa-teal) 15%, transparent);
	padding: 1.2em 0;
}

.mzawa-faq summary {
	font-family: "Fraunces", serif;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--mzawa-teal);
	cursor: pointer;
}

.mzawa-faq details p {
	margin: 0.8em 0 0;
	color: var(--mzawa-ink);
	line-height: 1.7;
	opacity: 0.85;
}

/* Homepage "Newsletter" panel on teal background */
.mzawa-newsletter .mzawa-eyebrow,
.mzawa-newsletter .wp-block-heading {
	color: var(--mzawa-cream);
}

.mzawa-newsletter > p {
	color: var(--mzawa-cream);
	opacity: 0.9;
}

.mzawa-newsletter .mzawa-signup-panel {
	max-width: 480px;
	margin: var(--wp--preset--spacing--50) auto 0;
}

/* Homepage "Our Story" teaser — premium editorial treatment */
.mzawa-story-teaser {
	padding-top: var(--wp--preset--spacing--50) !important;
	padding-bottom: var(--wp--preset--spacing--50) !important;
}

.mzawa-story-teaser .wp-block-columns {
	margin-bottom: 0;
	align-items: stretch !important;
}

.mzawa-story-teaser .wp-block-column:first-child {
	align-self: stretch !important;
	position: relative;
}

.mzawa-story-teaser-image {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.35);
}

.mzawa-story-teaser-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mzawa-story-section-bg {
	margin-block-start: 0 !important;
}

.mzawa-story-teaser .mzawa-eyebrow {
	display: block;
	margin-bottom: 0.6em;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--mzawa-terracotta);
}

.mzawa-story-teaser .wp-block-heading {
	font-family: "Fraunces", serif;
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: -0.01em;
	color: var(--mzawa-teal);
}

.mzawa-story-teaser p,
.mzawa-story-teaser li {
	color: var(--mzawa-ink);
	line-height: 1.7;
	opacity: 0.85;
}

.mzawa-story-teaser ul {
	margin: 1em 0 1.5em;
}

.mzawa-story-teaser .wp-block-button .wp-block-button__link {
	background-color: var(--mzawa-terracotta);
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	padding: 0.9em 2.2em;
	transition: background-color 0.2s ease;
}

.mzawa-story-teaser .wp-block-button .wp-block-button__link:hover {
	background-color: var(--mzawa-teal);
}

/* Page titles — same premium treatment site-wide, including the WooCommerce shop/archive title */
.wp-block-post-title,
.page-title {
	font-family: "Fraunces", serif;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--mzawa-teal);
}

/* Premium content pages (Home, Subscription, Contact, Our Story) — shared heading/eyebrow/panel/form styling */
:is(.page-slug-home, .page-slug-our-story, .page-slug-contact, .page-slug-subscription) .wp-block-heading {
	font-family: "Fraunces", serif;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--mzawa-teal);
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .mzawa-eyebrow {
	display: block;
	margin-bottom: 0.6em;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--mzawa-terracotta);
}

.page-slug-subscription .mzawa-sub-hero-image img {
	aspect-ratio: 4 / 5;
	width: 100%;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 24px 48px -24px color-mix(in srgb, var(--mzawa-teal) 60%, transparent);
}

.page-slug-subscription .mzawa-benefit-cards {
	margin-top: var(--wp--preset--spacing--40);
}

.page-slug-subscription .mzawa-benefit-cards > .wp-block-column {
	padding: 0 28px;
}

.page-slug-subscription .mzawa-benefit-cards > .wp-block-column:not(:first-child) {
	border-left: 1px solid color-mix(in srgb, var(--mzawa-teal) 15%, transparent);
}

.page-slug-subscription .mzawa-benefit-cards .wp-block-heading {
	position: relative;
	padding-top: 20px;
	font-size: 1.2rem;
	text-align: left;
}

.page-slug-subscription .mzawa-benefit-cards .wp-block-heading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 36px;
	height: 3px;
	background: var(--mzawa-gold);
}

.page-slug-subscription .mzawa-benefit-cards p {
	text-align: left;
	color: var(--mzawa-ink);
	opacity: 0.8;
}

.page-slug-subscription .mzawa-step-number {
	font-family: "Fraunces", serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
	color: var(--mzawa-gold);
}

.page-slug-subscription .mzawa-steps .wp-block-heading {
	margin-top: 0.2em;
	font-size: 1.1rem;
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .mzawa-signup-panel {
	border-top: 3px solid var(--mzawa-teal);
	background-color: var(--mzawa-cream) !important;
}

.mzawa-signup-panel.mzawa-panel--boxed {
	background-color: #fff !important;
	border-radius: 12px;
	border-top-width: 4px;
	box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.3);
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-el-input--label {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.7rem;
	color: var(--mzawa-ink);
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-el-form-control {
	border: 1px solid color-mix(in srgb, var(--mzawa-teal) 30%, transparent);
	border-radius: 2px;
	padding: 0.75em 1em;
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-el-form-control:focus {
	border-color: var(--mzawa-teal);
	box-shadow: 0 0 0 1px var(--mzawa-teal);
	outline: none;
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-btn-submit {
	background-color: var(--mzawa-terracotta) !important;
	border: none !important;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	padding: 0.9em 2.2em;
	transition: background-color 0.2s ease;
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-btn-submit:hover {
	background-color: var(--mzawa-teal) !important;
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-el-form-check-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin-right: 1.5em;
	font-size: 0.95rem;
	color: var(--mzawa-ink);
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-el-form-check-input {
	accent-color: var(--mzawa-terracotta);
}

:is(.page-slug-home, .page-slug-contact, .page-slug-subscription) .ff-el-tooltip svg {
	fill: var(--mzawa-terracotta) !important;
}

.page-slug-subscription .mzawa-price-cards .ff_el_checkable_photo_holders {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin-top: 8px;
}

.page-slug-subscription .mzawa-price-cards .ff-el-form-check.ff-el-image-holder {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	padding: 10px;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--mzawa-teal) 20%, transparent);
	border-radius: 4px;
	text-align: center;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.page-slug-subscription .mzawa-price-cards .ff-el-image-input-src {
	display: block;
	width: 100%;
	height: 80px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 8px;
	cursor: pointer;
}

.page-slug-subscription .mzawa-price-cards .ff-el-form-check-label {
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--mzawa-ink);
	line-height: 1.3;
	cursor: pointer;
}

.page-slug-subscription .mzawa-price-cards .ff-el-form-check-label > span {
	display: block;
	width: 100%;
	white-space: normal !important;
	overflow-wrap: break-word;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	text-align: center;
	color: inherit;
}

.page-slug-subscription .mzawa-price-cards .ff-el-image-holder.ff_item_selected {
	border: 2px solid var(--mzawa-terracotta) !important;
	background: color-mix(in srgb, var(--mzawa-terracotta) 6%, white);
}

.page-slug-subscription .mzawa-price-cards .ff_item_selected label > span {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: var(--mzawa-terracotta) !important;
}

@media (max-width: 480px) {
	.page-slug-subscription .mzawa-price-cards .ff_el_checkable_photo_holders {
		flex-wrap: wrap;
	}

	.page-slug-subscription .mzawa-price-cards .ff-el-form-check.ff-el-image-holder {
		flex: 1 1 45%;
	}
}

/* Footer — premium branded treatment */
.mzawa-footer {
	border-top: 3px solid var(--mzawa-gold);
	background-color: var(--mzawa-teal);
	color: var(--mzawa-cream);
}

.mzawa-footer-brand {
	max-width: 320px;
}

.mzawa-footer-tagline {
	margin-top: 0.75em;
	color: color-mix(in srgb, var(--mzawa-cream) 75%, transparent);
	font-size: 0.9rem;
	line-height: 1.6;
}

.mzawa-footer-column {
	min-width: 160px;
}

.mzawa-footer-heading {
	margin-bottom: 0.9em;
	font-family: "Fraunces", serif;
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--mzawa-gold);
}

.mzawa-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mzawa-footer-links li {
	margin-bottom: 0.6em;
}

.mzawa-footer-links a,
.mzawa-footer-contact a {
	color: var(--mzawa-cream);
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.85;
	transition: opacity 0.15s ease, color 0.15s ease;
}

.mzawa-footer-links a:hover,
.mzawa-footer-contact a:hover {
	opacity: 1;
	color: var(--mzawa-gold);
}

.mzawa-footer-contact {
	margin: 0 0 0.6em;
	color: color-mix(in srgb, var(--mzawa-cream) 75%, transparent);
	font-size: 0.9rem;
}

.mzawa-footer-bottom {
	border-top: 1px solid color-mix(in srgb, var(--mzawa-cream) 20%, transparent);
	padding-top: var(--wp--preset--spacing--40);
}

.mzawa-footer-bottom p {
	margin: 0;
	opacity: 0.7;
}

@media (max-width: 600px) {
	.mzawa-footer-brand,
	.mzawa-footer-column {
		flex-basis: 100%;
		max-width: 100%;
		min-width: 0;
	}
}

/* Contact page — subtitle, info column and form panel */
.mzawa-page-subtitle {
	max-width: 560px;
	margin: 0.75em auto 0;
	color: var(--mzawa-ink);
	opacity: 0.8;
}

.mzawa-contact-layout {
	align-items: flex-start;
}

.mzawa-contact-info__item {
	margin-bottom: var(--wp--preset--spacing--50);
	padding-left: 18px;
	border-left: 3px solid var(--mzawa-gold);
}

.mzawa-contact-info__item .mzawa-eyebrow {
	margin-bottom: 0.4em;
}

.mzawa-contact-info__item p:last-child {
	margin: 0;
	color: var(--mzawa-ink);
	font-size: 1.05rem;
	line-height: 1.6;
}

.mzawa-contact-info__item a {
	color: var(--mzawa-teal);
	font-weight: 600;
	text-decoration: none;
}

.mzawa-contact-info__item a:hover {
	color: var(--mzawa-terracotta);
}

/* Our Story — alternating photo/text sections */
.mzawa-story-section.wp-block-columns {
	align-items: stretch;
}

.mzawa-story-section > .wp-block-column {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	min-height: 0;
}

.mzawa-story-image {
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
}

.mzawa-story-image img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.3);
	display: block;
}

.mzawa-story-section-bg .wp-block-heading {
	color: var(--mzawa-cream);
}

.mzawa-story-section-bg p {
	color: var(--mzawa-cream);
	opacity: 0.9;
}

@media (max-width: 781px) {
	/* Photo is the 2nd column in these sections on desktop — flip so the photo still leads on mobile */
	.mzawa-story-section--text-left.wp-block-columns {
		flex-direction: column-reverse;
	}

	/* Restore normal flow for the story teaser image on mobile (absolute approach only works in side-by-side layout) */
	.mzawa-story-teaser .wp-block-column:first-child {
		position: static;
	}

	.mzawa-story-teaser-image {
		position: static;
		inset: auto;
	}

	.mzawa-story-teaser-image img {
		aspect-ratio: 4 / 3;
		width: 100%;
		height: auto;
		object-fit: cover;
	}
}
