/* =========================================================
   WES — Main stylesheet
   Built to the Figma 1440px desktop frame, pixel-first.
   ========================================================= */

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: var(--fs-16);
	line-height: 1.5;
	color: var(--c-blue);
	background: var(--c-white);
	overflow-x: hidden;
	/* Match Figma's text rendering (grayscale AA = thinner strokes) */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---- Layout container (centered 1440 stage) ---- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	position: relative;
}

/* ============================= HEADER / NAV ============================= */
.site-header {
	background: var(--c-white);
	height: 83px;
}
.site-header__inner {
	max-width: var(--container);
	margin-inline: auto;
	height: 83px;
	padding-inline: var(--gutter-nav);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
}
.primary-nav__link {
	font-size: var(--fs-18);
	font-weight: var(--fw-semibold);
	color: var(--c-blue);
	white-space: nowrap;
	transition: color .15s ease;
}
.primary-nav__link:hover { color: var(--c-teal); }

.lang-switcher {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}
.lang-switcher__menu {
	position: absolute;
	top: calc(100% + 10px);
	inset-inline-end: 0;
	min-width: 150px;
	margin: 0;
	padding: 6px;
	background: var(--c-white);
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(26, 74, 133, .16);
	display: none;
	z-index: 60;
}
.lang-switcher.is-open .lang-switcher__menu { display: block; }
.lang-switcher__menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: var(--fs-18);
	font-weight: var(--fw-semibold);
	color: var(--c-blue);
}
.lang-switcher__menu a:hover { background: var(--c-gray-100); color: var(--c-teal); }
.lang-switcher__icon { width: 24px; height: 24px; }
.lang-switcher__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	padding: 0;
	font-size: var(--fs-18);
	font-weight: var(--fw-semibold);
	color: var(--c-blue);
}
.lang-switcher__caret { margin-top: 2px; }

/* ============================= HERO ============================= */
/* Wave is allowed to spill down onto the blue map band; the .hero-med wrapper clips the
   horizontal bleed (overflow-x:clip) while keeping vertical overflow visible. */
.hero { background: var(--c-white); }
.hero-med { position: relative; overflow-x: clip; }
.hero__inner {
	min-height: 804px;
	position: relative;
}
.hero__graphic {
	position: absolute;
	left: -279px;
	top: 254px;
	width: 1939px;
	max-width: none;
	height: auto;
	z-index: 0;
	pointer-events: none;
}
.hero__content {
	position: relative;
	z-index: 1;
	padding-inline-start: var(--gutter);
	padding-top: 110px;
}
.hero__logo {
	width: 106px;
	height: 135px;
	margin-bottom: 10px;
}
.hero__title {
	margin: 0;
	font-size: var(--fs-h1);
	line-height: var(--lh-h1);
	font-weight: var(--fw-bold);
	color: var(--c-blue);
	text-transform: uppercase;
	letter-spacing: 0;
}
.hero__desc {
	margin: 18px 0 0;
	max-width: 575px;
	font-size: var(--fs-herodesc);
	line-height: var(--lh-herodesc);
	font-weight: var(--fw-semibold);
	color: var(--c-teal);
}

/* ============================= MEDITERRANEAN (teal) ============================= */
.med {
	background: linear-gradient(180deg, var(--c-blue) 0%, var(--c-teal) 85%);
	color: var(--c-white);
	text-align: center;
	clip-path: polygon(0 0, 100% 90px, 100% 100%, 0 100%);
	margin-top: -2px;
	padding-top: 70px;
	padding-bottom: 54px;
}
.med__banner {
	margin: 0 auto;
	max-width: 996px;
	padding-inline: 24px;
	font-size: var(--fs-lead);
	line-height: 1.17;
	font-weight: var(--fw-medium);
	color: var(--c-white);
}
.med__map {
	width: 1039px;
	max-width: calc(100% - 80px);
	height: auto;
	margin: 30px auto 0;
}
.med__scroll {
	display: block;
	width: 50px;
	height: 50px;
	margin: 24px auto 0;
	animation: wes-bob 1.8s ease-in-out infinite;
}
@keyframes wes-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ============================= GENERIC SECTION ============================= */
.section { padding-block: 100px; }
.section--cream { background: var(--c-cream); }
.section__head { padding-inline: var(--gutter); }
.section__title {
	margin: 0;
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
	font-weight: var(--fw-bold);
	color: var(--c-blue);
}
.section__lead {
	margin: 10px 0 0;
	max-width: 1114px;
	font-size: var(--fs-22);
	line-height: 1.3;
	font-weight: var(--fw-regular);
	color: var(--c-teal);
}

/* ---- Segmented toggle (mint container + inset active pill) ---- */
.seg-tabs {
	display: inline-flex;
	margin-block: 30px 0;
	margin-inline-start: var(--gutter);
	padding: 4px;
	background: var(--c-teal-20);
	border-radius: var(--radius-pill);
}
.seg-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 152px;
	height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: var(--radius-pill);
	background: transparent;
	font-size: var(--fs-18);
	font-weight: var(--fw-semibold);
	color: var(--c-blue);
	transition: background .15s ease, color .15s ease;
}
.seg-tab.is-active { background: var(--c-teal); color: var(--c-white); }

