/* =============================================================
   Art for SDGs — art-for-sdgs.css  v2.3.0
   Full-width redesign matching site-wide section style.
   Sections: intro · approach · impact · sdg-editions · stats
             partners · exhibitions · why-matters · subscribe
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

/* ── Color tokens ────────────────────────────────────────── */
.asd-page {
	--asd-brown:      #834d22;
	--asd-brown-dark: #6b3d1a;
	--asd-cream:      #fdf6e3;
	--asd-earth:      #1a0f08;
	--asd-muted:      #6b5240;
	--asd-border:     rgba(131,77,34,.15);
	--asd-shadow-sm:  0 4px 20px rgba(26,15,8,.10);
	--asd-shadow-lg:  0 12px 36px rgba(26,15,8,.18);
}

/* ── Reset ───────────────────────────────────────────────── */
.asd-page *,
.asd-page *::before,
.asd-page *::after { box-sizing: border-box; }
.asd-page img     { max-width: 100%; height: auto; display: block; }
.asd-page ul,
.asd-page ol      { list-style: none; margin: 0; padding: 0; }
.asd-page figure  { margin: 0; }
.asd-page p       { margin-top: 0; }

.asd-page {
	width: 100%;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	color: var(--wdtBodyTxtColor, #202020);
	background: var(--wdtBodyBGColor, #fff);
}
.asd-page section {
	display: block;
	width: 100%;
	position: relative;
}

/* ── Container ───────────────────────────────────────────── */
.asd-container {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── Shared typography ──────────────────────────────────── */
.asd-h2 {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.9rem, 3.8vw, 2.8rem);
	font-weight: var(--wdtFontWeight_Alt, 700);
	color: var(--wdtHeadAltColor, #202020);
	line-height: 1.2;
	margin: 0 0 1.1rem;
}
.asd-h2--center { text-align: center; }
.asd-h2--light  { color: #fff; }

.asd-script-kicker {
	display: block;
	font-family: 'Dancing Script', cursive;
	font-size: 1.5rem;
	font-weight: 600;
	color: #834d22;
	margin-bottom: .6rem;
	line-height: 1.3;
}
.asd-script-kicker--center { text-align: center; }
.asd-script-kicker--light  { color: rgba(255,255,255,.85); }

.asd-divider {
	width: 52px; height: 4px;
	background: #834d22;
	border-radius: 2px;
	margin-bottom: 1.5rem;
}
.asd-divider--center { margin-inline: auto; }
.asd-divider--light  { background: rgba(255,255,255,.55); }

/* ── Button ─────────────────────────────────────────────── */
.asd-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .72rem 1.75rem;
	background: #834d22;
	color: #fff;
	border: 2px solid #834d22;
	border-radius: var(--wdtRadius_Part, 2.5em);
	font-size: .9375rem;
	font-weight: 600;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	text-decoration: none;
	transition: var(--wdtBaseTransition, all .3s linear);
	cursor: pointer;
	line-height: 1;
}
.asd-btn:hover {
	background: #6b3d1a;
	border-color: #6b3d1a;
	color: #fff;
}
.asd-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.65);
}
.asd-btn--outline:hover {
	background: #fff;
	border-color: #fff;
	color: #834d22;
}

/* ── SDG badge pill ──────────────────────────────────────── */
.asd-badge {
	display: inline-block;
	padding: .25rem .85rem;
	border-radius: 2em;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	line-height: 1.5;
}
.asd-badge--year {
	background: #834d22;
	color: #fff;
}
.asd-badge--sdg {
	background: transparent;
	border: 1.5px solid #834d22;
	color: #834d22;
}
.asd-badge--un {
	background: #834d22;
	color: #fff;
}

/* =============================================================
   1. PAGE INTRO — cream banner
   ============================================================= */
.asd-intro {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6rem);
	overflow: hidden;
}
.asd-intro__pattern {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23834d22' stroke-width='0.5' opacity='0.18'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3Ccircle cx='30' cy='30' r='5'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}
.asd-intro__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}
.asd-intro__launch {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}
.asd-intro__lead {
	font-size: 1.05rem;
	line-height: 1.82;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin-bottom: 1rem;
}
.asd-intro__lead:last-child { margin-bottom: 0; }
.asd-intro__figure img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--wdtRadius_3X, 10px);
	box-shadow: 0 8px 32px rgba(26,15,8,.15);
	outline: 6px solid #834d22;
	outline-offset: 8px;
}
@media (max-width: 820px) {
	.asd-intro__grid { grid-template-columns: 1fr; }
	.asd-intro__figure { order: -1; }
}