/* ============================= CARD CAROUSEL ============================= */
.carousel {
	margin-top: 80px;
	position: relative;
}
.carousel__track {
	display: flex;
	gap: 56px;
	padding-inline: var(--gutter);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--gutter);
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.ecard {
	flex: 0 0 340px;
	width: 340px;
	scroll-snap-align: start;
}
.ecard__link { display: block; color: inherit; }
.ecard__media {
	height: 302px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.ecard__media img { max-height: 302px; width: auto; object-fit: contain; }
.ecard__title {
	margin: 20px 0 0;
	font-size: var(--fs-22);
	line-height: 1.3;
	font-weight: var(--fw-regular);
	color: var(--c-blue);
}
.ecard__title-strong { display: block; font-weight: var(--fw-bold); }

.carousel__dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 26px;
}
.carousel__dots .dot {
	width: 9px; height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--c-gray-300);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background .2s ease, transform .2s ease;
}
.carousel__dots .dot:hover { background: var(--c-gray-500); }
.carousel__dots .dot.is-active { background: var(--c-orange); transform: scale(1.15); }
/* No-JS fallback: let the track scroll natively. */
.wes-js .carousel__track { cursor: grab; }

/* ============================= WHAT YOU CAN DO ============================= */
.action-grid {
	display: flex;
	gap: 90px;
	justify-content: center;
	padding-inline: var(--gutter);
	margin-top: 80px;
}
.action-card { width: 340px; }
.action-card__link { display: block; color: inherit; }
.action-card__media {
	position: relative;
	height: 302px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.action-card__img { max-height: 302px; width: auto; object-fit: contain; }
.action-card__medallion {
	position: absolute;
	top: 0;
	left: 53%;
	width: 129px;
	height: 159px;
	background: var(--c-white);
	border-radius: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.action-card__medallion img { width: 108px; height: auto; }
.action-card__meta { margin-top: 20px; }
.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: var(--fs-18);
	font-weight: var(--fw-medium);
}
.badge img { width: 24px; height: 24px; }
.badge--howto { color: var(--c-green); }
.badge--checklist { color: var(--c-orange); }
.action-card__title {
	margin: 6px 0 0;
	font-size: var(--fs-22);
	line-height: 1.3;
	font-weight: var(--fw-bold);
	color: var(--c-blue);
}

/* ============================= QUIZ CTA ============================= */
.section--sand { background: #F8DFBA; }
.section__title--center { text-align: center; }
.quiz { text-align: center; }
.quiz__lead {
	margin: 14px auto 0;
	max-width: 835px;
	font-size: var(--fs-22);
	line-height: 1.3;
	color: var(--c-teal);
}
.quiz__note {
	margin: 10px 0 0;
	font-size: var(--fs-22);
	font-style: italic;
	color: var(--c-teal);
}
.quiz__cta {
	display: inline-block;
	margin-top: 30px;
	transition: transform .2s ease;
}
.quiz__cta:hover { transform: translateY(-4px); }
.quiz__cta img { width: 556px; max-width: 100%; height: auto; }

/* ============================= TEACH & FACILITATE ============================= */
.teach { text-align: center; }
.teach__lead {
	margin: 12px auto 0;
	max-width: 620px;
	font-size: var(--fs-22);
	line-height: 1.3;
	color: var(--c-teal);
}
.teach__body {
	margin: 30px auto 0;
	max-width: 886px;
	font-size: var(--fs-22);
	line-height: 1.3;
	color: var(--c-blue);
}
.readmore { color: var(--c-orange); font-weight: var(--fw-bold); white-space: nowrap; }
.readmore:hover { text-decoration: underline; }

.teach__cluster {
	position: relative;
	width: 838px;
	height: 557px;
	margin: 40px auto 0;
}
.tcircle {
	position: absolute;
	border-radius: 50%;
	background: var(--c-sand-40);
	z-index: 0;
}
.aud {
	position: absolute;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 50%;
	color: var(--c-blue);
	text-align: center;
	transition: transform .2s ease;
}
.aud:hover { transform: scale(1.03); }
/* Exact Figma blob shapes (vector geometry from /files nodes endpoint).
   Rendered as a faded ::before backdrop so the icon/label stay full-strength,
   matching Figma's translucent blobs; per-slot mirroring matches Figma orientation. */
.aud { border-radius: 0; }
.aud--teal, .aud--green, .aud--gold { background: none; }
.aud::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: .6;
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	pointer-events: none;
}
.aud--teal::before  { background-image: url(../img/blob-teal.svg); }
.aud--green::before { background-image: url(../img/blob-green.svg); }
.aud--gold::before  { background-image: url(../img/blob-gold.svg); }
.teach__cluster a.aud:nth-of-type(1)::before { transform: scaleY(-1); } /* School Teachers — mirror vertically */
.teach__cluster a.aud:nth-of-type(2)::before { transform: scaleX(-1); } /* Youth Leaders — mirror horizontally */
.aud__icon, .aud__label { position: relative; z-index: 1; }
.aud__icon { height: auto; }
.aud__label {
	font-size: var(--fs-22);
	line-height: 1.15;
	font-weight: var(--fw-bold);
	color: var(--c-blue);
}

/* ============================= BUTTONS ============================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: var(--radius-pill);
	font-size: var(--fs-22);
	font-weight: var(--fw-semibold);
	padding: 18px 32px;
	line-height: 1;
	transition: filter .15s ease, transform .15s ease;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn--orange { background: var(--c-orange); color: var(--c-white); }
.btn--outline { background: transparent; border: 2px solid var(--c-orange); color: var(--c-orange); }
.btn--outline:hover { background: var(--c-orange); color: var(--c-white); }
.lesson-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }

/* ============================= COMMUNICATING CLIMATE ============================= */
.comms-section { padding-block: 40px; }
.comms {
	position: relative;
	max-width: 1200px;
	margin-inline: auto;
	min-height: 401px;
	background: var(--c-teal-tint);
	border-radius: 30px;
	padding: 60px 80px;
	display: flex;
	align-items: center;
}
.comms__text { max-width: 574px; }
.comms__title {
	margin: 0;
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
	font-weight: var(--fw-bold);
	color: var(--c-blue);
}
.comms__lead {
	margin: 14px 0 0;
	font-size: var(--fs-22);
	line-height: 1.3;
	color: var(--c-blue);
}
.comms .btn { margin-top: 24px; }
.comms__img {
	position: absolute;
	right: 47px;
	top: -29px;
	width: 488px;
	height: auto;
}

/* ============================= GET INVOLVED ============================= */
.get-involved .section__head--gi { padding-inline: var(--gutter); }
.gi__subtitle {
	margin: 10px 0 0;
	font-size: var(--fs-22);
	line-height: 1.3;
	font-weight: var(--fw-semibold);
	color: var(--c-teal);
}
.gi__body {
	margin: 8px 0 0;
	max-width: 1200px;
	font-size: var(--fs-22);
	line-height: 1.3;
	font-weight: var(--fw-regular);
	color: var(--c-teal);
}
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-inline: var(--gutter);
	margin-top: 30px;
}
.filter {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--c-gray-100);
	font-size: var(--fs-18);
	font-weight: var(--fw-medium);
	color: var(--c-blue);
}
.filter__caret { margin-left: 2px; }

.org-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	padding-inline: var(--gutter);
	margin-top: 30px;
}
.org {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid var(--c-gray-300);
	color: var(--c-blue);
}
.org__name { font-size: var(--fs-22); font-weight: var(--fw-bold); }
.org__ext { flex: 0 0 auto; }
.org:hover .org__name { color: var(--c-teal); }

/* ============================= STAY CONNECTED ============================= */
.stay-connected { background: var(--c-blue); color: var(--c-white); }
.stay__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 60px var(--gutter);
}
.stay__title {
	margin: 0;
	font-size: var(--fs-lead);
	line-height: 1.1;
	font-weight: var(--fw-bold);
	color: var(--c-white);
}
.stay__desc {
	margin: 14px 0 0;
	max-width: 621px;
	font-size: var(--fs-22);
	line-height: 1.3;
	color: var(--c-white);
}
.stay__social { display: flex; gap: 16px; flex: 0 0 auto; }
.social {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--c-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .15s ease;
}
.social:hover { transform: translateY(-2px); }

/* ============================= SITE FOOTER ============================= */
.site-footer { background: var(--c-white); padding: 40px 0 56px; }
.site-footer .container { padding-inline: var(--gutter); }
.footer__logos {
	display: flex;
	align-items: center;
	gap: 17px;
	flex-wrap: nowrap;
}
.footer__logo { width: auto; object-fit: contain; }
.footer__logo--1 { height: 71px; }
.footer__logo--2 { height: 58px; }
.footer__logo--3 { height: 88px; }
.footer__divider { border: 0; border-top: 1px solid var(--c-gray-300); margin: 30px 0; }
.footer__legal {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	font-size: var(--fs-16);
	color: var(--c-blue);
}
.footer__funding { margin: 0; max-width: 480px; line-height: 1.4; }
.footer__links { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; }
.footer__links a:hover { color: var(--c-teal); }
.footer__copy { margin: 0; max-width: 250px; text-align: right; line-height: 1.4; }
.wes-nowrap { white-space: nowrap; }

/* ============================= HAMBURGER (base) ============================= */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border: 0;
	background: none;
	padding: 8px;
}
.nav-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	border-radius: 3px;
	background: var(--c-blue);
	transition: transform .2s ease, opacity .2s ease;
}
.wes-no-scroll { overflow: hidden; }

/* =================================================================
   RESPONSIVE
   ================================================================= */

/* ---- Below design width: tighten gutters, scale hero art ---- */
@media (max-width: 1280px) {
	:root { --gutter: 64px; }
	.hero__graphic { width: 1500px; left: -180px; top: 300px; }
}