/* =============================================================
   2. THE APPROACH — image + what makes this unique
   ============================================================= */
.asd-approach {
	background: var(--wdtBodyBGColor, #fff);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.asd-approach__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5.5rem);
	align-items: center;
}
.asd-approach__figure img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 8px 36px rgba(26,15,8,.15);
	margin-inline: auto;
	max-width: 460px;
}
.asd-approach__body p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin-bottom: 1rem;
}
.asd-approach__body p:last-child { margin-bottom: 0; }
.asd-approach__pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1.5rem;
}
.asd-approach__pillar {
	background: #fdf6e3;
	border-radius: var(--wdtRadius_3X, 10px);
	padding: 1rem 1.25rem;
	border-left: 3px solid #834d22;
	box-shadow: 0 2px 10px rgba(26,15,8,.08);
}
.asd-approach__pillar-title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: .95rem;
	font-weight: 700;
	color: #1a0f08;
	margin-bottom: .35rem;
}
.asd-approach__pillar-desc {
	font-size: .875rem;
	line-height: 1.6;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
	margin: 0;
}
@media (max-width: 820px) {
	.asd-approach__grid { grid-template-columns: 1fr; }
	.asd-approach__figure img { border-radius: var(--wdtRadius_3X, 10px); }
}
@media (max-width: 500px) {
	.asd-approach__pillars { grid-template-columns: 1fr; }
}

/* =============================================================
   3. IMPACT OVERVIEW — three-level impact
   ============================================================= */