/* ---- Tablet / hamburger ---- */
@media (max-width: 1024px) {
	:root { --gutter: 48px; --gutter-nav: 32px; }

	/* nav → hamburger */
	.nav-toggle { display: flex; order: -1; }
	.primary-nav {
		position: absolute;
		top: 83px; left: 0; right: 0;
		background: var(--c-white);
		box-shadow: 0 12px 24px rgba(26,74,133,.12);
		max-height: 0;
		overflow: hidden;
		transition: max-height .25s ease;
		z-index: 50;
	}
	.is-nav-open .primary-nav { max-height: 70vh; }
	.primary-nav__list { flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 0; }
	.primary-nav__item { width: 100%; }
	.primary-nav__link { display: block; padding: 14px var(--gutter-nav); width: 100%; }
	.site-header__inner { position: relative; }

	/* hero */
	.hero__inner { min-height: 0; padding-bottom: 60px; }
	.hero__content { padding-top: 64px; }
	.hero__title { font-size: 60px; }
	.hero__graphic { width: 1100px; left: auto; right: -200px; top: 360px; opacity: .9; }

	/* grids */
	.action-grid { flex-wrap: wrap; gap: 48px; }
	.action-card { width: 300px; }
	.comms { flex-direction: column; align-items: flex-start; padding-bottom: 320px; }
	.comms__img { right: 50%; transform: translateX(50%); top: auto; bottom: 20px; width: 380px; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
	:root { --gutter: 24px; --gutter-nav: 24px; }
	.section { padding-block: 60px; }

	/* hero */
	.hero__content { padding-top: 48px; }
	.hero__logo { width: 84px; height: auto; }
	.hero__title { font-size: 44px; }
	.hero__desc { font-size: 22px; max-width: 100%; }
	.hero__graphic { width: 760px; right: -240px; top: 420px; opacity: .85; }

	/* headings */
	.section__title { font-size: 34px; }
	.section__lead, .quiz__lead, .quiz__note, .teach__lead, .teach__body,
	.gi__subtitle, .gi__body, .comms__lead, .stay__desc, .ecard__title,
	.action-card__title, .org__name, .badge { font-size: 18px; }
	.med__banner { font-size: 26px; }
	.comms__title, .stay__title { font-size: 32px; }

	/* segmented tabs / filters wrap */
	.seg-tabs { margin-left: var(--gutter); }
	.filters { gap: 14px; }
	.filter { font-size: 16px; }

	/* carousels & grids → stack */
	.carousel__track { gap: 24px; padding-inline: var(--gutter); justify-content: flex-start; }
	.carousel { overflow-x: auto; }
	.ecard { flex: 0 0 240px; width: 240px; }
	.ecard__media, .action-card__media { height: 220px; }
	.action-grid { flex-direction: column; align-items: center; gap: 40px; }

	/* quiz */
	.quiz__cta img { width: 100%; max-width: 360px; }

	/* teach cluster → vertical stack */
	.teach__cluster { width: 100%; height: auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
	.tcircle { display: none; }
	.aud {
		position: static !important;
		left: auto !important; top: auto !important;
		width: 240px !important; height: 240px !important;
	}

	/* communicating */
	.comms { padding: 40px 28px 300px; }
	.comms__img { width: 320px; }

	/* get involved → 1 column */
	.org-grid { grid-template-columns: 1fr; }

	/* stay connected → stack */
	.stay__inner { flex-direction: column; align-items: flex-start; padding-block: 48px; }
	.social { width: 44px; height: 44px; }

	/* footer → wrap + shrink */
	.footer__logos { gap: 16px; flex-wrap: wrap; }
	.footer__logo--1 { height: 48px; }
	.footer__logo--2 { height: 40px; }
	.footer__logo--3 { height: 56px; }
	.footer__legal { flex-direction: column; gap: 20px; }
	.footer__copy { text-align: left; max-width: none; }
}

/* ---- Small mobile (~390px design) ---- */
@media (max-width: 480px) {
	.hero__title { font-size: 36px; }
	.section__title { font-size: 28px; }
	.med__banner { font-size: 22px; }
	.comms__title, .stay__title { font-size: 26px; }
	.hero__graphic { width: 560px; right: -180px; top: 440px; }
}

/* =================================================================
   BLOCKS (page-building component library)
   ================================================================= */
.block-section-heading.is-center .section__head { text-align: center; }
.block-section-heading.is-center .section__lead { margin-inline: auto; }

/* Page hero */
.page-hero { padding-block: 80px; }
.page-hero--cream { background: var(--c-cream); }
.page-hero--teal { background: linear-gradient(180deg, var(--c-blue) 0%, var(--c-teal) 85%); color: var(--c-white); }
.page-hero__inner { padding-inline: var(--gutter); max-width: var(--container); }
.page-hero__eyebrow { margin: 0 0 12px; font-size: var(--fs-18); font-weight: var(--fw-semibold); color: var(--c-teal); }
.page-hero--teal .page-hero__eyebrow { color: var(--c-gold); }
.page-hero__title { margin: 0; font-size: var(--fs-h1); line-height: 1.05; font-weight: var(--fw-bold); color: var(--c-blue); }
.page-hero--teal .page-hero__title { color: var(--c-white); }
.page-hero__intro { margin: 18px 0 0; max-width: 760px; font-size: var(--fs-herodesc); line-height: 1.3; font-weight: var(--fw-semibold); color: var(--c-teal); }
.page-hero--teal .page-hero__intro { color: var(--c-white); }

/* Prose */
.block-prose { padding-block: 40px; }
.block-prose .container { padding-inline: var(--gutter); }
.prose { max-width: none; font-size: var(--fs-22); line-height: 1.6; color: var(--c-blue); }
.prose h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); margin: 1.4em 0 .4em; }
.prose h3 { font-size: 31px; margin: 1.2em 0 .3em; }
.prose p { margin: 0 0 1em; }
.prose a { color: var(--c-orange); font-weight: var(--fw-semibold); }
.prose ul, .prose ol { margin: 0 0 1em; padding-inline-start: 1.4em; }
.prose img { border-radius: var(--radius); margin: 1em 0; }
.prose__placeholder { color: var(--c-gray-500); }

/* Cards grid (block) */
.cards-grid { display: flex; flex-wrap: wrap; gap: 60px; justify-content: center; padding-inline: var(--gutter); }
.cards-grid .ecard { flex: 0 0 340px; }

/* CTA banner colour variants */
.comms--cream { background: var(--c-cream); }
.comms--green { background: var(--c-green-tint); }
.comms--orange { background: #FBE3D1; }

/* Steps */
.block-steps { padding-block: 60px; }
.block-steps .container { padding-inline: var(--gutter); }
.steps { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 28px; max-width: 860px; }
.steps__item { display: flex; gap: 22px; align-items: flex-start; }
.steps__num { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; background: var(--c-teal); color: var(--c-white); font-size: 24px; font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center; }
.steps__title { margin: 8px 0 4px; font-size: var(--fs-22); font-weight: var(--fw-bold); color: var(--c-blue); }
.steps__text { margin: 0; font-size: var(--fs-18); line-height: 1.4; color: var(--c-blue); }

/* Checklist */
.block-checklist { padding-block: 60px; }
.block-checklist .container { padding-inline: var(--gutter); }
.checklist { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.checklist__item { display: flex; gap: 14px; align-items: center; font-size: var(--fs-22); color: var(--c-blue); }
.checklist__check { flex: 0 0 26px; }

/* Download */
.block-download { padding-block: 20px; }
.block-download .container { padding-inline: var(--gutter); }
.block-download .btn { gap: 10px; }

.block-empty { padding: 40px var(--gutter); color: var(--c-gray-500); font-style: italic; }

/* Lesson hero (text + side illustration) */
.lesson-hero { padding-block: 50px 30px; overflow: hidden; }
.lesson-hero__inner { display: flex; align-items: center; gap: 40px; padding-inline: var(--gutter); position: relative; }
/* Stack: illustration (back) < cream wave (mid, clips illustration bottom) < text (front). */
.lesson-hero__text { flex: 1 1 auto; position: relative; z-index: 2; }
.lesson-hero__eyebrow { margin: 0 0 14px; color: var(--c-teal); }
.lesson-hero__eyebrow-lead { display: block; font-size: 24px; font-weight: var(--fw-bold); letter-spacing: .04em; text-transform: uppercase; }
.lesson-hero__eyebrow-sub { display: block; margin-top: 4px; font-size: var(--fs-16); font-weight: var(--fw-bold); }
.lesson-hero__title { margin: 0; max-width: 680px; font-size: var(--fs-h2); line-height: 1.1; font-weight: var(--fw-bold); color: var(--c-blue); }
.lesson-hero__intro { margin: 14px 0 0; max-width: 560px; font-size: var(--fs-22); color: var(--c-teal); }
.lesson-hero__img { flex: 0 0 auto; width: 500px; max-width: 46%; height: auto; position: relative; z-index: 0; }

/* Cream brand wave at the bottom of an illustrated lesson hero (Explainer / Teach / How-to) */
/* Single combined wave (band + right-side bump), authored at 1440×373 to map 1:1 to the layout. */
.lesson-hero__cream-wave {
	display: block;
	width: 100%;
	height: auto;
	margin-top: -80px;
	position: relative;
	z-index: 1;
	pointer-events: none;
}

/* Decorated lesson hero (brand wave + round emblem, no side illustration) */
.lesson-hero--decor { background: var(--c-cream); position: relative; padding-block: 70px 60px; }
.lesson-hero--decor .lesson-hero__inner { position: relative; z-index: 1; }
.lesson-hero__wave { position: absolute; top: -40px; inset-inline-end: -40px; width: 560px; max-width: none; height: auto; z-index: 0; pointer-events: none; }
.lesson-hero__head { display: flex; align-items: flex-start; gap: 22px; }
.lesson-hero__emblem { flex: 0 0 auto; width: auto; height: 72px; }
.lesson-hero__headings { flex: 1 1 auto; }
[dir="rtl"] .lesson-hero__wave { inset-inline-end: auto; inset-inline-start: -90px; transform: scaleX(-1); }

/* Step cards (coloured numbered grid) */
.block-step-cards { padding-block: 44px 56px; }
.block-step-cards .container { padding-inline: var(--gutter); }
.step-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.step-card { position: relative; border-radius: var(--radius-lg); padding: 48px 44px 44px; color: var(--c-white); overflow: hidden; min-height: 360px; }
.step-card--orange { background: var(--c-orange); }
.step-card--teal { background: var(--c-teal); }
.step-card--gold { background: var(--c-gold); }
.step-card--green { background: var(--c-green); }
.step-card--blue { background: var(--c-blue); }
.step-card__num { position: absolute; top: 4px; inset-inline-end: 30px; font-size: 132px; font-weight: var(--fw-bold); line-height: 1; color: rgba(255,255,255,.22); pointer-events: none; }
.step-card__body { position: relative; }
.step-card__label { margin: 0 0 20px; font-size: 31px; font-weight: var(--fw-bold); color: var(--c-blue); }
.step-card__title { margin: 0 0 12px; font-size: var(--fs-22); font-weight: var(--fw-bold); color: var(--c-white); }
.step-card__text { margin: 0 0 12px; font-size: var(--fs-18); line-height: 1.45; color: var(--c-white); }
.step-card__text:last-child { margin-bottom: 0; }

/* Info card */
.block-info-card { padding-block: 38px; }
.block-info-card .container { padding-inline: var(--gutter); }
.info-card { display: flex; align-items: center; gap: 40px; border-radius: 30px; padding: 44px 52px; }
.info-card--teal { background: var(--c-teal-tint); }
.info-card--cream { background: var(--c-cream); }
.info-card--green { background: var(--c-green-tint); }
.info-card__text { flex: 1; }
.info-card__heading { margin: 0 0 12px; font-size: 31px; font-weight: var(--fw-bold); color: var(--c-blue); }
.info-card__body { margin: 0; font-size: var(--fs-18); line-height: 1.5; color: var(--c-blue); }
.info-card__img { flex: 0 0 auto; width: 220px; max-width: 32%; height: auto; }

/* Related links */
.block-related { padding-block: 40px; }
.block-related--cream { background: var(--c-cream); }
.block-related .container { padding-inline: var(--gutter); }
.related__heading { margin: 0 0 6px; font-size: 31px; font-weight: var(--fw-bold); color: var(--c-teal); }
.related__subtitle { margin: 0 0 22px; font-size: var(--fs-18); color: var(--c-teal); }
.related__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 60px; }
.related__item { display: flex; align-items: baseline; gap: 7px; padding: 6px 0; }
.related__cat { font-size: var(--fs-18); font-weight: var(--fw-semibold); color: var(--c-orange); white-space: nowrap; }
.related__sep { color: var(--c-orange); }
.related__title { flex: 1; font-size: var(--fs-18); font-weight: var(--fw-bold); color: var(--c-blue); }
.related__ext { flex: 0 0 auto; align-self: flex-start; }

/* Quiz CTA block (cream section, peach card: text left, illustration right) */
.block-quiz--cream { background: var(--c-cream); padding-block: 30px 56px; }
.block-quiz .container { padding-inline: var(--gutter); }
.quizcta { display: flex; align-items: center; gap: 40px; background: #F8DFBA; border-radius: var(--radius-lg); padding: 40px 56px; }
.quizcta__text { flex: 1 1 auto; }
.quizcta__title { margin: 0 0 14px; font-size: var(--fs-lead); line-height: 1.15; font-weight: var(--fw-bold); color: var(--c-teal); }
.quizcta__lead { margin: 0; max-width: 520px; font-size: var(--fs-22); line-height: 1.4; color: var(--c-blue); }
.quizcta__media { flex: 0 0 auto; display: block; }
.quizcta__media img { width: 440px; max-width: 100%; height: auto; display: block; }

/* Callout banner */
.block-callout { padding-block: 34px; }
.block-callout .container { padding-inline: var(--gutter); }
/* padding: 30 top/bottom/right; left 130 = 50 (quote) + 30 (gap) + 50 (left pad) */
.callout { position: relative; max-width: 1060px; margin-inline: auto; border-radius: 16px; padding: 30px 30px 30px 130px; }
.callout--teal { background: var(--c-teal); }
.callout--orange { background: var(--c-orange); }
.callout--blue { background: var(--c-blue); }
.callout--green { background: var(--c-green); }
.callout__quote { position: absolute; left: 50px; top: 50%; transform: translateY(-50%); width: 50px; height: auto; color: rgba(255,255,255,.9); }
.callout__text { margin: 0; max-width: 815px; font-size: 31px; line-height: 1.35; font-weight: var(--fw-regular); color: var(--c-white); }

/* Media + text */
.block-media-text { padding-block: 40px; }
.block-media-text .container { padding-inline: var(--gutter); }
.media-text { display: flex; align-items: center; gap: 80px; }
.media-text--img-right { flex-direction: row-reverse; }
.media-text__media { flex: 0 0 440px; }
.media-text__media img { width: 440px; height: auto; display: block; }
.media-text__body { flex: 1; font-size: var(--fs-22); line-height: 1.6; color: var(--c-blue); }
.media-text__body p { margin: 0 0 1em; }
.media-text__body p:last-child { margin-bottom: 0; }

/* Illustrated checklist rows */
.block-checklist-rows { padding-block: 48px 60px; background: var(--c-cream); }
.block-checklist-rows .container { padding-inline: var(--gutter); }
.clist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 36px; }
.clist__row { display: flex; align-items: center; gap: 30px; }
.clist__media { flex: 0 0 340px; }
.clist__media img { width: 340px; height: auto; display: block; }
.clist__num { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; color: var(--c-white); font-weight: var(--fw-bold); font-size: 20px; display: flex; align-items: center; justify-content: center; }
.clist__num--teal { background: var(--c-teal); }
.clist__num--green { background: var(--c-green); }
.clist__num--blue { background: var(--c-blue); }
.clist__num--gold { background: var(--c-gold); }
.clist__num--orange { background: var(--c-orange); }
.clist__body { flex: 1; }
.clist__title { margin: 0 0 6px; font-size: 31px; font-weight: var(--fw-bold); color: var(--c-blue); }
.clist__text { margin: 0; font-size: var(--fs-18); line-height: 1.45; color: var(--c-blue); }

/* Principles list (numbered accordion-style rows) */
.block-principles { padding-block: 24px 50px; }
.block-principles .container { padding-inline: var(--gutter); }
.principles { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-teal-20); }
.principles__row { display: grid; grid-template-columns: 44px minmax(220px, 300px) 1fr 28px; align-items: center; column-gap: 26px; padding: 22px 6px; border-bottom: 1px solid var(--c-teal-20); }
.principles__num { width: 38px; height: 38px; border-radius: 50%; background: var(--c-teal); color: var(--c-white); font-size: 19px; font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center; }
.principles__title { margin: 0; font-size: var(--fs-22); font-weight: var(--fw-bold); color: var(--c-blue); }
.principles__desc { margin: 0; font-size: var(--fs-18); line-height: 1.35; color: var(--c-teal); }
.principles__chev { color: var(--c-teal); display: flex; align-items: center; justify-content: center; }