.asd-impact {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6.5rem);
	overflow: hidden;
}
.asd-impact__pattern {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23834d22' stroke-width='0.5' opacity='0.12'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3Ccircle cx='30' cy='30' r='5'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}
.asd-impact__intro {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.asd-impact__intro p {
	font-size: 1rem;
	line-height: 1.78;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .8;
}
.asd-impact__cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.asd-impact__card {
	background: #ffffff;
	border: 1px solid rgba(131,77,34,.14);
	border-radius: var(--wdtRadius_3X, 10px);
	padding: 2rem 1.75rem;
	box-shadow: 0 4px 20px rgba(26,15,8,.10);
	transition: transform .3s ease, box-shadow .3s ease;
}
.asd-impact__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(26,15,8,.18);
}
.asd-impact__card-num {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 3rem;
	font-weight: 700;
	color: #834d22;
	line-height: 1;
	opacity: .45;
	margin-bottom: .75rem;
}
.asd-impact__card-title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a0f08;
	margin-bottom: .65rem;
}
.asd-impact__card-desc {
	font-size: .9375rem;
	line-height: 1.72;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
	margin: 0;
}
@media (max-width: 820px) {
	.asd-impact__cards { grid-template-columns: 1fr; }
}
@media (min-width: 560px) and (max-width: 820px) {
	.asd-impact__cards { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   4. SDG EDITIONS — inaugural featured + 4-card grid
   ============================================================= */
.asd-editions {
	background: var(--wdtBodyBGColor, #fff);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.asd-editions__intro {
	text-align: center;
	max-width: 680px;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.asd-editions__intro p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}

/* Inaugural featured card */
.asd-editions__featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
	background: #834d22;
	border-radius: var(--wdtRadius_3X, 10px);
	overflow: hidden;
	margin-bottom: 2rem;
	box-shadow: 0 8px 32px rgba(26,15,8,.18);
}
.asd-editions__featured-img {
	aspect-ratio: 4/3;
	overflow: hidden;
}
.asd-editions__featured-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.asd-editions__featured:hover .asd-editions__featured-img img { transform: scale(1.05); }
.asd-editions__featured-body {
	padding: 2.5rem clamp(1.5rem, 3vw, 2.5rem);
}
.asd-editions__featured-meta {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
.asd-editions__featured-title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: .6rem;
	line-height: 1.25;
}
.asd-editions__featured-event {
	font-size: .9rem;
	color: rgba(255,255,255,.7);
	margin-bottom: 1rem;
	line-height: 1.5;
}
.asd-editions__featured-event strong { color: rgba(255,255,255,.9); display: block; }
.asd-editions__featured-desc {
	font-size: .9375rem;
	line-height: 1.75;
	color: rgba(255,255,255,.8);
	margin: 0;
}

/* Annual cards grid */
.asd-editions__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
.asd-editions__card {
	background: #fdf6e3;
	border-radius: var(--wdtRadius_3X, 10px);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(26,15,8,.10);
	border: 1px solid rgba(131,77,34,.14);
	transition: transform .3s ease, box-shadow .3s ease;
}
.asd-editions__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(26,15,8,.18);
}
.asd-editions__card-img {
	aspect-ratio: 16/9;
	overflow: hidden;
}
.asd-editions__card-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.asd-editions__card:hover .asd-editions__card-img img { transform: scale(1.06); }
.asd-editions__card-body {
	padding: 1.5rem 1.75rem 1.75rem;
}
.asd-editions__card-meta {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	margin-bottom: .85rem;
}
.asd-editions__card-title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a0f08;
	margin-bottom: .5rem;
}
.asd-editions__card-event {
	font-size: .875rem;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .65;
	margin-bottom: .85rem;
	line-height: 1.5;
}
.asd-editions__card-event strong { display: block; opacity: 1; color: var(--wdtBodyTxtColor, #202020); }
.asd-editions__card-desc {
	font-size: .9375rem;
	line-height: 1.72;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .8;
	margin: 0;
}

@media (max-width: 820px) {
	.asd-editions__featured { grid-template-columns: 1fr; }
	.asd-editions__featured-body { padding: 1.75rem; }
	.asd-editions__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   5. STATS BAR
   ============================================================= */
.asd-stats {
	background: #834d22;
	padding-block: clamp(3rem, 6vw, 5rem);
}
.asd-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}
.asd-stats__num-row {
	display: flex;
	align-items: baseline;
	gap: 2px;
	justify-content: center;
	margin-bottom: .4rem;
}
.asd-stats__number {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 700;
	color: #fdf6e3;
	line-height: 1;
}
.asd-stats__suffix {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	color: #fdf6e3;
	line-height: 1;
}
.asd-stats__label {
	font-size: .9375rem;
	font-weight: 700;
	color: rgba(255,255,255,.88);
	text-transform: uppercase;
	letter-spacing: .07em;
}
.asd-stats__sub {
	font-size: .85rem;
	color: rgba(255,255,255,.52);
	margin-top: .25rem;
}
@media (max-width: 680px) {
	.asd-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   6. PARTNERS
   ============================================================= */
.asd-partners {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.asd-partners__intro {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.asd-partners__intro p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}
.asd-partners__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.asd-partners__card {
	background: #ffffff;
	border-radius: var(--wdtRadius_3X, 10px);
	padding: 1.25rem 1.5rem;
	border-left: 4px solid #834d22;
	box-shadow: 0 4px 20px rgba(26,15,8,.10);
	transition: box-shadow .3s ease, transform .3s ease;
}
.asd-partners__card:hover {
	box-shadow: 0 10px 32px rgba(26,15,8,.16);
	transform: translateY(-2px);
}
.asd-partners__name {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1rem;
	font-weight: 700;
	color: #1a0f08;
	margin-bottom: .35rem;
}
.asd-partners__desc {
	font-size: .875rem;
	line-height: 1.6;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .72;
	margin: 0;
}
@media (max-width: 680px) {
	.asd-partners__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   7. GLOBAL EXHIBITIONS + EUROPE TOUR
   ============================================================= */
.asd-exhibitions {
	background: var(--wdtBodyBGColor, #fff);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.asd-exhibitions__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5.5rem);
	align-items: center;
	margin-bottom: clamp(3rem, 5vw, 5rem);
}
.asd-exhibitions__body p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin-bottom: 1rem;
}
.asd-exhibitions__body p:last-child { margin-bottom: 0; }
.asd-exhibitions__figure img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--wdtRadius_3X, 10px);
	box-shadow: 0 6px 28px rgba(26,15,8,.14);
}
.asd-journey-list {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}
.asd-journey-list li {
	position: relative;
	padding: .6rem .85rem .6rem 2.25rem;
	background: #fdf6e3;
	border: 1px solid rgba(131,77,34,.12);
	border-radius: var(--wdtRadius_3X, 8px);
	font-size: .9375rem;
	color: var(--wdtBodyTxtColor, #202020);
}
.asd-journey-list li::before {
	content: "→";
	position: absolute;
	left: .75rem;
	top: .6rem;
	color: #834d22;
	font-weight: 700;
}

/* Europe Tour block */
.asd-europe {
	border-radius: var(--wdtRadius_3X, 10px);
	overflow: hidden;
	background: #834d22;
	display: grid;
	grid-template-columns: 1fr 1fr;
	box-shadow: 0 8px 32px rgba(26,15,8,.18);
}
.asd-europe__body {
	padding: clamp(2rem, 4vw, 3rem);
}
.asd-europe__body p {
	font-size: .9375rem;
	line-height: 1.78;
	color: rgba(255,255,255,.82);
	margin-bottom: 1rem;
}
.asd-europe__body p:last-child { margin-bottom: 0; }
.asd-europe__venue {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .65rem 1.25rem;
	border-radius: var(--wdtRadius_Part, 2.5em);
	border: 1.5px dashed rgba(255,255,255,.4);
	font-size: .875rem;
	color: rgba(255,255,255,.85);
	margin-top: 1.25rem;
}
.asd-europe__figure {
	overflow: hidden;
}
.asd-europe__figure img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 820px) {
	.asd-exhibitions__grid { grid-template-columns: 1fr; }
	.asd-exhibitions__figure { order: -1; }
	.asd-europe { grid-template-columns: 1fr; }
	.asd-europe__figure { aspect-ratio: 16/7; }
}

/* =============================================================
   8. WHY IT MATTERS — dark overlay CTA
   ============================================================= */
.asd-why {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 9vw, 8rem);
}
.asd-why__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.asd-why__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26,15,8,.96) 0%, rgba(90,50,20,.80) 60%, rgba(26,15,8,.92) 100%);
}
.asd-why__inner {
	position: relative;
	z-index: 1;
}
.asd-why__header {
	text-align: center;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.asd-why__header .asd-h2 {
	margin-bottom: 1.25rem;
}
.asd-why__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: start;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* Left: body text */
.asd-why__quote {
	border-left: 4px solid #834d22;
	margin: 0 0 1.5rem;
	padding: .85rem 0 .85rem 1.35rem;
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	font-style: italic;
	line-height: 1.7;
	color: rgba(255,255,255,.92);
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
}
.asd-why__body p {
	font-size: 1rem;
	line-height: 1.82;
	color: rgba(255,255,255,.78);
	margin-bottom: 1rem;
}
.asd-why__body p:last-child { margin-bottom: 0; }

/* Right: bridges */
.asd-why__bridges-label {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #fdf6e3;
	margin-bottom: 1rem;
}
.asd-why__list {
	display: flex;
	flex-direction: column;
	gap: .65rem;
}
.asd-why__list li {
	display: grid;
	grid-template-columns: 2.6rem 1fr;
	align-items: center;
	gap: .75rem;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 10px;
	padding: .9rem 1rem;
	transition: background .25s ease, border-color .25s ease;
}
.asd-why__list li:hover {
	background: rgba(255,255,255,.12);
	border-color: rgba(131,77,34,.5);
}
.asd-why__list-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background: rgba(131,77,34,.30);
	font-size: 1rem;
	flex-shrink: 0;
}
.asd-why__list li > span:last-child {
	font-size: .9375rem;
	line-height: 1.6;
	color: rgba(255,255,255,.82);
}

/* CTA buttons — centered below grid */
.asd-why__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}
@media (max-width: 820px) {
	.asd-why__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   9. SUBSCRIBE
   ============================================================= */
.asd-subscribe {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4.5rem, 8vw, 7rem);
}
.asd-subscribe__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.asd-subscribe__overlay {
	position: absolute;
	inset: 0;
	background: rgba(248,234,225,.88);
}
.asd-subscribe__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}
.asd-subscribe__desc {
	max-width: 52ch;
	margin: 0 auto 1.75rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}
.asd-subscribe__form {
	display: flex;
	gap: .75rem;
	max-width: 500px;
	margin-inline: auto;
	flex-wrap: wrap;
	justify-content: center;
}
.asd-subscribe__input {
	flex: 1;
	min-width: 220px;
	padding: .78rem 1.35rem;
	border: 2px solid rgba(131,77,34,.22);
	border-radius: var(--wdtRadius_Part, 2.5em);
	font-size: 1rem;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	color: var(--wdtBodyTxtColor, #202020);
	background: rgba(255,255,255,.85);
	outline: none;
	transition: var(--wdtBaseTransition, all .3s linear);
}
.asd-subscribe__input::placeholder { color: rgba(32,32,32,.45); }
.asd-subscribe__input:focus {
	border-color: #834d22;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(131,77,34,.18);
}