/* Resource cards (dense text-card grid) */
.block-resource-cards { padding-block: 20px 40px; }
.block-resource-cards .container { padding-inline: var(--gutter); }
.rcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rcard { background: var(--c-white); border: 1px solid var(--c-gray-300); border-radius: 16px; padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.rcard__cat { margin: 0; font-size: 14px; font-weight: var(--fw-bold); letter-spacing: .06em; text-transform: uppercase; color: var(--c-teal); }
.rcard__title { margin: 0; font-size: var(--fs-22); line-height: 1.2; font-weight: var(--fw-bold); color: var(--c-blue); }
.rcard__text { margin: 0; font-size: var(--fs-16); line-height: 1.45; color: var(--c-blue); }
.rcard__meta { margin: 4px 0 0; font-size: 14px; color: var(--c-gray-500); }

/* Audience quick guide (tabs + reference cards) */
.block-audience-guide { padding-block: 30px 50px; }
.block-audience-guide .container { padding-inline: var(--gutter); }
.ag__heading { margin: 0 0 8px; font-size: var(--fs-lead); font-weight: var(--fw-bold); color: var(--c-blue); }
.ag__lead { margin: 0 0 24px; max-width: 760px; font-size: var(--fs-18); line-height: 1.4; color: var(--c-blue); }
.ag__tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.ag__tab { border: 1px solid var(--c-teal); background: var(--c-white); color: var(--c-teal); border-radius: var(--radius-pill); padding: 9px 22px; font-size: var(--fs-16); font-weight: var(--fw-semibold); cursor: pointer; }
.ag__tab.is-active { background: var(--c-teal); color: var(--c-white); }
.ag__panel { display: none; }
.ag__panel.is-active { display: block; }
.ag__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ag-card { background: var(--c-cream); border-radius: 16px; padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.ag-card__cat { margin: 0; font-size: 14px; font-weight: var(--fw-bold); letter-spacing: .04em; text-transform: uppercase; color: var(--c-orange); }
.ag-card__title { margin: 0; font-size: var(--fs-22); line-height: 1.2; font-weight: var(--fw-bold); color: var(--c-blue); }
.ag-card__text { margin: 0; font-size: var(--fs-16); line-height: 1.45; color: var(--c-blue); }

/* Browse by theme (rows with tag pills) */
.block-theme-index { padding-block: 24px 56px; }
.block-theme-index .container { padding-inline: var(--gutter); }
.tindex__heading { margin: 0 0 8px; font-size: var(--fs-lead); font-weight: var(--fw-bold); color: var(--c-blue); }
.tindex__lead { margin: 0 0 22px; max-width: 760px; font-size: var(--fs-18); line-height: 1.4; color: var(--c-blue); }
.tindex { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-gray-300); }
.tindex__row { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; align-items: center; gap: 24px; padding: 20px 4px; border-bottom: 1px solid var(--c-gray-300); }
.tindex__name { font-size: var(--fs-22); font-weight: var(--fw-bold); color: var(--c-blue); }
.tindex__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tindex__tag { background: var(--c-teal-tint); color: var(--c-blue); border-radius: var(--radius-pill); padding: 6px 16px; font-size: var(--fs-16); }

/* ===================== Article CPT archives (Explainers / How-to Guides / Checklists) ===================== */
.archive-hero { background: var(--c-cream); padding-block: 56px 40px; }
.archive-hero .container { padding-inline: var(--gutter); }
.archive-hero__title { margin: 0; font-size: var(--fs-h1); line-height: 1.05; font-weight: var(--fw-bold); color: var(--c-blue); text-transform: uppercase; }
.archive-hero__lead { margin: 14px 0 0; max-width: 760px; font-size: var(--fs-22); color: var(--c-teal); }
.block-archive { padding-block: 36px 70px; }
.block-archive .container { padding-inline: var(--gutter); }
.archive-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.archive-filters .seg-tab { min-width: 0; height: 40px; padding: 0 20px; font-size: var(--fs-16); text-decoration: none; background: var(--c-teal-20); }
.archive-filters .seg-tab:hover { background: var(--c-teal-tint); }
.archive-filters .seg-tab.is-active { background: var(--c-teal); color: var(--c-white); }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
.acard__link { display: block; color: inherit; text-decoration: none; }
.acard__media { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--c-cream); display: flex; align-items: center; justify-content: center; }
.acard__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; display: block; }
.acard__ph { width: 100%; height: 100%; background: linear-gradient(135deg, var(--c-teal-tint), var(--c-cream-2)); }
.acard__body { padding-top: 14px; }
.acard__topic { display: inline-block; font-size: 13px; font-weight: var(--fw-bold); letter-spacing: .05em; text-transform: uppercase; color: var(--c-teal); }
.acard__title { margin: 6px 0 8px; font-size: var(--fs-22); line-height: 1.2; font-weight: var(--fw-bold); color: var(--c-blue); }
.acard__link:hover .acard__title { color: var(--c-teal); }
.acard__excerpt { margin: 0; font-size: var(--fs-16); line-height: 1.45; color: var(--c-blue); }
.block-archive .navigation { margin-top: 44px; }
.block-archive .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; margin: 0 3px; border-radius: 8px; background: var(--c-cream); color: var(--c-blue); text-decoration: none; font-weight: var(--fw-semibold); }
.block-archive .page-numbers.current { background: var(--c-teal); color: #fff; }
.archive-empty { color: var(--c-gray-500); }
@media (max-width: 980px) { .archive-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .archive-grid { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
	.clist__row { flex-wrap: wrap; gap: 16px; }
	.clist__media { flex-basis: 100%; }
	.clist__media img { width: 100%; max-width: 340px; }
	.lesson-hero__inner { flex-direction: column; align-items: flex-start; }
	.lesson-hero__img { width: 60%; max-width: 320px; }
	.step-cards { grid-template-columns: 1fr; }
	.info-card { flex-direction: column; align-items: flex-start; }
	.info-card__img { width: 160px; }
	.related__list { grid-template-columns: 1fr; }
}

/* =================================================================
   INTERACTIVE QUIZ
   ================================================================= */
.quizc { padding-block: 50px; }
.quizc .container { padding-inline: var(--gutter); }
.quizc__card { background: #F8DFBA; border-radius: var(--radius-lg); padding: 56px; }
.quizc__card--split { display: flex; align-items: center; gap: 40px; }
.quizc__card--split .quizc__pad { flex: 1; padding: 0; }
.quizc__card--q { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.quizc__card--q .quizc__pad { padding: 0; }
.quizc__img { flex: 0 0 auto; width: 46%; max-width: 460px; height: auto; }
.quizc__eyebrow { margin: 0 0 14px; font-size: var(--fs-18); font-weight: var(--fw-semibold); color: var(--c-teal); }
.quizc__title { margin: 0 0 16px; font-size: var(--fs-h2); line-height: 1.1; font-weight: var(--fw-bold); color: var(--c-blue); }
.quizc__intro, .quizc__result-sub, .quizc__result-body { font-size: var(--fs-18); line-height: 1.5; color: var(--c-blue); margin: 0 0 16px; }
.quizc__result-sub { color: var(--c-teal); font-weight: var(--fw-semibold); }
.quizc__progress { margin: 0 0 24px; font-size: var(--fs-18); font-weight: var(--fw-semibold); color: var(--c-teal); }
.quizc__q-prompt { margin: 0 0 8px; font-size: 31px; line-height: 1.2; font-weight: var(--fw-bold); color: var(--c-blue); }
.quizc__q-help { margin: 0; font-size: var(--fs-18); color: var(--c-teal); }
.quizc__q-right { display: flex; flex-direction: column; gap: 12px; }
.quizc__opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: start; background: rgba(255,255,255,.55); border: 2px solid transparent; border-radius: var(--radius-pill); padding: 16px 22px; font-size: var(--fs-18); color: var(--c-blue); cursor: pointer; }
.quizc__opt.is-selected { background: var(--c-white); border-color: var(--c-orange); }
.quizc__radio { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--c-gray-300); background: var(--c-white); }
.quizc__opt.is-selected .quizc__radio { border-color: var(--c-orange); background: var(--c-orange); box-shadow: inset 0 0 0 3px var(--c-white); }
.quizc__feedback { margin: -4px 8px 4px; font-size: var(--fs-16); font-style: italic; color: var(--c-teal); display: flex; gap: 8px; }
.quizc__feedback[hidden] { display: none; }
.quizc__nav { display: flex; justify-content: flex-end; margin-top: 26px; }
.quizc__resources { margin-top: 40px; }
.quizc__res-eyebrow { margin: 0 0 6px; font-size: var(--fs-18); font-weight: var(--fw-semibold); color: var(--c-teal); }
.quizc__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 60px; }
.quizc__col-head { margin: 0 0 8px; font-size: var(--fs-lead); font-weight: var(--fw-bold); color: var(--c-blue); }
.quizc__res-item { display: flex; flex-direction: column; gap: 4px; position: relative; padding: 18px 36px 18px 0; border-bottom: 1px solid var(--c-gray-300); }
.quizc__res-title { font-size: var(--fs-22); font-weight: var(--fw-bold); color: var(--c-blue); }
.quizc__res-cat { font-size: var(--fs-16); color: var(--c-teal); }
.quizc__res-item svg { position: absolute; top: 18px; inset-inline-end: 0; }

@media (max-width: 768px) {
	.quizc__card { padding: 32px 24px; }
	.quizc__card--split, .quizc__card--q { display: flex; flex-direction: column; align-items: flex-start; }
	.quizc__img { width: 70%; max-width: 320px; }
	.quizc__cols { grid-template-columns: 1fr; }
}

/* =================================================================
   ABOUT MODAL
   ================================================================= */
.wes-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.wes-modal[hidden] { display: none; }
.wes-modal__overlay { position: absolute; inset: 0; background: rgba(26,74,133,.35); }
.wes-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 900px;
	max-height: 86vh;
	overflow-y: auto;
	background: var(--c-teal-tint);
	border-radius: var(--radius-lg);
	padding: 40px 48px;
	box-shadow: 0 30px 70px rgba(26,74,133,.25);
}
.wes-modal__close {
	position: absolute;
	top: 18px; inset-inline-end: 22px;
	width: 36px; height: 36px;
	border: 0; background: none;
	font-size: 30px; line-height: 1;
	color: var(--c-blue);
	cursor: pointer;
}
.wes-modal__title { margin: 0 0 18px; font-size: var(--fs-lead); font-weight: var(--fw-bold); color: var(--c-blue); }
.wes-modal__body { font-size: var(--fs-22); line-height: 1.6; color: var(--c-blue); }
.wes-modal__body p { margin: 0 0 14px; }
.wes-modal__body strong { font-style: italic; }
.wes-modal__body a { color: var(--c-blue); text-decoration: underline; }

/* =================================================================
   RTL (Arabic) — mirror direction-specific / absolutely-positioned art
   ================================================================= */
[dir="rtl"] .hero__graphic {
	left: auto;
	right: -279px;
	transform: scaleX(-1);
}
[dir="rtl"] .comms__img {
	right: auto;
	left: 47px;
}
[dir="rtl"] .action-card__medallion {
	left: auto;
	right: 53%;
}
/* chevrons / arrows that imply direction */
[dir="rtl"] .filter__caret,
[dir="rtl"] .lang-switcher__caret { transform: none; }
[dir="rtl"] .org__ext,
[dir="rtl"] .btn svg { transform: scaleX(-1); }
[dir="rtl"] .med__scroll { transform: none; }

@media (max-width: 1280px) {
	[dir="rtl"] .hero__graphic { left: auto; right: -180px; }
}
@media (max-width: 1024px) {
	[dir="rtl"] .hero__graphic { right: auto; left: -200px; transform: scaleX(-1); }
	[dir="rtl"] .comms__img { left: auto; right: 50%; transform: translateX(50%); }
}
