:root {
	/* NEW TOKENS (DESIGN.md) */
	--ybg-blue-primary: #006ee6;
	--ybg-blue-deep: #0B3D91;
	--ybg-blue-navy: #10172A;
	--ybg-blue-soft: #EAF3FF;
	--ybg-blue-surface: #F5F9FF;
	--ybg-blue-border: #CFE2FF;

	--ybg-red-accent: #E31B23;
	--ybg-red-soft: #FFECEF;

	--ybg-green-support: #16A34A;
	--ybg-green-soft: #EAF8F0;

	--ybg-text-primary: #10172A;
	--ybg-text-muted: #667085;
	--ybg-surface: #FFFFFF;
	--ybg-border: #E5EAF2;

	/* Status */
	--ybg-status-success: var(--ybg-green-support);
	--ybg-status-warning: #B7791F;
	--ybg-status-danger: var(--ybg-red-accent);
	--ybg-status-info: var(--ybg-blue-primary);
	--ybg-status-disabled: #9AA6A0;

	/* Radius */
	--ybg-radius-button: 8px;
	--ybg-radius-card: 12px;
	--ybg-radius-panel: 16px;
	--ybg-radius-admin: 6px;

	/* Shadows */
	--ybg-shadow-base: 0 10px 30px rgba(16, 23, 42, 0.08);
	--ybg-shadow-hover: 0 18px 42px rgba(16, 23, 42, 0.12);

	/* Motion */
	--ybg-motion-fast: 160ms;
	--ybg-motion-base: 240ms;
	--ybg-motion-slow: 520ms;
	--ybg-motion-easing: cubic-bezier(0.22, 1, 0.36, 1);

	/* Typography */
	--ybg-font-system: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	
	/* ALIAS OLD TOKENS TO NEW (Compatibility Bridge) */
	--ybg-primary: var(--ybg-blue-primary);
	--ybg-primary-dark: var(--ybg-blue-deep);
	--ybg-cyan: var(--ybg-blue-primary);
	--ybg-bg: var(--ybg-blue-surface);
	--ybg-surface-glass: rgba(255, 255, 255, 0.85);
	--ybg-text: var(--ybg-text-primary);
	--ybg-text-muted: var(--ybg-text-muted);
	
	/* Maintain old green aliases if they were used anywhere */
	--ybg-green-primary: var(--ybg-green-support);
	--ybg-green-deep: #075E3A;
	
	/* Alias radius to keep layout mostly intact but closer to new */
	--ybg-radius-md: var(--ybg-radius-card);
	--ybg-radius-lg: var(--ybg-radius-panel);
	--ybg-radius-xl: var(--ybg-radius-panel);
	--ybg-radius-pill: 999px;

	/* Alias shadows to new subtle shadows */
	--ybg-shadow: var(--ybg-shadow-base);
	--ybg-shadow-glow: var(--ybg-shadow-hover);
	--ybg-shadow-card: var(--ybg-shadow-base);
	
	/* Spacing & Container Rhythm A4-13C */
	--ybg-space-section: 88px;
	--ybg-container-max: 1240px;
	--ybg-container-padding: 24px;
	--ybg-container-padding-mobile: 16px;
	
	/* Alias fonts to new system font */
	--ybg-font-heading: var(--ybg-font-system);
	--ybg-font-body: var(--ybg-font-system);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ybg-bg);
	color: var(--ybg-text);
	display: flex;
	flex-direction: column;
	font-family: var(--ybg-font-body);
	font-size: 16px;
	line-height: 1.65;
	min-height: 100vh;
	overflow-x: hidden;
}

.site-main {
	flex: 1 0 auto;
}

body.admin-bar .ybg-header {
	top: 32px;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: var(--ybg-primary);
}

a:focus-visible,
button:focus-visible {
	border-radius: 8px;
	outline: 3px solid rgba(18, 103, 242, 0.55);
	outline-offset: 3px;
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.screen-reader-text:focus {
	background: var(--ybg-surface);
	clip-path: none;
	color: var(--ybg-primary);
	height: auto;
	left: 18px;
	padding: 10px 16px;
	top: 18px;
	width: auto;
	z-index: 1000;
}

.ybg-container {
	margin-inline: auto;
	max-width: var(--ybg-container-max);
	padding-inline: var(--ybg-container-padding);
	width: 100%;
}

.site-main.ybg-container {
	padding-block: 152px 72px;
}

.ybg-header {
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid var(--ybg-blue-border);
	box-shadow: 0 4px 20px rgba(16, 23, 42, 0.05);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 20;
}

.ybg-header__bar {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	min-height: 88px;
	padding-block: 14px;
	transition: min-height 180ms ease;
}

@media (min-width: 1024px) {
	.ybg-header__bar {
		display: grid;
		gap: clamp(24px, 3vw, 48px);
		grid-template-columns: auto 1fr;
		max-width: var(--ybg-container-max);
		padding-inline: var(--ybg-container-padding);
	}

	.ybg-header__bar .ybg-brand {
		justify-self: start;
	}

	.ybg-header__bar .ybg-navigation {
		justify-self: end;
	}
}

.ybg-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--ybg-shadow-base);
}

.ybg-header.is-scrolled .ybg-header__bar {
	min-height: 76px;
}

.ybg-brand {
	align-items: center;
	color: var(--ybg-primary);
	display: inline-flex;
	flex-shrink: 0;
	gap: 12px;
	text-decoration: none;
}

.ybg-brand__logo,
.ybg-brand__mark img {
	height: 52px;
	object-fit: contain;
	width: auto;
}

.ybg-brand__logo {
	max-width: min(190px, 48vw);
}

.ybg-brand__text {
	display: grid;
	line-height: 1.2;
}

.ybg-brand__text strong {
	font-family: var(--ybg-font-system);
	color: var(--ybg-blue-navy);
	font-size: 1.25rem;
	font-weight: 800;
}

.ybg-brand__text small {
	color: var(--ybg-text-muted);
	font-size: 0.78rem;
}

.ybg-navigation__list {
	align-items: center;
	display: flex;
	gap: clamp(20px, 3vw, 44px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ybg-navigation__list a {
	color: var(--ybg-blue-navy);
	font-family: var(--ybg-font-system);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	padding: 8px 0;
}

.ybg-navigation__list a:hover,
.ybg-navigation__list a:focus-visible,
.ybg-navigation__list .current-menu-item > a,
.ybg-navigation__list .current_page_item > a {
	color: var(--ybg-blue-primary);
}

.ybg-navigation__list .current-menu-item > a::before,
.ybg-navigation__list .current_page_item > a::before {
	display: none;
}

.ybg-menu-toggle {
	background: transparent;
	border: 0;
	border-radius: 999px;
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 9px;
	position: relative;
	z-index: 31;
}

.ybg-menu-toggle span:not(.screen-reader-text) {
	background: var(--ybg-blue-primary);
	border-radius: 4px;
	display: block;
	height: 2px;
	transition: opacity 160ms ease, transform 160ms ease;
	width: 23px;
}

.ybg-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.ybg-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(3) {
	opacity: 0;
}

.ybg-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.ybg-btn,
.ybg-button {
	align-items: center;
	background: var(--ybg-blue-soft);
	border: 1px solid transparent;
	border-radius: var(--ybg-radius-button);
	box-shadow: none;
	color: var(--ybg-primary);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--ybg-font-heading);
	font-size: 14px;
	font-weight: 500;
	gap: 8px;
	justify-content: center;
	line-height: 1;
	min-height: 44px;
	padding: 11px 25px;
	position: relative;
	text-decoration: none;
	transition: transform var(--ybg-motion-fast) var(--ybg-motion-easing), box-shadow var(--ybg-motion-fast) var(--ybg-motion-easing), background var(--ybg-motion-fast) var(--ybg-motion-easing), border-color var(--ybg-motion-fast) var(--ybg-motion-easing), color var(--ybg-motion-fast) var(--ybg-motion-easing);
}

.ybg-btn span,
.ybg-button span {
	margin-left: 0;
	transition: transform 180ms ease;
}

.ybg-btn:hover span,
.ybg-btn:focus-visible span,
.ybg-button:hover span,
.ybg-button:focus-visible span {
	transform: translateX(4px);
}

.ybg-btn:hover,
.ybg-button:hover {
}

.ybg-btn:focus-visible,
.ybg-button:focus-visible {
	outline: 3px solid rgba(0, 120, 255, 0.28);
	outline-offset: 3px;
}

.ybg-btn:active,
.ybg-button:active {
	transform: translateY(0);
}

.ybg-btn[disabled],
.ybg-btn[aria-disabled="true"],
.ybg-button[disabled],
.ybg-button[aria-disabled="true"] {
	box-shadow: 0 5px 12px rgba(0, 72, 180, 0.12);
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
}

.ybg-btn-primary,
.ybg-btn-primary:visited,
.ybg-button--primary,
.ybg-button--primary:visited {
	background: var(--ybg-primary);
	border-color: transparent;
	box-shadow: none;
	color: #fff;
}

.ybg-btn-primary:hover,
.ybg-btn-primary:focus-visible,
.ybg-button--primary:hover,
.ybg-button--primary:focus-visible {
	background: var(--ybg-primary-dark);
	border-color: transparent;
	box-shadow: none;
	color: #fff;
}

.ybg-btn-primary:active,
.ybg-button--primary:active {
	background: linear-gradient(135deg, #006ee6 0%, #0057c2 100%);
	box-shadow:
		0 6px 15px rgba(0, 87, 194, 0.32),
		inset 0 2px 4px rgba(0, 45, 120, 0.14);
}

.ybg-btn-secondary,
.ybg-btn-secondary:visited,
.ybg-button--light,
.ybg-button--light:visited {
	background: var(--ybg-blue-surface);
	border-color: var(--ybg-blue-border);
	box-shadow: var(--ybg-shadow-base);
	color: var(--ybg-blue-primary);
}

.ybg-btn-secondary:hover,
.ybg-btn-secondary:focus-visible,
.ybg-button--light:hover,
.ybg-button--light:focus-visible {
	background: var(--ybg-blue-soft);
	border-color: var(--ybg-blue-primary);
	box-shadow: var(--ybg-shadow-hover);
	color: var(--ybg-blue-deep);
}

.ybg-btn-secondary:active,
.ybg-button--light:active {
	background: var(--ybg-blue-surface);
	border-color: var(--ybg-blue-primary);
	color: var(--ybg-blue-deep);
}

.ybg-btn-glass-blue,
.ybg-btn-glass-blue:visited,
.ybg-button--glass-blue,
.ybg-button--glass-blue:visited,
.ybg-btn-outline,
.ybg-btn-outline:visited,
.ybg-button--outline,
.ybg-button--outline:visited {
	backdrop-filter: blur(10px);
	background: transparent;
	border: 1px solid var(--ybg-blue-border);
	box-shadow: none;
	color: var(--ybg-text-primary);
}

.ybg-btn-glass-blue:hover,
.ybg-btn-glass-blue:focus-visible,
.ybg-button--glass-blue:hover,
.ybg-button--glass-blue:focus-visible,
.ybg-btn-outline:hover,
.ybg-btn-outline:focus-visible,
.ybg-button--outline:hover,
.ybg-button--outline:focus-visible {
	background: var(--ybg-blue-primary);
	border-color: transparent;
	box-shadow: var(--ybg-shadow-base);
	color: #fff;
}

.ybg-btn-glass-blue:active,
.ybg-button--glass-blue:active,
.ybg-btn-outline:active,
.ybg-button--outline:active {
	background: var(--ybg-blue-deep);
	border-color: transparent;
	box-shadow: none;
}

.ybg-btn-soft,
.ybg-btn-soft:visited,
.ybg-button--soft,
.ybg-button--soft:visited,
.ybg-btn-ghost,
.ybg-btn-ghost:visited {
	background: var(--ybg-blue-soft);
	border-color: transparent;
	box-shadow: none;
	color: var(--ybg-blue-deep);
}

.ybg-btn-soft:hover,
.ybg-btn-soft:focus-visible,
.ybg-button--soft:hover,
.ybg-button--soft:focus-visible,
.ybg-btn-ghost:hover,
.ybg-btn-ghost:focus-visible {
	background: var(--ybg-blue-primary);
	border-color: transparent;
	box-shadow: none;
	color: #fff;
}

.ybg-btn-soft:active,
.ybg-button--soft:active,
.ybg-btn-ghost:active {
	background: var(--ybg-blue-deep);
	border-color: transparent;
	color: #fff;
}

.ybg-btn[disabled],
.ybg-btn[aria-disabled="true"],
.ybg-button[disabled],
.ybg-button[aria-disabled="true"] {
	background: linear-gradient(180deg, #f2f6fc 0%, #eaf1fb 100%);
	border-color: rgba(131, 158, 198, 0.12);
	box-shadow: 0 5px 12px rgba(0, 72, 180, 0.08);
	color: #8ca8d3;
}

.ybg-btn-sm {
	font-size: 0.82rem;
	min-height: 36px;
	padding: 8px 17px;
}

.ybg-btn-md {
	font-size: 0.95rem;
	min-height: 44px;
	padding: 11px 25px;
}

.ybg-btn-lg {
	font-size: 1rem;
	min-height: 48px;
	padding: 12px 31px;
}

.ybg-hero {
	--ybg-hero-height: max(720px, 56.28vw);
	background-color: #0b5fca;
	background-image: url("../images/hero/hero_desktop_2.5.webp");
	background-image: image-set(url("../images/hero/hero_desktop_2.5.webp") type("image/webp") 1x);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: var(--ybg-hero-height);
	overflow: hidden;
	padding: clamp(148px, 17vh, 190px) 0 clamp(82px, 10vh, 108px);
	position: relative;
}

.ybg-hero::before,
.ybg-hero::after {
	content: "";
	pointer-events: none;
	position: absolute;
}

.ybg-hero::before {
	background:
		radial-gradient(circle at 20% 45%, rgba(243, 251, 255, 0.18) 0%, rgba(186, 224, 255, 0.12) 22%, transparent 48%),
		linear-gradient(90deg, rgba(0, 75, 170, 0.5) 0%, rgba(0, 86, 190, 0.34) 28%, rgba(0, 74, 175, 0.12) 48%, rgba(0, 49, 127, 0) 68%);
	inset: 0;
}

.ybg-hero::after {
	background:
		radial-gradient(ellipse at 76% 39%, rgba(255, 255, 255, 0.08), transparent 29%),
		linear-gradient(0deg, rgba(4, 24, 72, 0.16), transparent 24%);
	inset: 0;
}

.ybg-hero__inner {
	align-items: center;
	display: flex;
	max-width: none;
	min-height: calc(var(--ybg-hero-height) - clamp(230px, 27vh, 298px));
	padding-inline: clamp(24px, 3vw, 56px);
	position: relative;
	z-index: 1;
}

.ybg-hero__content {
	color: #fff;
	margin-left: clamp(28px, 3vw, 72px);
	max-width: 770px;
	position: relative;
	z-index: 2;
}

.ybg-hero__artwork {
	display: none;
}

.ybg-hero__artwork::after {
	background: linear-gradient(90deg, rgba(4, 88, 180, 0.74) 0%, rgba(4, 88, 180, 0.44) 34%, rgba(4, 24, 72, 0.08) 70%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.ybg-hero__artwork picture {
	display: block;
	height: 100%;
	width: 100%;
}

.ybg-hero__artwork img {
	display: block;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	width: 100%;
}

.ybg-hero__badge {
	align-items: center;
	background: linear-gradient(135deg, #0b7cff 0%, #006ee6 100%);
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 999px;
	box-shadow:
		0 11px 24px rgba(0, 87, 194, 0.34),
		0 2px 8px rgba(11, 124, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.36);
	color: #fff;
	display: inline-flex;
	font-size: 0.84rem;
	font-weight: 800;
	gap: 9px;
	letter-spacing: 0.062em;
	margin: 0 0 29px;
	min-height: 43px;
	padding: 9px 20px 9px 11px;
	position: relative;
	text-shadow: none;
	white-space: nowrap;
}

.ybg-hero__badge-logo {
	flex-shrink: 0;
	height: 24px;
	object-fit: contain;
	width: 23px;
}

.ybg-hero h1 {
	color: #fff;
	font-family: var(--ybg-font-heading);
	font-size: clamp(3.05rem, 4.05vw, 4.2rem);
	font-weight: 900;
	letter-spacing: -0.038em;
	line-height: 1.07;
	margin: 0 0 27px;
	text-shadow:
		0 2px 0 rgba(255, 255, 255, 0.2),
		0 8px 18px rgba(0, 52, 150, 0.32),
		0 18px 42px rgba(0, 91, 172, 0.28),
		0 0 25px rgba(193, 238, 255, 0.12);
}

.ybg-hero__title-line {
	display: block;
}

.ybg-hero__title-line--statement {
	white-space: nowrap;
}

.ybg-hero h1 strong {
	background: none;
	color: inherit;
	filter: none;
	font-weight: inherit;
	text-shadow: inherit;
	-webkit-text-fill-color: currentcolor;
}

.ybg-hero__tagline {
	color: #fff;
	font-family: var(--ybg-font-heading);
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 19px;
	text-shadow: 0 2px 8px rgba(0, 58, 151, 0.3);
}

.ybg-hero__description {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.09rem;
	line-height: 1.62;
	margin: 0 0 41px;
	max-width: 590px;
	text-shadow: 0 2px 9px rgba(16, 68, 153, 0.43);
}

.ybg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.ybg-hero__actions .ybg-button {
	font-size: 1rem;
	min-height: 48px;
	padding: 12px 31px;
	transition-property: transform, box-shadow;
}

.ybg-hero__actions .ybg-button--primary,
.ybg-hero__actions .ybg-button--primary:visited,
.ybg-hero__actions .ybg-button--primary:hover,
.ybg-hero__actions .ybg-button--primary:focus-visible,
.ybg-hero__actions .ybg-button--primary:active {
	background: var(--ybg-primary-dark);
	border-color: transparent;
	box-shadow: none;
	color: #fff;
}

.ybg-hero__actions .ybg-button--soft,
.ybg-hero__actions .ybg-button--soft:visited,
.ybg-hero__actions .ybg-button--soft:hover,
.ybg-hero__actions .ybg-button--soft:focus-visible,
.ybg-hero__actions .ybg-button--soft:active {
	background: var(--ybg-blue-soft);
	border-color: transparent;
	box-shadow: none;
	color: var(--ybg-blue-deep);
}

.ybg-section {
	padding-block: var(--ybg-space-section);
}

.ybg-section--white {
	background: var(--ybg-surface);
}

.ybg-section--tint {
	background: linear-gradient(180deg, #f5f9ff, #edf5ff);
}

.ybg-home-activities {
	padding-bottom: clamp(48px, 5.8vw, 72px);
}

.ybg-home-volunteer-cta {
	padding-top: 0;
	padding-bottom: clamp(48px, 5.8vw, 72px);
}

.ybg-section-heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 auto clamp(32px, 4vw, 46px);
	max-width: 720px;
	text-align: center;
	width: 100%;
}

.ybg-section-heading h2,
.ybg-digital__content h2,
.ybg-cta h2 {
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.82rem, 3vw, 2.65rem);
	letter-spacing: -0.035em;
	line-height: 1.22;
	margin: 0 0 14px;
}

.ybg-section-heading > p:last-child,
.ybg-digital__content > p,
.ybg-cta p {
	color: var(--ybg-text-muted);
	margin: 0;
}

.ybg-section-heading > p:last-child {
	margin-inline: auto;
}

.ybg-digital__content h2 span {
	display: block;
}

.ybg-stats {
	background: var(--ybg-surface);
	padding: 0 0 clamp(42px, 6vw, 62px);
	position: relative;
}

.ybg-stats__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: -48px;
	position: relative;
	z-index: 2;
}

.ybg-stat-card {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--ybg-border);
	border-radius: var(--ybg-radius-lg);
	box-shadow: var(--ybg-shadow-card);
	padding: 25px 20px;
	text-align: center;
}

.ybg-stat-card__value {
	background: linear-gradient(135deg, var(--ybg-primary), var(--ybg-cyan));
	background-clip: text;
	color: transparent;
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.85rem, 3vw, 2.45rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 7px;
}

.ybg-stat-card__label {
	color: var(--ybg-text-muted);
	font-size: 0.93rem;
	margin: 0;
}

.ybg-mission {
	padding-top: clamp(18px, 4vw, 42px);
}

.ybg-mission__grid {
	display: grid;
	gap: clamp(20px, 2.6vw, 32px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ybg-mission-card {
	background: var(--ybg-surface);
	border: 1px solid var(--ybg-border);
	border-radius: var(--ybg-radius-lg);
	box-shadow: var(--ybg-shadow-card);
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 294px;
	padding: clamp(26px, 3vw, 32px);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ybg-mission-card:hover {
	border-color: rgba(64, 137, 224, 0.38);
	box-shadow: var(--ybg-shadow);
}

.ybg-mission-card:focus-within {
	border-color: rgba(64, 137, 224, 0.38);
	box-shadow: var(--ybg-shadow);
}

.ybg-mission-card__icon {
	align-items: center;
	border-radius: 50%;
	display: inline-flex;
	height: 54px;
	justify-content: center;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
	width: 54px;
}

.ybg-mission-card__icon svg {
	height: 27px;
	width: 27px;
}

/* Campaign (Green) */
.ybg-mission-card--campaign .ybg-mission-card__icon {
	color: #117748;
	background: #e6f6ee;
	border: 1px solid rgba(17, 119, 72, 0.18);
}
.ybg-mission-card--campaign:hover .ybg-mission-card__icon,
.ybg-mission-card--campaign:focus-within .ybg-mission-card__icon {
	background: linear-gradient(135deg, #16a34a, #15803d);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(21, 128, 61, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.ybg-mission-card--campaign:hover,
.ybg-mission-card--campaign:focus-within { border-color: #117748; }
.ybg-mission-card--campaign .ybg-mission-card__link { color: #117748; }
.ybg-mission-card--campaign .ybg-mission-card__link:hover,
.ybg-mission-card--campaign .ybg-mission-card__link:focus-visible { color: #064e3b; }

/* Digital (Blue) */
.ybg-mission-card--digital .ybg-mission-card__icon {
	color: #006ee6;
	background: #eff7ff;
	border: 1px solid rgba(0, 110, 230, 0.18);
}
.ybg-mission-card--digital:hover .ybg-mission-card__icon,
.ybg-mission-card--digital:focus-within .ybg-mission-card__icon {
	background: linear-gradient(145deg, #1789ff, #0064db);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(0, 92, 212, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.ybg-mission-card--digital:hover,
.ybg-mission-card--digital:focus-within { border-color: #006ee6; }
.ybg-mission-card--digital .ybg-mission-card__link { color: #006ee6; }
.ybg-mission-card--digital .ybg-mission-card__link:hover,
.ybg-mission-card--digital .ybg-mission-card__link:focus-visible { color: var(--ybg-blue-navy); }

/* Highlight (Orange) */
.ybg-mission-card--highlight .ybg-mission-card__icon {
	color: #d65c00;
	background: #fff0e6;
	border: 1px solid rgba(214, 92, 0, 0.18);
}
.ybg-mission-card--highlight:hover .ybg-mission-card__icon,
.ybg-mission-card--highlight:focus-within .ybg-mission-card__icon {
	background: linear-gradient(135deg, #f97316, #ea580c);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(234, 88, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.ybg-mission-card--highlight:hover,
.ybg-mission-card--highlight:focus-within { border-color: #d65c00; }
.ybg-mission-card--highlight .ybg-mission-card__link { color: #d65c00; }
.ybg-mission-card--highlight .ybg-mission-card__link:hover,
.ybg-mission-card--highlight .ybg-mission-card__link:focus-visible { color: #9a3412; }

/* Gallery (Purple) */
.ybg-mission-card--gallery .ybg-mission-card__icon {
	color: #6b21a8;
	background: #f3ebfa;
	border: 1px solid rgba(107, 33, 168, 0.18);
}
.ybg-mission-card--gallery:hover .ybg-mission-card__icon,
.ybg-mission-card--gallery:focus-within .ybg-mission-card__icon {
	background: linear-gradient(135deg, #a855f7, #7e22ce);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(126, 34, 206, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.ybg-mission-card--gallery:hover,
.ybg-mission-card--gallery:focus-within { border-color: #6b21a8; }
.ybg-mission-card--gallery .ybg-mission-card__link { color: #6b21a8; }
.ybg-mission-card--gallery .ybg-mission-card__link:hover,
.ybg-mission-card--gallery .ybg-mission-card__link:focus-visible { color: #4c1d95; }

.ybg-mission-card h3 {
	font-family: var(--ybg-font-heading);
	font-size: 1.27rem;
	line-height: 1.35;
	margin: 3px 0 0;
}

.ybg-mission-card p {
	color: var(--ybg-text-muted);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

.ybg-mission-card__link {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--ybg-blue-primary);
	display: inline-flex;
	font-weight: 700;
	gap: 6px;
	margin-top: auto;
	padding: 0;
	text-decoration: none;
	box-shadow: none;
	transition: color 180ms ease;
	width: fit-content;
}

.ybg-mission-card__link span {
	display: inline-block;
	transition: transform 180ms ease;
}

.ybg-mission-card__link:hover,
.ybg-mission-card__link:focus-visible {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	color: var(--ybg-blue-navy);
	transform: none;
}
.ybg-mission-card__link:hover span,
.ybg-mission-card__link:focus-visible span {
	transform: translateX(4px);
}

.ybg-mission-card__link:active {
	background: transparent;
	color: var(--ybg-blue-primary);
}

.ybg-impact {
	background: #f4f9ff;
	padding-block: clamp(48px, 6vw, 64px);
	position: relative;
}

.ybg-impact__grid {
	align-items: stretch;
	display: grid;
	gap: clamp(24px, 3vw, 32px);
	grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
}

.ybg-impact__content {
	display: contents;
}

.ybg-impact__header {
	grid-column: 1 / -1;
	margin: 0 auto;
	max-width: 840px;
	text-align: center;
}

.ybg-impact__header .ybg-eyebrow {
	display: inline-block;
	color: var(--ybg-blue-primary);
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ybg-impact__header h2 {
	font-size: clamp(2rem, 3vw, 2.6rem);
	font-family: var(--ybg-font-heading);
	color: var(--ybg-blue-navy);
	line-height: 1.2;
	margin-bottom: 16px;
	margin-top: 0;
}

.ybg-impact__header p {
	font-size: 1.05rem;
	color: #5f7495;
	line-height: 1.6;
	margin: 0;
}

.ybg-impact__dashboard {
	display: grid;
	align-self: stretch;
	gap: 12px;
	grid-column: 1;
	grid-template-columns: 1fr;
}

.ybg-impact__visual {
	background-color: #eef7ff;
	background-image: url("../images/backgrounds/action-backgrounds.webp?v=20260602-130000");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	grid-column: 2;
	min-height: 680px;
	box-shadow: 0 12px 40px rgba(0, 54, 140, 0.06);
	display: flex;
	align-items: flex-start;
}

.ybg-impact__visual::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 35%, rgba(238, 247, 255, 0.42) 60%, rgba(238, 247, 255, 0.08) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.ybg-impact__visual::after {
	background: url("../images/placeholders/character.webp") center bottom / contain no-repeat;
	content: "";
	height: 118%;
	pointer-events: none;
	position: absolute;
	right: -5%;
	bottom: -280px;
	width: 68%;
	z-index: 2;
}

.ybg-impact-info-panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	max-width: 470px;
	padding: clamp(24px, 3vw, 32px);
	position: relative;
	margin: clamp(24px, 3.5vw, 48px);
	z-index: 3;
}

.ybg-impact-info-panel h3 {
	color: var(--ybg-blue-navy);
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.65rem, 2.35vw, 2rem);
	line-height: 1.3;
	margin: 0 0 20px;
}

.ybg-impact-info-panel p {
	color: #5f7495;
	font-size: 1rem;
	line-height: 1.75;
	margin: 0 0 24px;
}

.ybg-impact-info-panel .ybg-impact__list {
	margin-bottom: 24px;
	list-style: none;
	padding: 0;
}

.ybg-impact-info-panel .ybg-impact__list li {
	font-size: 0.9rem;
	line-height: 1.5;
	padding-left: 32px;
	margin-bottom: 12px;
	position: relative;
}

.ybg-impact-info-panel .ybg-impact__list li:last-child {
	margin-bottom: 0;
}

.ybg-impact-info-panel .ybg-impact__list li::before {
	align-items: center;
	background: #dfeeff;
	border-radius: 50%;
	color: #0872e0;
	content: "\2713";
	display: flex;
	font-weight: 700;
	height: 22px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 0;
	width: 22px;
	font-size: 0.85rem;
}

.ybg-impact-info-panel .ybg-button {
	justify-content: center;
	min-width: 176px;
	padding-inline: 24px;
}

.ybg-card-grid {
	display: grid;
	gap: 24px;
	align-items: stretch;
}

.ybg-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ybg-card-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1200px) {
	.ybg-card-grid--five {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.ybg-card-grid--five {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.ybg-card-grid--five {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.ybg-card-grid--five {
		grid-template-columns: 1fr;
	}
}

.ybg-activities__layout {
	display: flex;
	flex-direction: row;
	gap: clamp(16px, 2vw, 24px);
	margin: 0 auto;
	height: 420px;
}

.ybg-activities__layout > .ybg-card {
	flex: 1;
	overflow: visible;
}

.ybg-activities__layout > .ybg-card.ybg-gallery-card:hover {
	box-shadow: var(--ybg-shadow-hover);
	transform: none;
}

.ybg-activities__layout > .ybg-card .ybg-card__media img,
.ybg-activities__layout > .ybg-card .ybg-gallery-card__image img,
.ybg-activities__layout > .ybg-card .ybg-activity-card__media {
	height: 160px;
	width: 100%;
	object-fit: cover;
	border-radius: 16px 16px 0 0;
}

.ybg-activities__layout > .ybg-card:hover .ybg-gallery-card__image img,
.ybg-activities__layout > .ybg-card:hover .ybg-card__media img,
.ybg-activities__layout > .ybg-card:hover .ybg-activity-card__media {
	transform: none !important;
}

.ybg-activities__layout > .ybg-card .ybg-card__body,
.ybg-activities__layout > .ybg-card .ybg-gallery-card__content {
	align-items: flex-start;
	height: calc(100% - 163px);
	overflow: hidden;
	padding: 18px 18px 16px;
	text-align: left;
}

.ybg-activities__layout > .ybg-card .ybg-category-badge-overlay {
	left: 18px;
	transform: translateY(50%);
	border: 3px solid #ffffff;
}

/* Badge colors for the 4 specific sections on Homepage */
.ybg-activities__layout > .ybg-card:nth-child(1) .ybg-category-badge-overlay {
	background: rgba(214, 92, 0, 0.9) !important; /* Gương sáng - Orange */
	color: #ffffff;
}
.ybg-activities__layout > .ybg-card:nth-child(2) .ybg-category-badge-overlay {
	background: rgba(17, 119, 72, 0.9) !important; /* Chiến dịch - Green */
	color: #ffffff;
}
.ybg-activities__layout > .ybg-card:nth-child(3) .ybg-category-badge-overlay {
	background: rgba(0, 91, 172, 0.9) !important; /* Cẩm nang - Blue */
	color: #ffffff;
}
.ybg-activities__layout > .ybg-card:nth-child(4) .ybg-category-badge-overlay {
	background: rgba(107, 33, 168, 0.9) !important; /* Thư viện ảnh - Purple */
	color: #ffffff;
}

.ybg-activities__layout > .ybg-card .ybg-gallery-card__image {
	border-bottom: 3px solid #ffffff;
	overflow: visible;
	aspect-ratio: auto !important;
	height: 160px;
}

.ybg-activities__layout > .ybg-card .ybg-card__media {
	aspect-ratio: auto !important;
	border-bottom: 3px solid #ffffff;
	height: 160px;
	overflow: visible !important;
}

.ybg-activities__layout > .ybg-card h3 {
	display: -webkit-box;
	flex-shrink: 0;
	font-size: 1.12rem;
	margin-bottom: 11px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ybg-activities__layout > .ybg-card p:not(.ybg-eyebrow) {
	color: var(--ybg-text-muted);
	display: -webkit-box;
	font-size: 0.96rem;
	line-height: 1.55;
	margin: 0 0 16px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ybg-activities__layout > .ybg-card .ybg-card__meta {
	font-size: 0.84rem;
}

.ybg-activities__layout > .ybg-card .ybg-card__footer {
	align-items: center;
	border-top: none;
	display: flex;
	justify-content: flex-start;
	margin-top: auto;
	padding-top: 20px;
}

.ybg-activities__layout .ybg-campaign-card__cta {
	cursor: pointer;
	margin-top: 12px;
	min-height: 38px;
}

.ybg-activities__layout .ybg-campaign-card__closed {
	font-size: 0.84rem;
	margin-top: 12px !important;
	padding: 9px 14px;
}

.ybg-activities__fallback {
	margin-top: 4px;
}

.ybg-card {
	background: var(--ybg-surface);
	border: 1px solid var(--ybg-blue-border);
	border-radius: var(--ybg-radius-card);
	box-shadow: var(--ybg-shadow-base);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow var(--ybg-motion-base) var(--ybg-motion-easing), transform var(--ybg-motion-base) var(--ybg-motion-easing);
}

.ybg-card:hover {
	box-shadow: var(--ybg-shadow-hover);
}

.ybg-card:focus-within {
	box-shadow: var(--ybg-shadow-hover);
}

.ybg-card__media {
	display: block;
	position: relative;
}

.ybg-card__media > .ybg-badge:not(.ybg-badge--static) {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
}

.ybg-card__media img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 260ms ease;
	width: 100%;
}



.ybg-activity-card__media {
	align-items: center;
	position: relative;
	background: var(--ybg-surface-alt);
	display: flex;
	height: 180px;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.ybg-activity-card__media::after {
	background:
		radial-gradient(circle at 70% 34%, rgba(255, 255, 255, 0.35), transparent 25%),
		repeating-linear-gradient(135deg, transparent 0 19px, rgba(255, 255, 255, 0.1) 20px 21px);
	content: "";
	inset: 0;
	position: absolute;
}

.ybg-activity-card__media span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.76rem;
	font-style: italic;
	position: relative;
	z-index: 1;
}

.ybg-activity-card.is-digital .ybg-activity-card__media {
	background: linear-gradient(135deg, var(--ybg-blue-navy), var(--ybg-blue-primary));
}

.ybg-activity-card.is-campaign .ybg-activity-card__media {
	background: linear-gradient(135deg, #16a66a, #24c38a);
}

.ybg-activity-card.is-highlight .ybg-activity-card__media {
	background: linear-gradient(135deg, #e89712, #ffc352);
}

.ybg-activity-card__eyebrow,
.ybg-category-badge-overlay {
	border-radius: var(--ybg-radius-pill);
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 6px 12px;
}

.ybg-category-badge-overlay {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	z-index: 2;
	white-space: nowrap;
}

:not(.ybg-activities__layout) > .ybg-activity-card.is-campaign .ybg-category-badge-overlay,
:not(.ybg-activities__layout) > .ybg-activity-card.is-highlight .ybg-category-badge-overlay {
	top: 16px;
	bottom: auto;
	left: 16px;
	transform: none;
}

.ybg-activity-card__eyebrow {
	margin: 0 0 11px !important;
	width: fit-content;
}

.ybg-activity-card.is-digital .ybg-activity-card__eyebrow,
.ybg-activity-card.is-digital .ybg-category-badge-overlay {
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	color: #0284c7;
}

.ybg-activity-card.is-campaign .ybg-activity-card__eyebrow,
.ybg-activity-card.is-campaign .ybg-category-badge-overlay {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #16a34a;
}

.ybg-activity-card.is-highlight .ybg-activity-card__eyebrow,
.ybg-activity-card.is-highlight .ybg-category-badge-overlay {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	color: #ea580c;
}

.ybg-activity-card.is-gallery .ybg-activity-card__eyebrow,
.ybg-activity-card.is-gallery .ybg-category-badge-overlay {
	background: #faf5ff;
	border: 1px solid #e9d5ff;
	color: #9333ea;
}

.ybg-activity-card__link {
	margin-top: auto;
	width: fit-content;
}

.ybg-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 23px 23px 22px;
}

.ybg-card h3 {
	font-family: var(--ybg-font-heading);
	font-size: 1.18rem;
	line-height: 1.42;
	margin: 0 0 12px;
}

.ybg-card h3 a {
	color: var(--ybg-text);
	text-decoration: none;
}

.ybg-card p:not(.ybg-eyebrow) {
	color: var(--ybg-text-muted);
	margin: 0 0 15px;
}

.ybg-card__meta {
	font-size: 0.9rem;
}

.ybg-card__footer {
	align-items: center;
	border-top: 1px solid #e7effa;
	color: var(--ybg-text-muted);
	display: flex;
	font-size: 0.86rem;
	gap: 10px;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 16px;
}

.ybg-campaign-card__cta {
	cursor: pointer;
	margin-top: 20px;
	min-height: 44px;
	width: 100%;
}

.ybg-campaign-card__closed {
	background: #edf3fa;
	border-radius: var(--ybg-radius-pill);
	color: var(--ybg-text-muted);
	font-size: 0.9rem;
	font-weight: 700;
	margin: 20px 0 0 !important;
	padding: 11px 16px;
	text-align: center;
}

.ybg-campaign-card--directory .ybg-card__media img {
	aspect-ratio: 16 / 9;
}

.ybg-campaign-card--directory .ybg-card__body {
	gap: 0;
	padding: 22px 22px 20px;
}

.ybg-campaign-card--directory {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 440px;
}

.ybg-campaign-card--directory h3 {
	display: -webkit-box;
	line-height: 1.38;
	margin-bottom: 8px;
	min-height: 2.76em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ybg-campaign-card__excerpt {
	color: var(--ybg-text-muted);
	display: -webkit-box;
	font-size: 0.9rem;
	line-height: 1.62;
	margin: 0 0 12px !important;
	min-height: 2.92em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ybg-campaign-card__meta-list {
	display: grid;
	gap: 8px;
	min-height: 54px;
	margin-bottom: 14px;
}

.ybg-campaign-card__meta-list .ybg-card__meta {
	align-items: center;
	display: flex;
	gap: 9px;
	margin: 0 !important;
}

.ybg-campaign-card__meta-icon {
	align-items: center;
	background: #edf6ff;
	border: 0;
	border-radius: 50%;
	color: #006ee6;
	height: 19px;
	padding: 4px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 19px;
}

.ybg-campaign-card__progress {
	min-height: 42px;
	margin-bottom: 14px;
}

.ybg-campaign-card__progress p {
	color: var(--ybg-text-muted);
	display: flex;
	font-size: 0.77rem;
	justify-content: space-between;
	margin: 0 0 7px !important;
}

.ybg-campaign-card__track {
	background: #e4effb;
	border-radius: var(--ybg-radius-pill);
	height: 7px;
	overflow: hidden;
}

.ybg-campaign-card__track span {
	background: var(--ybg-blue-primary);
	border-radius: inherit;
	display: block;
	height: 100%;
}

.ybg-campaign-card--directory .ybg-card__footer {
	border-top: 0 !important;
	padding-top: 0 !important;
	margin-top: auto !important;
}

.ybg-campaign-card--directory .ybg-campaign-card__cta {
	margin-top: 0 !important;
	width: 146px !important;
	min-height: 42px !important;
	padding: 0 16px !important;
	border-radius: 12px !important;
	font-size: 0.95rem !important;
	font-family: var(--ybg-font-heading);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ybg-campaign-card--directory .ybg-campaign-card__cta.is-disabled {
	background: #edf3fa !important;
	border-color: transparent !important;
	box-shadow: none !important;
	color: var(--ybg-text-muted) !important;
	cursor: not-allowed;
}

.ybg-campaign-card .ybg-text-link,
.ybg-gallery-card .ybg-text-link,
.ybg-highlight-card .ybg-text-link {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	color: var(--ybg-primary) !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 0.95rem !important;
	transform: none !important;
}

.ybg-campaign-card .ybg-text-link span,
.ybg-gallery-card .ybg-text-link span,
.ybg-highlight-card .ybg-text-link span,
.ybg-activity-card .ybg-text-link span,
.ybg-text-link span {
	display: inline-block;
	transition: transform 180ms ease;
}

.ybg-campaign-card .ybg-text-link:hover span,
.ybg-campaign-card .ybg-text-link:focus-visible span,
.ybg-gallery-card .ybg-text-link:hover span,
.ybg-gallery-card .ybg-text-link:focus-visible span,
.ybg-highlight-card .ybg-text-link:hover span,
.ybg-highlight-card .ybg-text-link:focus-visible span,
.ybg-activity-card .ybg-text-link:hover span,
.ybg-activity-card .ybg-text-link:focus-visible span,
.ybg-text-link:hover span,
.ybg-text-link:focus-visible span {
	transform: translateX(4px) !important;
}

.ybg-campaign-card--demo .ybg-card__media {
	align-items: center;
	aspect-ratio: 16 / 9;
	background:
		radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.36) 0%, transparent 28%),
		linear-gradient(135deg, var(--ybg-blue-navy) 0%, var(--ybg-blue-primary) 100%);
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.ybg-campaign-card--demo .ybg-card__media::after {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
	background-size: 28px 28px;
	content: "";
	inset: 0;
	opacity: 0.32;
	position: absolute;
}

.ybg-campaign-demo__icon {
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 36px rgba(0, 53, 143, 0.2);
	height: 82px;
	position: relative;
	width: 82px;
	z-index: 1;
}

.ybg-campaign-demo__icon::before,
.ybg-campaign-demo__icon::after {
	background: #fff;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.ybg-campaign-demo__icon--leaf::before {
	border-radius: 24px 4px 24px 4px;
	height: 36px;
	transform: translate(-55%, -50%) rotate(-28deg);
	width: 48px;
}

.ybg-campaign-demo__icon--leaf::after {
	background: #0070e6;
	height: 2px;
	transform: translate(-50%, -50%) rotate(-28deg);
	width: 34px;
}

.ybg-campaign-demo__icon--digital::before {
	background: transparent;
	border: 4px solid #fff;
	border-radius: 12px;
	height: 44px;
	width: 34px;
}

.ybg-campaign-demo__icon--digital::after {
	border-radius: 50%;
	height: 7px;
	top: 70%;
	width: 7px;
}

.ybg-campaign-demo__icon--heart::before {
	border-radius: 18px 18px 3px 18px;
	height: 38px;
	transform: translate(-50%, -44%) rotate(45deg);
	width: 38px;
}

.ybg-campaign-demo__icon--heart::after {
	background: var(--ybg-red);
	border-radius: 50%;
	height: 11px;
	width: 11px;
}

.ybg-campaign-card__demo-note {
	color: #006ee6;
	font-weight: 700;
}

.ybg-campaign-card--demo .ybg-campaign-card__cta:disabled {
	background: linear-gradient(180deg, #f3f7fd 0%, #e9f1fb 100%);
	border-color: rgba(130, 179, 239, 0.22);
	box-shadow: none;
	color: #6f87a8;
	cursor: not-allowed;
	transform: none;
}

.ybg-badge {
	align-items: center;
	backdrop-filter: blur(9px);
	background: var(--ybg-blue-soft);
	border: 1px solid var(--ybg-blue-border);
	border-radius: var(--ybg-radius-pill);
	color: var(--ybg-blue-deep);
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 600;
	gap: 7px;
	justify-content: center;
	line-height: 1.15;
	left: 14px;
	padding: 6px 12px;
	position: absolute;
	top: 14px;
	white-space: nowrap;
}

.ybg-badge.is-upcoming {
	border-color: var(--ybg-status-info);
	color: var(--ybg-status-info);
}

.ybg-badge.is-active {
	border-color: var(--ybg-status-success);
	color: var(--ybg-status-success);
}

.ybg-badge.is-full {
	border-color: var(--ybg-status-danger);
	color: var(--ybg-status-danger);
}

.ybg-badge.is-ended {
	border-color: var(--ybg-status-disabled);
	color: var(--ybg-text-muted);
}

.ybg-badge.is-guide {
	border-color: var(--ybg-blue-primary);
	color: var(--ybg-blue-primary);
}

.ybg-guide-card {
	padding-top: 25px;
}

.ybg-guide-card__icon,
.ybg-helpdesk-card__icon {
	background: var(--icon-bg, var(--ybg-blue-soft));
	border: 1px solid var(--icon-border, var(--ybg-blue-border));
	border-radius: 50%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	color: var(--icon-color, var(--ybg-blue-primary));
	height: 54px;
	margin-left: 23px;
	position: relative;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
	width: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ybg-guide-card__icon::after {
	display: none !important;
}

.ybg-guide-card:hover .ybg-guide-card__icon,
.ybg-guide-card:focus-within .ybg-guide-card__icon,
.ybg-helpdesk-card:focus-within .ybg-helpdesk-card__icon {
	background: var(--icon-hover-bg, linear-gradient(145deg, #1789ff, #0064db));
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow:
		0 9px 20px rgba(18, 103, 242, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.42);
	color: #fff;
}

.ybg-guide-card__icon svg {
	width: 27px;
	height: 27px;
	stroke-width: 1.8px;
}

.ybg-guide-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 16px;
	line-height: 1.65;
}

.ybg-guide-card .ybg-text-link {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	color: var(--ybg-blue-primary) !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	margin-top: auto !important;
	transform: none !important;
}

.ybg-guide-card .ybg-text-link span {
	display: inline-block;
	transition: transform 180ms ease;
}

.ybg-guide-card .ybg-text-link:hover span,
.ybg-guide-card .ybg-text-link:focus-visible span {
	transform: translateX(4px) !important;
}

.ybg-gallery-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ybg-gallery-card {
	background: #fff;
	border-radius: var(--ybg-radius-lg);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: var(--ybg-transition-base);
	height: 100%;
}

.ybg-gallery-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ybg-gallery-card__link {
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.ybg-gallery-card__image {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, var(--ybg-blue-surface) 0%, rgba(18, 103, 242, 0.05) 100%), radial-gradient(circle, rgba(18, 103, 242, 0.05) 2px, transparent 2.5px);
	background-size: 100% 100%, 20px 20px;
}

.ybg-gallery-card__image a {
	display: block;
	width: 100%;
	height: 100%;
}

.ybg-gallery-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	position: relative;
	z-index: 1;
	color: transparent; /* Hides broken image alt text */
}

.ybg-gallery-card:hover .ybg-gallery-card__image img {
	transform: scale(1.05);
}

.ybg-gallery-card__badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	background: #f8fafc;
	color: #64748b;
	border: 1px solid #e2e8f0;
	padding: 4px 12px;
	border-radius: var(--ybg-radius-pill, 9999px);
	font-size: 0.75rem;
	font-weight: 600;
	z-index: 2;
}
.ybg-gallery-card__badge--chien-dich { background: #f0fdf4; border-color: #bbf7d0; color: #16a34a; }
.ybg-gallery-card__badge--su-kien { background: #f0f9ff; border-color: #bae6fd; color: #0284c7; }
.ybg-gallery-card__badge--tap-huan { background: #fff7ed; border-color: #fed7aa; color: #ea580c; }
.ybg-gallery-card__badge--cong-dong, .ybg-gallery-card__badge--hoat-dong { background: #faf5ff; border-color: #e9d5ff; color: #9333ea; }

.ybg-gallery-card__content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 0; /* Changed from 1 to 0 globally to prevent arbitrary stretching */
}

.ybg-gallery-card__title {
	font-family: var(--ybg-font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 16px;
	color: var(--ybg-blue-navy);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: calc(1.4em * 2); /* Force exact 2-line height */
}

.ybg-gallery-card__meta {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--ybg-text-muted);
}

.ybg-gallery-card__meta-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ybg-gallery-card__date, .ybg-gallery-card__count, .ybg-gallery-card__action {
	display: flex;
	align-items: center;
	gap: 4px;
}

.ybg-gallery-card__date svg, .ybg-gallery-card__count svg, .ybg-gallery-card__action svg {
	width: 14px;
	height: 14px;
	color: var(--ybg-blue-primary);
}

.ybg-gallery-card__action {
	color: var(--ybg-blue-primary);
	font-weight: 500;
}

.ybg-gallery-card__separator {
	color: #cbd5e1;
}

.ybg-section--digital {
	background: linear-gradient(135deg, #edf5ff 0%, #fff 48%, #eaf6ff 100%);
}

.ybg-digital {
	align-items: center;
	display: grid;
	gap: clamp(34px, 6vw, 72px);
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
}

.ybg-check-list {
	display: grid;
	gap: 13px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.ybg-check-list li {
	color: var(--ybg-text);
	padding-left: 32px;
	position: relative;
}

.ybg-check-list li::before {
	background: var(--ybg-blue-primary);
	border-radius: 50%;
	color: #fff;
	content: "\2713";
	font-size: 0.78rem;
	font-weight: 700;
	height: 21px;
	left: 0;
	line-height: 21px;
	position: absolute;
	text-align: center;
	top: 2px;
	width: 21px;
}

.ybg-helpdesk-card,
.ybg-glass-panel {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow);
	padding: clamp(28px, 4vw, 40px);
}

.ybg-helpdesk-card__icon {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 0 20px;
}

.ybg-helpdesk-card__icon svg {
	fill: none;
	height: 27px;
	stroke: currentColor;
	width: 27px;
}

.ybg-helpdesk-card h3 {
	font-family: var(--ybg-font-heading);
	font-size: 1.45rem;
	margin: 0 0 10px;
}

.ybg-helpdesk-card p {
	color: var(--ybg-text-muted);
	margin: 0 0 25px;
}

.ybg-helpdesk-card__note {
	font-size: 0.8rem;
	margin: 18px 0 0 !important;
}

.ybg-form {
	margin-top: 25px;
}

.ybg-form__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ybg-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.ybg-field--full {
	grid-column: 1 / -1;
}

.ybg-field span {
	color: var(--ybg-text);
	font-size: 0.9rem;
	font-weight: 650;
}

.ybg-field em {
	color: #d53d47;
	font-style: normal;
}

.ybg-field input,
.ybg-field select,
.ybg-field textarea {
	background: #fff;
	border: 1px solid rgba(131, 158, 198, 0.16);
	border-radius: var(--ybg-radius-md);
	color: var(--ybg-text);
	font: inherit;
	min-height: 48px;
	padding: 11px 13px;
	width: 100%;
}

.ybg-field select {
	-webkit-appearance: none;
	appearance: none;
	background-color: #f8fbff;
	background-image:
		linear-gradient(180deg, #fff 0%, #f8fbff 100%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23005bac' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-position: 0 0, right 14px center;
	background-repeat: no-repeat;
	background-size: 100% 100%, 18px 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
	cursor: pointer;
	padding-right: 44px;
}

.ybg-field select:hover {
	border-color: rgba(0, 112, 230, 0.36);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 8px 18px rgba(4, 60, 133, 0.06);
}

.ybg-field select option {
	background: #fff;
	color: #10233f;
	font: inherit;
}

.ybg-custom-select {
	position: relative;
	width: 100%;
}

.ybg-native-select-hidden {
	height: 1px;
	left: 18px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	width: 1px;
}

.ybg-custom-select__button {
	align-items: center;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
	border: 1px solid rgba(112, 153, 207, 0.42);
	border-radius: var(--ybg-radius-md);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
	color: var(--ybg-text-muted);
	cursor: pointer;
	display: flex;
	font: inherit;
	justify-content: space-between;
	min-height: 48px;
	padding: 11px 44px 11px 13px;
	position: relative;
	text-align: left;
	transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
	width: 100%;
}

.ybg-custom-select__button::after {
	background-color: #005bac;
	content: "";
	height: 18px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 180ms ease;
	width: 18px;
}

.ybg-custom-select.has-value .ybg-custom-select__button {
	color: var(--ybg-text);
}

.ybg-custom-select__button:hover,
.ybg-custom-select.is-open .ybg-custom-select__button {
	border-color: rgba(0, 112, 230, 0.36);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 8px 18px rgba(4, 60, 133, 0.06);
}

.ybg-custom-select__button:focus-visible {
	border-color: var(--ybg-cyan);
	box-shadow: 0 0 0 3px rgba(18, 103, 242, 0.25);
	outline: 0;
}

.ybg-custom-select.is-open .ybg-custom-select__button::after {
	transform: translateY(-50%) rotate(180deg);
}

.ybg-custom-select__menu {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(130, 179, 239, 0.36);
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(4, 60, 133, 0.16);
	display: grid;
	gap: 4px;
	left: 0;
	margin-top: 8px;
	overflow: hidden;
	padding: 7px;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 20;
}

.ybg-custom-select__menu[hidden] {
	display: none;
}

.ybg-custom-select__option {
	background: transparent;
	border: 0;
	border-radius: 12px;
	color: var(--ybg-text);
	cursor: pointer;
	font: inherit;
	padding: 10px 12px;
	text-align: left;
	transition: background 160ms ease, color 160ms ease;
}

.ybg-custom-select__option:hover,
.ybg-custom-select__option:focus-visible {
	background: #edf6ff;
	color: var(--ybg-primary);
	outline: 0;
}

.ybg-custom-select__option.is-selected {
	background: linear-gradient(90deg, #e8f4ff 0%, #eef9ff 100%);
	color: var(--ybg-primary);
	font-weight: 700;
}

.ybg-field textarea {
	min-height: 86px;
	resize: vertical;
}

.ybg-field input:focus,
.ybg-field select:focus,
.ybg-field textarea:focus {
	border-color: var(--ybg-cyan);
	box-shadow: 0 0 0 3px rgba(18, 103, 242, 0.25);
	outline: 0;
}

.ybg-form__message {
	border-radius: var(--ybg-radius-md);
	display: none;
	font-size: 0.9rem;
	margin: 18px 0 0 !important;
	padding: 11px 13px;
}

.ybg-form__message.is-success,
.ybg-form__message.is-error {
	display: block;
}

.ybg-form__message.is-success {
	background: #eaf8f1;
	color: #067147;
}

.ybg-form__message.is-error {
	background: #fff0f1;
	color: #a62b34;
}

.ybg-form__submit {
	margin-top: 20px;
	width: 100%;
}

.ybg-form__submit:disabled {
	background: linear-gradient(180deg, #f2f6fc 0%, #eaf1fb 100%);
	border-color: rgba(131, 158, 198, 0.12);
	box-shadow: 0 5px 12px rgba(0, 72, 180, 0.08);
	color: #8ca8d3;
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
}

.ybg-modal[hidden] {
	display: none;
}

.ybg-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 24px;
	position: fixed;
	z-index: 100;
}

.ybg-modal__backdrop {
	background: rgba(5, 21, 49, 0.65);
	inset: 0;
	position: absolute;
}

.ybg-modal__dialog {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 26px 70px rgba(4, 29, 73, 0.28);
	max-height: calc(100vh - 48px);
	max-width: 540px;
	overflow-y: auto;
	padding: 32px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.ybg-modal__header {
	align-items: center;
	border-bottom: 1px solid #eaedf3;
	display: flex;
	justify-content: space-between;
	margin: -32px -32px 24px;
	padding: 20px 32px;
}

.ybg-modal__header h2 {
	color: #005bac !important;
	font-family: var(--ybg-font-heading);
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	margin: 0 !important;
}

.ybg-modal__close {
	align-items: center;
	background: transparent !important;
	border: 0;
	border-radius: 0 !important;
	color: #64748b !important;
	cursor: pointer;
	display: flex;
	height: 32px;
	justify-content: center;
	padding: 0;
	position: static !important;
	transition: color 0.15s ease;
	width: 32px;
}

.ybg-modal__close:hover {
	color: var(--ybg-primary) !important;
}

/* Highlighted Campaign Card inside Modal */
.ybg-form-campaign-card {
	background: #f0f7ff;
	border: 1px solid #d0e4ff;
	border-radius: 12px;
	margin-bottom: 24px;
	padding: 18px 20px;
}

.ybg-form-campaign-card__label {
	color: #005bac;
	font-size: 0.95rem;
	font-weight: 500;
	display: block;
	margin-bottom: 6px;
}

.ybg-form-campaign-card__title {
	color: #00468c;
	font-family: var(--ybg-font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 10px 0;
}

.ybg-form-campaign-card__location {
	align-items: center;
	color: #64748b;
	display: flex;
	font-size: 0.85rem;
	gap: 6px;
	margin: 0;
}

.ybg-form-campaign-card__pin-icon {
	color: #64748b;
	height: 16px;
	width: 16px;
	flex-shrink: 0;
}

/* Form inputs & select wrapper */
.ybg-field__label {
	color: #334155 !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	margin-bottom: 6px;
}

.ybg-field input,
.ybg-field textarea {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	color: var(--ybg-text);
	font: inherit;
	min-height: 48px;
	padding: 11px 16px;
	width: 100%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ybg-field input:focus,
.ybg-field textarea:focus {
	border-color: #005bac;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1);
}

.ybg-select-wrapper {
	position: relative;
	width: 100%;
}

.ybg-select-wrapper select {
	appearance: none;
	-webkit-appearance: none;
	background: #fff !important;
	background-image: none !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 12px !important;
	color: var(--ybg-text);
	cursor: pointer;
	font: inherit;
	min-height: 48px;
	padding: 11px 40px 11px 16px !important;
	width: 100%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	box-shadow: none !important;
}

.ybg-select-wrapper select:focus {
	border-color: #005bac !important;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1) !important;
}

.ybg-select-icon {
	color: #64748b;
	height: 18px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
}

/* Modal submit button override */
.ybg-modal .ybg-form__submit {
	background: #005bac;
	border: 0;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	min-height: 50px;
	transition: background 0.15s ease, transform 0.1s ease;
	width: 100%;
	margin-top: 12px;
}

.ybg-modal .ybg-form__submit:hover {
	background: #004888;
}

.ybg-modal .ybg-form__submit:active {
	transform: scale(0.98);
}

body.ybg-modal-open {
	overflow: hidden;
}

.ybg-section--cta {
	background: var(--ybg-surface);
}

.ybg-cta {
	align-items: center;
	background: #0876dc url("../images/backgrounds/cta-backgrounds.webp?v=20260602-130000") center / cover no-repeat;
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow-glow);
	color: #fff;
	display: flex;
	justify-content: center;
	min-height: 0;
	aspect-ratio: 1492 / 252;
	overflow: hidden;
	padding: clamp(24px, 4vw, 44px);
	position: relative;
}

.ybg-cta::before {
	background:
		radial-gradient(ellipse at center, rgba(0, 54, 140, 0.4) 0%, rgba(0, 67, 157, 0.23) 31%, transparent 62%),
		linear-gradient(90deg, rgba(215, 242, 255, 0.36) 0%, rgba(178, 223, 255, 0.18) 16%, rgba(148, 213, 255, 0.06) 27%, transparent 40%),
		linear-gradient(270deg, rgba(215, 242, 255, 0.36) 0%, rgba(178, 223, 255, 0.18) 16%, rgba(148, 213, 255, 0.06) 27%, transparent 40%),
		radial-gradient(circle at center, rgba(1, 85, 186, 0.02), rgba(1, 75, 164, 0.08) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.ybg-cta__content {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	text-align: left;
	margin: 0 auto;
	max-width: 1080px;
	position: relative;
	width: 100%;
	z-index: 1;
	gap: 24px;
}

.ybg-cta--centered .ybg-cta__content {
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	max-width: 760px;
	text-align: center;
}

.ybg-cta__text {
	max-width: 65%;
	margin-bottom: 0;
}

.ybg-cta--centered .ybg-cta__text {
	max-width: 100%;
}

.ybg-cta .ybg-eyebrow,
.ybg-cta p {
	color: rgba(255, 255, 255, 0.85);
}

.ybg-cta h2 {
	margin-bottom: 13px;
	white-space: normal;
}

.ybg-cta__content p:not(.ybg-eyebrow) {
	max-width: 820px;
	margin-inline: auto;
}

.ybg-cta__actions {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.ybg-cta--centered .ybg-cta__actions {
	width: auto;
}

.ybg-cta__primary {
	min-width: 176px;
}

.ybg-principles {
	background: #f3f8ff;
	padding-block: 0 var(--ybg-space-section);
}

.ybg-principles__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ybg-principle {
	background: #fff;
	border: 1px solid var(--ybg-border);
	border-radius: var(--ybg-radius-lg);
	padding: 25px;
}

.ybg-principle span {
	background: linear-gradient(135deg, var(--ybg-primary), var(--ybg-cyan));
	border-radius: 50%;
	display: block;
	height: 10px;
	margin-bottom: 17px;
	width: 10px;
}

.ybg-principle h2 {
	font-family: var(--ybg-font-heading);
	font-size: 1.15rem;
	margin: 0 0 7px;
}

.ybg-principle p {
	color: var(--ybg-text-muted);
	margin: 0;
}

.ybg-foundation {
	padding: 72px 0;
}

.ybg-foundation__panel {
	background: #fff;
	border: 1px solid var(--ybg-border);
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow);
	margin: 0 auto;
	max-width: 920px;
	padding: clamp(32px, 5vw, 58px);
	text-align: center;
}

.ybg-eyebrow {
	color: var(--ybg-primary);
	font-family: var(--ybg-font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.ybg-foundation__panel h2,
.ybg-page-heading h1 {
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.8rem, 3.2vw, 2.55rem);
	line-height: 1.25;
	margin: 0 0 14px;
}

.ybg-foundation__panel p:last-child {
	color: var(--ybg-text-muted);
	margin: 0 auto;
	max-width: 680px;
}

.ybg-page-heading {
	margin-bottom: 42px;
}

.ybg-page-landing__header {
	padding-block: clamp(126px, 15vw, 168px) clamp(44px, 6vw, 64px);
}

.ybg-page-landing__header .ybg-page-heading {
	background: linear-gradient(118deg, var(--ybg-blue-navy), var(--ybg-blue-primary));
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow-glow);
	color: #fff;
	margin: 0;
	overflow: hidden;
	padding: clamp(34px, 5vw, 56px);
	position: relative;
}

.ybg-page-landing__header .ybg-page-heading::after {
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
	background-size: 26px 26px;
	content: "";
	inset: 0;
	opacity: 0.44;
	position: absolute;
}

.ybg-page-landing__header .ybg-page-heading > * {
	max-width: 700px;
	position: relative;
	z-index: 1;
}

.ybg-page-landing__header .ybg-eyebrow,
.ybg-page-landing__header .ybg-page-heading__description {
	color: rgba(255, 255, 255, 0.86);
}

.ybg-page-landing__header .ybg-page-heading__description {
	margin-bottom: 0;
}

.ybg-campaign-page,
.ybg-digital-page,
.ybg-highlight-page,
.ybg-gallery-page {
	background: #f5f9ff;
}

.ybg-campaign-page__hero,
.ybg-digital-page__hero,
.ybg-highlight-page__hero,
.ybg-gallery-page__hero {
	background: var(--ybg-blue-surface);
	color: var(--ybg-text-primary);
	overflow: hidden;
	position: relative;
}

.ybg-campaign-page__hero::before,
.ybg-campaign-page__hero::after,
.ybg-digital-page__hero::before,
.ybg-digital-page__hero::after,
.ybg-highlight-page__hero::before,
.ybg-highlight-page__hero::after,
.ybg-gallery-page__hero::before,
.ybg-gallery-page__hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.ybg-campaign-page__hero::before,
.ybg-digital-page__hero::before,
.ybg-highlight-page__hero::before,
.ybg-gallery-page__hero::before {
	display: none;
}

.ybg-campaign-page__hero::after,
.ybg-digital-page__hero::after,
.ybg-highlight-page__hero::after,
.ybg-gallery-page__hero::after {
	display: none;
}

.ybg-campaign-page .ybg-page-landing__header,
.ybg-digital-page .ybg-page-landing__header,
.ybg-highlight-page .ybg-page-landing__header,
.ybg-gallery-page--listing .ybg-page-landing__header,
.ybg-gallery-page .ybg-page-landing__header {
	padding-block: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 48px);
	position: relative;
	z-index: 1;
}

.ybg-campaign-page .ybg-page-landing__header .ybg-page-heading,
.ybg-digital-page .ybg-page-landing__header .ybg-page-heading,
.ybg-highlight-page .ybg-page-landing__header .ybg-page-heading,
.ybg-gallery-page--listing .ybg-page-landing__header .ybg-page-heading,
.ybg-gallery-page .ybg-page-landing__header .ybg-page-heading {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	margin: 0 auto;
	max-width: 800px;
	padding: 0;
	text-align: center;
}

.ybg-campaign-page .ybg-page-landing__header .ybg-page-heading::after,
.ybg-digital-page .ybg-page-landing__header .ybg-page-heading::after,
.ybg-highlight-page .ybg-page-landing__header .ybg-page-heading::after,
.ybg-gallery-page--listing .ybg-page-landing__header .ybg-page-heading::after,
.ybg-gallery-page .ybg-page-landing__header .ybg-page-heading::after {
	display: none;
}

.ybg-campaign-page .ybg-page-heading > *,
.ybg-digital-page .ybg-page-heading > *,
.ybg-highlight-page .ybg-page-heading > *,
.ybg-gallery-page--listing .ybg-page-heading > *,
.ybg-gallery-page .ybg-page-heading > * {
	margin-inline: auto;
}

.ybg-campaign-page .ybg-page-heading h1,
.ybg-digital-page .ybg-page-heading h1,
.ybg-highlight-page .ybg-page-heading h1,
.ybg-gallery-page--listing .ybg-page-heading h1,
.ybg-gallery-page .ybg-page-heading h1 {
	color: var(--ybg-blue-navy);
	font-size: clamp(2.2rem, 4.4vw, 3.45rem);
	font-weight: 800;
	line-height: 1.18;
	margin-bottom: 18px;
	text-shadow: none;
}

.ybg-campaign-page .ybg-page-heading__description,
.ybg-digital-page .ybg-page-heading__description,
.ybg-highlight-page .ybg-page-heading__description,
.ybg-gallery-page--listing .ybg-page-heading__description,
.ybg-gallery-page .ybg-page-heading__description {
	color: var(--ybg-text-muted);
	font-size: clamp(1rem, 1.5vw, 1.13rem);
	line-height: 1.72;
	max-width: 670px;
}

.ybg-campaign-page .ybg-eyebrow,
.ybg-digital-page .ybg-eyebrow,
.ybg-highlight-page .ybg-eyebrow,
.ybg-gallery-page--listing .ybg-eyebrow,
.ybg-gallery-page .ybg-eyebrow {
	background: var(--ybg-blue-soft);
	border: 1px solid var(--ybg-blue-border);
	border-radius: var(--ybg-radius-pill);
	color: var(--ybg-blue-primary);
	display: inline-flex;
	margin-bottom: 20px;
	padding: 7px 18px;
}

.ybg-page-landing .ybg-section {
	padding-block: clamp(40px, 5vw, 64px);
}

.ybg-page-landing .ybg-section--tint {
	background: #f5f9ff;
}

.ybg-page-landing .ybg-section--white {
	background: #fff;
}

.ybg-page-landing .ybg-section-heading,
.ybg-page-landing .ybg-featured__heading {
	margin-bottom: clamp(26px, 3vw, 36px);
}


.ybg-section-heading--left {
	text-align: left;
	max-width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-inline: 0;
}

.ybg-section-heading--left .ybg-section-heading__main {
	max-width: 680px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}



.ybg-section-heading--with-dot h2 {
	display: flex;
	align-items: center;
	position: relative;
}

.ybg-section-heading--with-dot h2::before {
	content: "";
	position: absolute;
	left: -20px;
	width: 8px;
	height: 8px;
	background: var(--ybg-blue-primary);
	border-radius: 50%;
}

.ybg-section-heading__actions {
	margin-top: 0;
}

.ybg-section-heading__actions .ybg-text-link {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
	color: var(--ybg-blue-primary);
	font-weight: 600;
}

.ybg-section-heading__actions .ybg-text-link:hover,
.ybg-section-heading__actions .ybg-text-link:focus-visible {
	background: transparent;
	box-shadow: none;
	transform: none;
	color: var(--ybg-blue-navy);
}

.ybg-section-heading__actions .ybg-text-link span {
	display: inline-block;
	transition: transform 180ms ease;
}

.ybg-section-heading__actions .ybg-text-link:hover span,
.ybg-section-heading__actions .ybg-text-link:focus-visible span {
	transform: translateX(4px);
}

.ybg-page-landing .ybg-empty-state--compact {
	margin-inline: auto;
	max-width: 1180px;
	padding: clamp(40px, 4.5vw, 56px) 28px;
}

.ybg-page-landing .ybg-empty-state__icon {
	height: 40px;
	margin-bottom: 14px;
	width: 40px;
}

.ybg-guide-directory {
}

.ybg-guide-directory .ybg-card-grid {
	gap: clamp(20px, 2vw, 26px);
}

.ybg-guide-card--directory {
	padding-top: 22px;
}

.ybg-guide-card--directory .ybg-card__body {
	padding-top: 16px;
}

.ybg-guide-card__category {
	background: transparent;
	color: #0872e0 !important;
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin: 0 0 8px !important;
	padding: 0;
}

.ybg-digital-helpdesk {
	padding-block: clamp(40px, 5vw, 64px);
}

.ybg-digital-page .ybg-digital {
	align-items: start;
}

.ybg-digital-page .ybg-digital__content h2 {
	font-size: clamp(1.65rem, 2.7vw, 2.18rem);
	line-height: 1.24;
	max-width: 680px;
	text-wrap: balance;
}

.ybg-digital-page .ybg-digital__content h2 span:first-child {
	white-space: nowrap;
}

.ybg-filter-bar {
	background: transparent;
	box-shadow: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	overflow: visible;
	padding-bottom: 16px;
	position: relative;
	z-index: 80;
}

.ybg-campaign-page .ybg-filter-bar {
	background: transparent;
	box-shadow: none;
	justify-content: center;
	padding-block: clamp(30px, 4vw, 40px) 18px;
}

.ybg-filter-bar__inner {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	overflow: visible;
	padding: 0;
	position: relative;
	z-index: 1;
}

.ybg-filter-show {
	align-items: center;
	background: transparent;
	color: var(--ybg-text-muted);
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 700;
	gap: 8px;
	padding: 0;
	position: relative;
	z-index: 4;
}

.ybg-filter-show > span {
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.ybg-filter-show__select {
	-webkit-appearance: none;
	appearance: none;
	background:
		linear-gradient(180deg, #fff 0%, var(--ybg-blue-surface) 100%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231267f2' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
	background-position: 0 0, right 12px center;
	background-repeat: no-repeat;
	background-size: 100% 100%, 16px 16px;
	border: 1px solid var(--ybg-blue-border);
	border-radius: 8px;
	color: var(--ybg-blue-navy);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	min-height: 38px;
	min-width: 168px;
	padding: 7px 36px 7px 12px;
}

.ybg-filter-show__select:hover,
.ybg-filter-show__select:focus-visible {
	border-color: var(--ybg-blue-primary);
	box-shadow: 0 0 0 3px rgba(18, 103, 242, 0.12);
	outline: none;
}

.ybg-filter-show .ybg-custom-select {
	position: relative;
	width: 178px;
	z-index: 5;
}

.ybg-filter-show .ybg-custom-select.is-open {
	z-index: 220;
}

.ybg-filter-show .ybg-custom-select__button {
	border-color: rgba(112, 153, 207, 0.42);
	border-radius: var(--ybg-radius-md);
	font-size: 0.92rem;
	font-weight: 800;
	min-height: 48px;
	padding: 11px 44px 11px 13px;
}

.ybg-filter-show .ybg-custom-select__menu {
	border-radius: 18px;
	min-width: 100%;
	padding: 7px;
	top: 100%;
	z-index: 230;
}

.ybg-filter-show .ybg-custom-select__option {
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 10px 12px;
}

.ybg-filter-button {
	box-shadow: none;
	min-height: 42px;
	padding-inline: 23px;
}

.ybg-filter-button.is-active,
.ybg-filter-button.is-active:hover,
.ybg-filter-button.is-active:focus-visible {
	background: linear-gradient(135deg, #0b7cff 0%, #006ee6 100%);
	border-color: rgba(255, 255, 255, 0.48);
	box-shadow:
		0 9px 21px rgba(0, 87, 194, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.36);
	color: #fff;
}

.ybg-filter-bar a {
	background: linear-gradient(180deg, #eff7ff 0%, #e4f1ff 100%);
	border: 1px solid rgba(11, 124, 255, 0.08);
	border-radius: var(--ybg-radius-pill);
	color: #006ee6;
	font-size: 0.88rem;
	font-weight: 700;
	padding: 8px 18px;
	text-decoration: none;
	transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.ybg-filter-bar a:hover,
.ybg-filter-bar a:focus-visible {
	background: linear-gradient(180deg, #e7f3ff, #d9ebff);
	border-color: rgba(11, 124, 255, 0.17);
	color: #006ee6;
	transform: translateY(-1px);
}

.ybg-filter-bar a.is-active {
	background: linear-gradient(135deg, #0b7cff 0%, #006ee6 100%);
	border-color: rgba(255, 255, 255, 0.48);
	box-shadow:
		0 9px 21px rgba(0, 87, 194, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.36);
	color: #fff;
}

.ybg-campaign-directory {
	background: #f5f9ff;
	padding-block: clamp(30px, 4vw, 48px) clamp(64px, 7vw, 90px);
	position: relative;
	z-index: 1;
}

.ybg-campaign-directory__count {
	color: var(--ybg-text-muted);
	font-size: 0.92rem;
	margin: 24px 0 0;
	text-align: center;
}

.ybg-campaign-directory__grid {
	align-items: stretch;
	gap: clamp(21px, 2vw, 28px);
}

.ybg-campaign-directory__empty {
	background: #fff;
	border: 1px solid rgba(143, 182, 230, 0.24);
	border-radius: var(--ybg-radius-lg);
	color: var(--ybg-text-muted);
	margin: 28px 0 0;
	padding: 30px;
	text-align: center;
}

.ybg-featured__heading {
	margin: 0 auto clamp(26px, 4vw, 34px);
	max-width: 780px;
	text-align: center;
}

.ybg-featured__heading h2 {
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.7rem, 3vw, 2.25rem);
	margin: 0;
}

.ybg-featured__heading p {
	color: var(--ybg-text-muted);
	line-height: 1.65;
	margin: 12px auto 0;
	max-width: 660px;
}

/* Highlights Stats Bar */
.ybg-highlight-stats {
	position: relative;
	z-index: 5;
	margin-top: -64px;
	margin-bottom: 0;
	background: linear-gradient(to bottom, transparent 64px, var(--ybg-surface) 64px);
}
.ybg-highlight-stats.ybg-highlight-stats--tint-next {
	--ybg-surface: var(--ybg-tint-bg);
}
.ybg-highlight-stats__inner {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(4, 30, 70, 0.08);
	display: flex;
	justify-content: space-between;
	padding: 24px 32px;
}
.ybg-highlight-stats__inner.is-tinted {
	background: #f5f9ff;
	box-shadow: none;
	border: 1px solid rgba(18, 103, 242, 0.1);
}
.ybg-highlight-stats__item {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	position: relative;
	padding: 0 24px;
	transition: transform 0.3s ease;
}
.ybg-highlight-stats__item:first-child {
	padding-left: 0;
}
.ybg-highlight-stats__item:last-child {
	padding-right: 0;
}
.ybg-highlight-stats__item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 15%;
	height: 70%;
	width: 1px;
	background: rgba(0, 0, 0, 0.06);
}
.ybg-highlight-stats__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ybg-highlight-stats__item:hover .ybg-highlight-stats__icon {
	color: #ffffff;
	transform: translateY(-4px) scale(1.05);
}

/* Blue */
.ybg-highlight-stats__icon--blue {
	color: var(--ybg-blue-primary);
	border: 1px solid rgba(18, 103, 242, 0.15);
}
.ybg-highlight-stats__item:hover .ybg-highlight-stats__icon--blue {
	background: var(--ybg-blue-primary);
	border-color: var(--ybg-blue-primary);
	box-shadow: 0 8px 16px rgba(18, 103, 242, 0.2);
}

/* Green */
.ybg-highlight-stats__icon--green {
	color: #117748;
	border: 1px solid rgba(17, 119, 72, 0.15);
}
.ybg-highlight-stats__item:hover .ybg-highlight-stats__icon--green {
	background: #16a34a;
	border-color: #16a34a;
	box-shadow: 0 8px 16px rgba(22, 163, 74, 0.2);
}

/* Orange */
.ybg-highlight-stats__icon--orange {
	color: #d65c00;
	border: 1px solid rgba(214, 92, 0, 0.15);
}
.ybg-highlight-stats__item:hover .ybg-highlight-stats__icon--orange {
	background: #f97316;
	border-color: #f97316;
	box-shadow: 0 8px 16px rgba(249, 115, 22, 0.2);
}

/* Purple */
.ybg-highlight-stats__icon--purple {
	color: #6b21a8;
	border: 1px solid rgba(107, 33, 168, 0.15);
}
.ybg-highlight-stats__item:hover .ybg-highlight-stats__icon--purple {
	background: #a855f7;
	border-color: #a855f7;
	box-shadow: 0 8px 16px rgba(168, 85, 247, 0.2);
}
.ybg-highlight-stats__icon svg {
	width: 28px;
	height: 28px;
	stroke-width: 1.8px;
}
.ybg-highlight-stats__content {
	display: flex;
	flex-direction: column;
}
.ybg-highlight-stats__content strong {
	font-family: var(--ybg-font-heading);
	font-size: 2.2rem;
	color: var(--ybg-blue-navy);
	line-height: 1.1;
	margin-bottom: 4px;
}
.ybg-highlight-stats__content p {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: #4b5e7a;
	line-height: 1.3;
}

/* Featured Section Overrides */
.ybg-highlight-page .ybg-featured ,
.ybg-gallery-page--listing .ybg-featured {
	padding-top: clamp(24px, 3vw, 40px);
}

/* Highlight Card Specific Overrides */
.ybg-highlight-card .ybg-card__media {
	aspect-ratio: 4 / 3;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
}
.ybg-highlight-card .ybg-card__media img {
	height: 100%;
}
.ybg-highlight-card .ybg-highlight-card-badge-overlay {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--ybg-blue-soft);
	border: 1px solid var(--ybg-blue-border);
	color: var(--ybg-blue-deep);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 2px 10px;
	border-radius: 999px;
	z-index: 2;
}
.ybg-highlight-card .ybg-card__body {
	padding: clamp(16px, 2vw, 24px);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.ybg-highlight-card .ybg-card__title {
	font-size: 1rem;
	margin-bottom: 4px;
}
.ybg-highlight-card .ybg-card__meta {
	font-size: 0.75rem;
	color: #64748b;
	margin-bottom: 8px;
}
.ybg-highlight-card .ybg-card__desc {
	font-size: 0.8rem;
	color: #475569;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ybg-highlight-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #e2e8f0;
	padding-top: 12px;
	margin-top: auto;
}
.ybg-highlight-card__year {
	font-size: 0.8rem;
	font-weight: 600;
	color: #64748b;
}
.ybg-highlight-card__footer {
	margin-top: auto;
}
.ybg-highlight-card .ybg-text-link {
	font-size: 0.8rem;
}

.ybg-featured-card {
	align-items: stretch;
	background: linear-gradient(125deg, var(--ybg-blue-navy), var(--ybg-blue-primary));
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow-glow);
	color: #fff;
	display: grid;
	gap: clamp(26px, 4vw, 42px);
	grid-template-columns: minmax(280px, 0.35fr) minmax(360px, 0.65fr);
	overflow: hidden;
	padding: clamp(24px, 4vw, 38px);
}

.ybg-featured-card__media-wrapper {
	position: relative;
	height: 100%;
}

.ybg-featured-card__badge-top {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #0c3882;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: var(--ybg-radius-pill);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	padding: 6px 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	z-index: 2;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ybg-featured-card__badge-top svg {
	fill: #facc15;
	width: 14px;
	height: 14px;
	margin-top: -2px;
}

.ybg-featured-card__image {
	border-radius: var(--ybg-radius-lg);
	height: 100%;
	min-height: 380px;
	object-fit: cover;
	width: 100%;
}

.ybg-featured-card__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ybg-featured-card__top-row {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
}

.ybg-featured-card__main-info {
	flex: 1;
}

.ybg-featured-card__quote-box {
	flex: 0 0 240px;
	display: flex;
	gap: 12px;
}

.ybg-featured-card__quote-icon {
	color: rgba(255, 255, 255, 0.2);
	font-family: Georgia, serif;
	font-size: 4.5rem;
	line-height: 1;
	height: 40px;
}

.ybg-featured-card__quote-text {
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.95rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
	padding-top: 10px;
}

.ybg-featured-card__content h3 {
	font-family: var(--ybg-font-heading);
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	line-height: 1.2;
	margin: 0 0 8px;
}

.ybg-featured-card__position {
	font-weight: 700;
	font-size: 1.05rem;
	margin: 0 0 16px;
	color: #fff;
}

.ybg-featured-card__excerpt {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 24px;
}

.ybg-featured-card__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ybg-featured-card__tag {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--ybg-radius-pill);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 4px 14px;
}

.ybg-featured-card__footer {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 32px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}

.ybg-featured-card__stats {
	display: flex;
	flex: 1;
}

.ybg-featured-card__stat-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
	padding-right: 24px;
	margin-right: 24px;
	position: relative;
}

.ybg-featured-card__stat-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -12px;
	top: 10%;
	height: 80%;
	width: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.ybg-featured-card__stat-item:last-child {
	padding-right: 0;
	margin-right: 0;
}

.ybg-featured-card__stat-header {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.ybg-featured-card__stat-header svg {
	width: 20px;
	height: 20px;
	stroke: rgba(255, 255, 255, 0.9);
	stroke-width: 1.5px;
	margin-top: 1px;
	flex-shrink: 0;
}

.ybg-featured-card__stat-header strong {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2;
}

.ybg-featured-card__stat-item > span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
	max-width: 130px;
}

.ybg-featured-card__details-btn {
	background: #fff;
	color: var(--ybg-blue-primary);
	border-radius: var(--ybg-radius-button);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 10px 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease;
}

.ybg-featured-card__details-btn:hover {
	background: #f0f6ff;
	color: var(--ybg-blue-deep);
}

.ybg-featured-card__details-btn span {
	display: inline-block;
	transition: transform 180ms ease;
}

.ybg-featured-card__details-btn:hover span {
	transform: translateX(4px);
}

.ybg-gallery-masonry {
	columns: 3 320px;
	column-gap: 24px;
	max-width: var(--ybg-container-max);
	margin: 0 auto;
}

.ybg-gallery-masonry .ybg-gallery-card {
	break-inside: avoid;
	margin-bottom: 18px;
}

.ybg-gallery-contribution {
	background: var(--ybg-blue-surface);
	border: 2px dashed var(--ybg-blue-border);
	border-radius: var(--ybg-radius-lg);
	margin: 0 auto;
	max-width: 700px;
	padding: clamp(32px, 5vw, 48px);
	text-align: center;
}

.ybg-gallery-contribution__icon {
	align-items: center;
	background: linear-gradient(145deg, #1789ff, #0064db);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	box-shadow:
		0 9px 20px rgba(0, 92, 212, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.42);
	color: #fff;
	display: flex;
	font-size: 1.7rem;
	height: 68px;
	justify-content: center;
	margin: 0 auto 20px;
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: 68px;
}

.ybg-gallery-contribution:hover .ybg-gallery-contribution__icon,
.ybg-gallery-contribution:focus-within .ybg-gallery-contribution__icon {
	background: linear-gradient(145deg, #3098ff, #0063d7);
	box-shadow:
		0 13px 26px rgba(0, 92, 212, 0.36),
		inset 0 1px 0 rgba(255, 255, 255, 0.52);
	transform: translateY(-2px);
}

.ybg-gallery-contribution h2 {
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.4rem, 2.6vw, 1.7rem);
	margin: 0 0 12px;
}

.ybg-gallery-contribution p {
	color: var(--ybg-text-muted);
	margin: 0 auto 29px;
	max-width: 510px;
}

.archive-description {
	color: var(--ybg-text-muted);
}

.ybg-post-grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ybg-campaign-stats .ybg-stat-card,
.ybg-impact__dashboard .ybg-stat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: clamp(20px, 2vw, 24px);
	min-height: 180px;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(183, 213, 245, 0.4);
	box-shadow: 0 8px 25px rgba(5, 72, 165, 0.05);
}

.ybg-content-card {
	background: #fff;
	border: 1px solid var(--ybg-border);
	border-radius: var(--ybg-radius-lg);
	box-shadow: 0 8px 25px rgba(5, 72, 165, 0.06);
	overflow: hidden;
}

.ybg-content-card__image img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.ybg-content-card__body {
	padding: 23px;
}

.entry-meta__date {
	color: var(--ybg-text-muted);
	font-size: 0.85rem;
}

.ybg-content-card .entry-title {
	font-family: var(--ybg-font-heading);
	font-size: 1.2rem;
	line-height: 1.35;
	margin: 8px 0 9px;
}

.ybg-content-card .entry-title a {
	color: var(--ybg-text);
	text-decoration: none;
}

.ybg-content-card p {
	color: var(--ybg-text-muted);
	margin: 0 0 16px;
}

.ybg-text-link {
	align-items: center;
	background: linear-gradient(180deg, #eff7ff 0%, #e4f1ff 100%);
	border: 1px solid rgba(11, 124, 255, 0.08);
	border-radius: var(--ybg-radius-pill);
	color: #006ee6;
	display: inline-flex;
	font-weight: 700;
	gap: 7px;
	padding: 8px 15px;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.ybg-text-link:hover,
.ybg-text-link:focus-visible {
	background: linear-gradient(180deg, #e7f3ff, #d9ebff);
	border-color: rgba(11, 124, 255, 0.17);
	box-shadow: 0 8px 17px rgba(0, 87, 194, 0.1);
	color: #006ee6;
	transform: translateY(-1px);
}

.ybg-text-link:active {
	background: linear-gradient(135deg, #0b7cff 0%, #006ee6 100%);
	color: #fff;
}

.ybg-entry {
	background: #fff;
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow);
	margin: 0 auto;
	max-width: 900px;
	padding: clamp(28px, 5vw, 58px);
}

.ybg-entry__image {
	border-radius: var(--ybg-radius-lg);
	margin-bottom: 32px;
	overflow: hidden;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.ybg-empty-state {
	background: #fff;
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow);
	margin: 20px auto;
	max-width: 680px;
	padding: 68px 32px;
	text-align: center;
}

.ybg-empty-state--compact {
	box-shadow: none;
	margin: 0;
	max-width: none;
	padding: 42px 25px;
}

.ybg-empty-state__icon {
	background: linear-gradient(145deg, #edf6ff, #ddebff);
	border: 1px solid rgba(0, 112, 230, 0.18);
	border-radius: 50%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	display: block;
	height: 42px;
	margin: 0 auto 15px;
	width: 42px;
}

.ybg-empty-state h1,
.ybg-empty-state h2 {
	font-family: var(--ybg-font-heading);
	margin-top: 0;
}

.ybg-empty-state p {
	color: var(--ybg-text-muted);
	margin-bottom: 27px;
}

.navigation.pagination {
	margin-top: 46px;
}

.nav-links {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.page-numbers {
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--ybg-radius-pill);
	box-shadow: none;
	color: #0872e0;
	font-weight: 700;
	padding: 9px 16px;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

a.page-numbers:hover,
a.page-numbers:focus-visible {
	background: linear-gradient(145deg, #edf6ff, #ddebff);
	border-color: rgba(0, 112, 230, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	color: #0872e0;
	transform: translateY(-1px);
}

.page-numbers.current {
	background: linear-gradient(145deg, #1789ff, #0064db);
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow:
		0 9px 20px rgba(0, 92, 212, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.42);
	color: #fff;
}

.ybg-campaign-pagination {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.ybg-campaign-pagination__list {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ybg-campaign-pagination .page-numbers {
	align-items: center;
	background: transparent;
	border: 2px solid transparent;
	border-radius: var(--ybg-radius-pill);
	box-shadow: none;
	color: #0872e0;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	height: 44px;
	justify-content: center;
	line-height: 1;
	min-width: 0;
	padding: 0;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
	width: 44px;
}

.ybg-campaign-pagination a.page-numbers:hover,
.ybg-campaign-pagination a.page-numbers:focus-visible {
	background: linear-gradient(145deg, #edf6ff, #ddebff);
	border-color: rgba(0, 112, 230, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	color: #0872e0;
	outline: none;
	transform: translateY(-1px);
}

.ybg-campaign-pagination .page-numbers.current {
	background: linear-gradient(145deg, #1789ff, #0064db);
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow:
		0 9px 20px rgba(0, 92, 212, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.42);
	color: #fff;
}

.ybg-campaign-pagination .dots {
	border-color: transparent;
	color: rgba(15, 23, 42, 0.38);
	pointer-events: none;
}

.ybg-campaign-pagination .next,
.ybg-campaign-pagination .prev {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	color: #0872e0;
	font-size: 2.05rem;
	font-weight: 300;
	line-height: 0;
}

.ybg-campaign-pagination .next span,
.ybg-campaign-pagination .prev span {
	align-items: center;
	display: inline-flex;
	height: 100%;
	justify-content: center;
	line-height: 1;
	transform: translateY(-0.045em);
	width: 100%;
}

.ybg-campaign-pagination .next:hover,
.ybg-campaign-pagination .next:focus-visible,
.ybg-campaign-pagination .prev:hover,
.ybg-campaign-pagination .prev:focus-visible {
	background: linear-gradient(145deg, #edf6ff, #ddebff);
	border-color: rgba(0, 112, 230, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	color: #0872e0;
}

.ybg-campaign-pagination .is-disabled {
	opacity: 0.45;
	pointer-events: none;
}

.ybg-campaign-pagination__mobile-summary {
	display: none;
}

.ybg-footer {
	background: var(--ybg-blue-surface);
	border-top: 1px solid var(--ybg-blue-border);
	color: var(--ybg-text);
	flex-shrink: 0;
}

.ybg-footer__top {
	align-items: start;
	display: grid;
	gap: clamp(24px, 4vw, 46px);
	grid-template-columns: 1.45fr 0.85fr 1fr;
	padding-block: 38px 26px;
}

.ybg-footer__brand {
	grid-column: 1;
	max-width: 460px;
}

.ybg-footer__contact {
	grid-column: 3;
}

.ybg-footer__brand p {
	color: var(--ybg-text-muted);
	line-height: 1.6;
	margin: 12px 0 0;
	max-width: 390px;
}

.ybg-footer .ybg-brand__text small {
	color: var(--ybg-text-muted);
}

.ybg-footer__nav h2,
.ybg-footer__contact h2 {
	color: var(--ybg-text);
	font-family: var(--ybg-font-heading);
	font-size: 1rem;
	margin: 0 0 12px;
}

.ybg-footer__nav a,
.ybg-footer__contact a,
.ybg-footer__contact p {
	color: var(--ybg-text-muted);
	display: block;
	margin: 0 0 8px;
	text-decoration: none;
}

.ybg-footer__nav a:hover,
.ybg-footer__contact a:hover {
	color: var(--ybg-primary);
}

.ybg-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.ybg-footer__social a {
	align-items: center;
	background: var(--ybg-blue-soft);
	border: 1px solid var(--ybg-blue-border);
	border-radius: 50%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	color: var(--ybg-blue-primary);
	display: inline-flex;
	font-size: 0.68rem;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
	width: 34px;
}

.ybg-footer__social a:hover,
.ybg-footer__social a:focus-visible {
	background: var(--ybg-blue-primary);
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(18, 103, 242, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
	color: #fff;
	transform: translateY(-2px);
}

.ybg-footer__social svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.ybg-footer__social-icon {
	background-color: currentColor;
	display: block;
	height: 26px;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	width: 26px;
}

.ybg-footer__social-icon--facebook {
	-webkit-mask-image: url("../images/icons/facebook.webp");
	mask-image: url("../images/icons/facebook.webp");
}

.ybg-footer__social-icon--tiktok {
	-webkit-mask-image: url("../images/icons/tiktok.webp");
	mask-image: url("../images/icons/tiktok.webp");
}

.ybg-footer__contact-item {
	align-items: flex-start;
	display: flex !important;
	gap: 10px;
}

.ybg-footer__contact-item span {
	color: var(--ybg-primary);
	flex: 0 0 18px;
	font-weight: 700;
	text-align: center;
}

.ybg-footer__bottom {
	align-items: center;
	border-top: 1px solid var(--ybg-blue-border);
	color: var(--ybg-text-muted);
	display: flex;
	font-size: 0.9rem;
	gap: 16px;
	justify-content: space-between;
	padding-block: 13px;
}

.ybg-footer__bottom p {
	margin: 0;
}

.ybg-breadcrumbs {
	align-items: center;
	color: var(--ybg-text-muted);
	display: flex;
	font-size: 0.9rem;
	gap: 10px;
	margin-bottom: 24px;
}

.ybg-breadcrumbs a {
	text-decoration: none;
}

.ybg-page-heading__description {
	color: var(--ybg-text-muted);
	max-width: 660px;
}

.ybg-domain-single {
	background: var(--ybg-surface);
	border-radius: var(--ybg-radius-xl);
	box-shadow: var(--ybg-shadow);
	padding: clamp(26px, 4vw, 48px);
}

.ybg-domain-single__header {
	margin-bottom: clamp(26px, 4vw, 38px);
}

.ybg-domain-single__header h1 {
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.75rem, 2.7vw, 2.35rem);
	line-height: 1.2;
	margin: 0;
}

.ybg-domain-single__title {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	column-gap: 14px;
	row-gap: 10px;
}

.ybg-badge--static {
	align-self: center;
	left: auto;
	position: static;
	top: auto;
	transform: translateY(0.1em);
}

.ybg-domain-single__lead {
	color: var(--ybg-text-muted);
	font-size: 1.05rem;
	margin: 12px 0 0;
}

.ybg-chip {
	background: var(--ybg-blue-soft);
	border-radius: var(--ybg-radius-pill);
	color: var(--ybg-primary);
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 700;
	margin-top: 17px;
	padding: 7px 14px;
}

.ybg-domain-single__layout {
	align-items: start;
	display: grid;
	gap: clamp(26px, 4vw, 42px);
	grid-template-columns: minmax(0, 1fr) 330px;
}

.ybg-domain-single__image,
.ybg-gallery-single__image {
	border-radius: var(--ybg-radius-lg);
	margin-bottom: 30px;
	overflow: hidden;
}

.ybg-domain-single__photo {
	max-height: 600px;
	object-fit: cover;
	width: 100%;
}

.ybg-domain-single__aside {
	background: #f5f9ff;
	border: 1px solid var(--ybg-border);
	border-radius: var(--ybg-radius-lg);
	padding: 25px;
}

.ybg-domain-single__aside h2 {
	font-family: var(--ybg-font-heading);
	font-size: 1.12rem;
	margin: 0 0 13px;
}

.ybg-domain-single__aside > p:last-child {
	color: var(--ybg-text-muted);
	margin-bottom: 0;
}

.ybg-meta-list {
	display: grid;
	gap: 15px;
	margin: 0;
}

.ybg-meta-list div {
	border-bottom: 1px solid rgba(130, 179, 239, 0.28);
	padding-bottom: 13px;
}

.ybg-meta-list dt {
	color: var(--ybg-text-muted);
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.ybg-meta-list dd {
	color: var(--ybg-text);
	font-weight: 650;
	margin: 0;
}

.ybg-domain-single__cta {
	margin-top: 24px;
	width: 100%;
}

.ybg-meta-callout {
	color: var(--ybg-primary) !important;
	display: grid;
	gap: 4px;
	margin: 0 0 22px !important;
}

.ybg-entry-meta {
	align-items: center;
	color: var(--ybg-text-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 18px;
}

.ybg-entry-meta > * + * {
	border-left: 1px solid var(--ybg-border);
	padding-left: 14px;
}

.ybg-meta-list--inline {
	border: 1px solid var(--ybg-border);
	border-radius: var(--ybg-radius-lg);
	display: flex;
	gap: clamp(24px, 6vw, 56px);
	margin: 28px 0;
	padding: 18px 22px;
}

.ybg-meta-list--inline div {
	border: 0;
	padding: 0;
}

/* Unified landing pages. */
.ybg-page-landing {
	background: var(--ybg-bg);
	min-height: calc(100vh - 260px);
}

.ybg-page-hero {
	background: var(--ybg-blue-surface);
	background: radial-gradient(circle at 10% 20%, #ffffff 0%, var(--ybg-blue-surface) 100%);
	border-bottom: 1px solid var(--ybg-blue-border);
	color: var(--ybg-text-primary);
	overflow: hidden;
	position: relative;
}

.ybg-page-hero::after {
	background-image: radial-gradient(circle, rgba(18, 103, 242, 0.08) 1.5px, transparent 1.5px);
	background-size: 30px 30px;
	bottom: 20px;
	content: "";
	height: 126px;
	opacity: 0.6;
	pointer-events: none;
	position: absolute;
	right: -12px;
	width: 240px;
}

.ybg-page-hero__inner {
	padding-top: calc(84px + clamp(48px, 6vw, 80px));
	padding-bottom: clamp(32px, 5vw, 64px);
	position: relative;
	z-index: 1;
}

.ybg-page-hero .ybg-page-heading {
	margin: 0 auto;
	max-width: 840px;
	text-align: center;
}

.ybg-page-hero .ybg-page-heading h1 {
	color: var(--ybg-blue-navy);
	font-family: var(--ybg-font-system);
	font-size: clamp(2.35rem, 4.2vw, 3.35rem);
	font-weight: 800;
	line-height: 1.16;
	margin: 0;
	text-shadow: none;
	text-wrap: balance;
}

.ybg-page-hero .ybg-page-heading__description {
	color: var(--ybg-text-muted);
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.72;
	margin: 18px auto 0;
	max-width: 680px;
}

/* Force listing page descriptions to occupy at least 2 lines of height to keep hero size identical */
.ybg-campaign-page .ybg-page-heading__description,
.ybg-digital-page .ybg-page-heading__description,
.ybg-highlight-page .ybg-page-heading__description,
.ybg-gallery-page--listing .ybg-page-heading__description {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: calc(1.72em * 2) !important;
}

.ybg-page-landing .ybg-section {
	padding-block: clamp(48px, 5vw, 68px);
}

.ybg-page-landing .ybg-section--tint,
.ybg-campaign-directory {
	background: var(--ybg-bg);
}

.ybg-gallery-directory {
	/* Ensure it remains white by default unless explicitly tinted */
	background: #fff;
}

.ybg-page-landing .ybg-section--white {
	background: #fff;
}

.ybg-page-landing .ybg-section-heading,
.ybg-page-landing .ybg-featured__heading {
	margin: 0 auto clamp(22px, 2.6vw, 30px);
	max-width: 820px;
	text-align: center;
}

.ybg-page-landing .ybg-section-heading--left {
	margin-inline: 0;
	max-width: 100%;
	text-align: left;
}

.ybg-page-landing .ybg-section-heading h2,
.ybg-featured__heading h2,
.ybg-gallery-contribution h2 {
	color: #082247;
	font-family: var(--ybg-font-heading);
	font-size: clamp(1.65rem, 2.7vw, 2.18rem);
	line-height: 1.24;
	margin: 0;
	text-wrap: balance;
}

.ybg-page-landing .ybg-section-heading p,
.ybg-featured__heading p,
.ybg-gallery-contribution p {
	color: var(--ybg-text-muted);
	font-size: 1rem;
	line-height: 1.68;
	margin: 12px auto 0;
	max-width: 680px;
}

.ybg-empty-state,
.ybg-empty-state-card,
.ybg-campaign-directory__empty {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(130, 179, 239, 0.28);
	border-radius: 28px;
	box-shadow: 0 12px 34px rgba(4, 60, 133, 0.07);
	color: var(--ybg-text-muted);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	max-width: 880px;
	min-height: 178px;
	padding: clamp(30px, 4vw, 42px) 28px;
	text-align: center;
	width: 100%;
}

.ybg-empty-state--compact {
	box-shadow: 0 12px 34px rgba(4, 60, 133, 0.07);
	max-width: 880px;
	padding: clamp(30px, 4vw, 42px) 28px;
}

.ybg-empty-state__icon {
	background: linear-gradient(145deg, #edf6ff, #ddebff);
	border: 1px solid rgba(0, 112, 230, 0.18);
	border-radius: 50%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	display: block;
	height: 42px;
	margin: 0 auto 16px;
	width: 42px;
}

.ybg-empty-state p,
.ybg-empty-state-card p,
.ybg-campaign-directory__empty {
	color: var(--ybg-text-muted);
	margin: 0;
	max-width: 620px;
}

.ybg-campaign-page .ybg-filter-bar {
	background: transparent;
	box-shadow: none;
	justify-content: center;
	padding-block: clamp(24px, 3vw, 34px) 6px;
}

.ybg-filter-bar__inner {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.ybg-filter-button {
	min-height: 40px;
	padding-inline: 20px;
}

.ybg-filter-button.is-active,
.ybg-filter-button.is-active:hover,
.ybg-filter-button.is-active:focus-visible {
	box-shadow:
		0 8px 18px rgba(0, 87, 194, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.ybg-campaign-directory,
.ybg-guide-directory,
.ybg-highlight-directory {
	padding-block: clamp(24px, 3vw, 34px) clamp(52px, 6vw, 72px);
}

.ybg-featured {
	padding-bottom: clamp(36px, 4vw, 52px) !important;
}

.ybg-highlights-directory {
	padding-top: clamp(36px, 4vw, 52px) !important;
}

.ybg-gallery-cta-section {
	padding-top: clamp(34px, 4vw, 48px) !important;
}

.ybg-gallery-contribution {
	align-items: center;
	background: #f5f9ff;
	border: 2px dashed rgba(130, 179, 239, 0.48);
	border-radius: var(--ybg-radius-xl);
	box-shadow: 0 12px 34px rgba(4, 60, 133, 0.06);
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 44px);
	text-align: left;
	min-height: 0;
	aspect-ratio: 1492 / 252;
	overflow: hidden;
}

.ybg-gallery-contribution p {
	margin: 0;
	max-width: 100%;
}

.ybg-gallery-contribution .ybg-button {
	margin-top: 8px;
	align-self: flex-start;
}
.ybg-gallery-contribution__content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.ybg-helpdesk-card {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(130, 179, 239, 0.32);
	border-radius: 28px;
	box-shadow: 0 14px 36px rgba(4, 60, 133, 0.1);
}

.ybg-campaign-page .ybg-filter-bar,
.ybg-digital-page .ybg-filter-bar,
.ybg-highlight-page .ybg-filter-bar,
.ybg-gallery-page--listing .ybg-filter-bar,
.post-type-archive-ybg_guide .ybg-filter-bar,
.tax-ybg_guide_cat .ybg-filter-bar,
.post-type-archive-ybg_highlight .ybg-filter-bar,
.tax-ybg_highlight_cat .ybg-filter-bar,
.post-type-archive-ybg_campaign .ybg-filter-bar,
.tax-ybg_campaign_cat .ybg-filter-bar,
.tax-ybg_campaign_tag .ybg-filter-bar {
	padding-block: clamp(24px, 3vw, 34px) 18px !important;
}

.ybg-campaign-page .ybg-filter-bar + .ybg-section.ybg-campaign-directory,
.post-type-archive-ybg_campaign .ybg-filter-bar + .ybg-section.ybg-campaign-directory,
.tax-ybg_campaign_cat .ybg-filter-bar + .ybg-section.ybg-campaign-directory,
.tax-ybg_campaign_tag .ybg-filter-bar + .ybg-section.ybg-campaign-directory,
.ybg-highlight-page .ybg-filter-bar + .ybg-section.ybg-highlight-directory,
.ybg-gallery-page--listing .ybg-filter-bar + .ybg-section.ybg-gallery-directory,
.post-type-archive-ybg_highlight .ybg-filter-bar + .ybg-section.ybg-highlight-directory,
.tax-ybg_highlight_cat .ybg-filter-bar + .ybg-section.ybg-highlight-directory,
.ybg-digital-page .ybg-filter-bar + .ybg-section.ybg-guide-directory,
.post-type-archive-ybg_guide .ybg-filter-bar + .ybg-section.ybg-guide-directory,
.tax-ybg_guide_cat .ybg-filter-bar + .ybg-section.ybg-guide-directory {
	padding-top: 18px !important;
}

.ybg-campaign-page .ybg-campaign-pagination__list,
.ybg-digital-page .ybg-campaign-pagination__list,
.ybg-highlight-page .ybg-campaign-pagination__list,
.ybg-gallery-page--listing .ybg-campaign-pagination__list,
.post-type-archive-ybg_guide .ybg-campaign-pagination__list,
.tax-ybg_guide_cat .ybg-campaign-pagination__list,
.ybg-highlight-page .ybg-campaign-pagination__list,
.ybg-gallery-page--listing .ybg-campaign-pagination__list,
.post-type-archive-ybg_highlight .ybg-campaign-pagination__list,
.tax-ybg_highlight_cat .ybg-campaign-pagination__list,
.tax-ybg_highlight_tag .ybg-campaign-pagination__list {
	gap: 10px !important;
}

.ybg-campaign-page .ybg-campaign-pagination .page-numbers,
.ybg-digital-page .ybg-campaign-pagination .page-numbers,
.ybg-highlight-page .ybg-campaign-pagination .page-numbers,
.ybg-gallery-page--listing .ybg-campaign-pagination .page-numbers,
.post-type-archive-ybg_guide .ybg-campaign-pagination .page-numbers,
.tax-ybg_guide_cat .ybg-campaign-pagination .page-numbers,
.ybg-highlight-page .ybg-campaign-pagination .page-numbers,
.ybg-gallery-page--listing .ybg-campaign-pagination .page-numbers,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .page-numbers,
.tax-ybg_highlight_cat .ybg-campaign-pagination .page-numbers,
.tax-ybg_highlight_tag .ybg-campaign-pagination .page-numbers,
.ybg-campaign-pagination__item a,
.ybg-campaign-pagination__item span {
	align-items: center !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	color: #0872e0 !important;
	display: inline-flex !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	height: 44px !important;
	justify-content: center !important;
	line-height: 1 !important;
	min-width: 0 !important;
	padding: 0 !important;
	width: 44px !important;
}

.ybg-campaign-page .ybg-campaign-pagination .page-numbers.current,
.ybg-digital-page .ybg-campaign-pagination .page-numbers.current,
.ybg-highlight-page .ybg-campaign-pagination .page-numbers.current,
.ybg-gallery-page--listing .ybg-campaign-pagination .page-numbers.current,
.post-type-archive-ybg_guide .ybg-campaign-pagination .page-numbers.current,
.tax-ybg_guide_cat .ybg-campaign-pagination .page-numbers.current,
.ybg-highlight-page .ybg-campaign-pagination .page-numbers.current,
.ybg-gallery-page--listing .ybg-campaign-pagination .page-numbers.current,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .page-numbers.current,
.tax-ybg_highlight_cat .ybg-campaign-pagination .page-numbers.current,
.tax-ybg_highlight_tag .ybg-campaign-pagination .page-numbers.current,
.ybg-campaign-pagination__item.active span {
	background: var(--ybg-blue-primary) !important;
	border: 0 !important;
	box-shadow: 0 4px 12px rgba(18, 103, 242, 0.24) !important;
	color: #fff !important;
}

.ybg-campaign-page .ybg-campaign-pagination .dots,
.ybg-digital-page .ybg-campaign-pagination .dots,
.ybg-highlight-page .ybg-campaign-pagination .dots,
.ybg-gallery-page--listing .ybg-campaign-pagination .dots,
.post-type-archive-ybg_guide .ybg-campaign-pagination .dots,
.tax-ybg_guide_cat .ybg-campaign-pagination .dots,
.ybg-highlight-page .ybg-campaign-pagination .dots,
.ybg-gallery-page--listing .ybg-campaign-pagination .dots,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .dots,
.tax-ybg_highlight_cat .ybg-campaign-pagination .dots,
.tax-ybg_highlight_tag .ybg-campaign-pagination .dots,
.ybg-campaign-pagination__item.dots span {
	background: transparent !important;
	border-color: transparent !important;
	color: rgba(15, 23, 42, 0.38) !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em;
}

.ybg-campaign-page .ybg-campaign-pagination .prev,
.ybg-campaign-page .ybg-campaign-pagination .next,
.ybg-digital-page .ybg-campaign-pagination .prev,
.ybg-digital-page .ybg-campaign-pagination .next,
.ybg-highlight-page .ybg-campaign-pagination .prev,
.ybg-gallery-page--listing .ybg-campaign-pagination .prev,
.ybg-highlight-page .ybg-campaign-pagination .next,
.ybg-gallery-page--listing .ybg-campaign-pagination .next,
.post-type-archive-ybg_guide .ybg-campaign-pagination .prev,
.post-type-archive-ybg_guide .ybg-campaign-pagination .next,
.tax-ybg_guide_cat .ybg-campaign-pagination .prev,
.tax-ybg_guide_cat .ybg-campaign-pagination .next,
.ybg-highlight-page .ybg-campaign-pagination .prev,
.ybg-gallery-page--listing .ybg-campaign-pagination .prev,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .prev,
.ybg-highlight-page .ybg-campaign-pagination .next,
.ybg-gallery-page--listing .ybg-campaign-pagination .next,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .next,
.tax-ybg_highlight_cat .ybg-campaign-pagination .prev,
.tax-ybg_highlight_cat .ybg-campaign-pagination .next,
.tax-ybg_highlight_tag .ybg-campaign-pagination .prev,
.tax-ybg_highlight_tag .ybg-campaign-pagination .next {
	color: var(--ybg-blue-primary) !important;
}

.ybg-campaign-page .ybg-campaign-pagination a.page-numbers:hover,
.ybg-campaign-page .ybg-campaign-pagination a.page-numbers:focus-visible,
.ybg-digital-page .ybg-campaign-pagination a.page-numbers:hover,
.ybg-digital-page .ybg-campaign-pagination a.page-numbers:focus-visible,
.ybg-highlight-page .ybg-campaign-pagination a.page-numbers:hover,
.ybg-gallery-page--listing .ybg-campaign-pagination a.page-numbers:hover,
.ybg-highlight-page .ybg-campaign-pagination a.page-numbers:focus-visible,
.ybg-gallery-page--listing .ybg-campaign-pagination a.page-numbers:focus-visible,
.post-type-archive-ybg_guide .ybg-campaign-pagination a.page-numbers:hover,
.post-type-archive-ybg_guide .ybg-campaign-pagination a.page-numbers:focus-visible,
.tax-ybg_guide_cat .ybg-campaign-pagination a.page-numbers:hover,
.tax-ybg_guide_cat .ybg-campaign-pagination a.page-numbers:focus-visible,
.ybg-highlight-page .ybg-campaign-pagination a.page-numbers:hover,
.ybg-gallery-page--listing .ybg-campaign-pagination a.page-numbers:hover,
.post-type-archive-ybg_highlight .ybg-campaign-pagination a.page-numbers:hover,
.ybg-highlight-page .ybg-campaign-pagination a.page-numbers:focus-visible,
.ybg-gallery-page--listing .ybg-campaign-pagination a.page-numbers:focus-visible,
.post-type-archive-ybg_highlight .ybg-campaign-pagination a.page-numbers:focus-visible,
.tax-ybg_highlight_cat .ybg-campaign-pagination a.page-numbers:hover,
.tax-ybg_highlight_cat .ybg-campaign-pagination a.page-numbers:focus-visible,
.tax-ybg_highlight_tag .ybg-campaign-pagination a.page-numbers:hover,
.tax-ybg_highlight_tag .ybg-campaign-pagination a.page-numbers:focus-visible,
.ybg-campaign-pagination__item a:hover {
	background: var(--ybg-blue-soft) !important;
	border: 0 !important;
	box-shadow: none !important;
	color: var(--ybg-blue-primary) !important;
	transform: translateY(-1px) !important;
}

.ybg-campaign-page .ybg-campaign-pagination .is-disabled,
.ybg-digital-page .ybg-campaign-pagination .is-disabled,
.ybg-highlight-page .ybg-campaign-pagination .is-disabled,
.ybg-gallery-page--listing .ybg-campaign-pagination .is-disabled,
.post-type-archive-ybg_guide .ybg-campaign-pagination .is-disabled,
.tax-ybg_guide_cat .ybg-campaign-pagination .is-disabled,
.ybg-highlight-page .ybg-campaign-pagination .is-disabled,
.ybg-gallery-page--listing .ybg-campaign-pagination .is-disabled,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .is-disabled,
.tax-ybg_highlight_cat .ybg-campaign-pagination .is-disabled,
.tax-ybg_highlight_tag .ybg-campaign-pagination .is-disabled,
.ybg-campaign-pagination__item.disabled {
	opacity: 0.45 !important;
	pointer-events: none !important;
}

.ybg-campaign-page .ybg-campaign-pagination .prev > span,
.ybg-campaign-page .ybg-campaign-pagination .next > span,
.ybg-digital-page .ybg-campaign-pagination .prev > span,
.ybg-digital-page .ybg-campaign-pagination .next > span,
.ybg-highlight-page .ybg-campaign-pagination .prev > span,
.ybg-gallery-page--listing .ybg-campaign-pagination .prev > span,
.ybg-highlight-page .ybg-campaign-pagination .next > span,
.ybg-gallery-page--listing .ybg-campaign-pagination .next > span,
.post-type-archive-ybg_guide .ybg-campaign-pagination .prev > span,
.post-type-archive-ybg_guide .ybg-campaign-pagination .next > span,
.tax-ybg_guide_cat .ybg-campaign-pagination .prev > span,
.tax-ybg_guide_cat .ybg-campaign-pagination .next > span,
.ybg-highlight-page .ybg-campaign-pagination .prev > span,
.ybg-gallery-page--listing .ybg-campaign-pagination .prev > span,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .prev > span,
.ybg-highlight-page .ybg-campaign-pagination .next > span,
.ybg-gallery-page--listing .ybg-campaign-pagination .next > span,
.post-type-archive-ybg_highlight .ybg-campaign-pagination .next > span,
.tax-ybg_highlight_cat .ybg-campaign-pagination .prev > span,
.tax-ybg_highlight_cat .ybg-campaign-pagination .next > span,
.tax-ybg_highlight_tag .ybg-campaign-pagination .prev > span,
.tax-ybg_highlight_tag .ybg-campaign-pagination .next > span,
.ybg-campaign-pagination__item span.ybg-pagination__icon {
	align-items: center !important;
	display: inline-flex !important;
	height: 100% !important;
	justify-content: center !important;
	transform: none !important;
	width: 100% !important;
}

.ybg-campaign-page .ybg-pagination__icon,
.ybg-digital-page .ybg-pagination__icon,
.post-type-archive-ybg_guide .ybg-pagination__icon,
.tax-ybg_guide_cat .ybg-pagination__icon,
.post-type-archive-ybg_highlight .ybg-pagination__icon,
.tax-ybg_highlight_cat .ybg-pagination__icon,
.tax-ybg_highlight_tag .ybg-pagination__icon {
	display: block;
	fill: none;
	height: 32px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 8;
	width: 32px;
}

/* Featured Highlight Meta Tags Styles */
.ybg-featured-card__meta-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-top: clamp(16px, 3vw, 24px);
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.ybg-featured-card__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ybg-highlight-tag-badge {
	font-size: 0.8rem;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	display: inline-block;
}
.ybg-highlight-tag-badge--cat {
	background: var(--ybg-blue-soft);
	color: var(--ybg-blue-primary);
}
.ybg-highlight-tag-badge--tag {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.ybg-featured-card__year-label {
	display: inline-flex;
	align-items: center;
	font-size: 0.9rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

/* Responsive Video Embed for Guides */
.ybg-entry__video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: 12px;
	background: #000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.ybg-entry__video iframe,
.ybg-entry__video object,
.ybg-entry__video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}

/* Video Guide Card Play Icon */
.ybg-guide-card--video .ybg-guide-card__icon::after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent var(--ybg-primary);
	background: transparent;
	content: "";
	position: absolute;
	left: 22px;
	top: 18px;
	border-radius: 0;
	transition: border-color 180ms ease;
}
.ybg-guide-card--video:hover .ybg-guide-card__icon::after,
.ybg-guide-card--video:focus-within .ybg-guide-card__icon::after {
	border-color: transparent transparent transparent #fff;
}

/* Guide search and filter bar styles */
.ybg-guide-filter-bar,
.ybg-highlight-filter-bar,
.ybg-campaign-filter-bar {
	justify-content: space-between;
	align-items: center;
	padding-block: clamp(30px, 4vw, 40px) 24px;
}
.ybg-guide-filter-bar .ybg-filter-bar__inner,
.ybg-highlight-filter-bar .ybg-filter-bar__inner,
.ybg-campaign-filter-bar .ybg-filter-bar__inner {
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.ybg-guide-filter-bar .ybg-filter-show .ybg-custom-select,
.ybg-highlight-filter-bar .ybg-filter-show .ybg-custom-select,
.ybg-campaign-filter-bar .ybg-filter-show .ybg-custom-select {
	width: 220px;
}
.ybg-filter-search {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 320px;
}
.ybg-filter-search__input {
	width: 100%;
	min-height: 48px;
	padding: 10px 48px 10px 18px;
	border: 1px solid var(--ybg-blue-border);
	border-radius: var(--ybg-radius-md);
	background: rgba(255, 255, 255, 0.8);
	color: var(--ybg-blue-navy);
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.ybg-filter-search__input:focus {
	outline: none;
	background: #ffffff;
	border-color: var(--ybg-blue-primary);
	box-shadow: 0 0 0 3px rgba(18, 103, 242, 0.12);
}
.ybg-filter-search__submit {
	position: absolute;
	right: 12px;
	background: transparent;
	border: none;
	color: var(--ybg-blue-primary);
	cursor: pointer;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 180ms ease, transform 180ms ease;
}
.ybg-filter-search__submit:hover {
	color: var(--ybg-blue-navy);
	transform: scale(1.1);
}

.ybg-campaign-filter-bar .ybg-custom-select__button,
.ybg-campaign-filter-bar .ybg-filter-search__input,
.ybg-campaign-filter-bar .ybg-filter-search__submit,
.ybg-campaign-filter-bar .ybg-filter-button,
.ybg-campaign-filter-bar a {
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.ybg-campaign-filter-bar .ybg-custom-select__button:hover,
.ybg-campaign-filter-bar .ybg-custom-select.is-open .ybg-custom-select__button,
.ybg-campaign-filter-bar .ybg-custom-select__button:focus-visible {
	background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
	border-color: var(--ybg-blue-primary);
	box-shadow: 0 0 0 3px rgba(18, 103, 242, 0.12), 0 10px 22px rgba(0, 87, 194, 0.08);
	color: var(--ybg-blue-navy);
}

.ybg-campaign-filter-bar .ybg-custom-select__button:active,
.ybg-campaign-filter-bar .ybg-filter-search__submit:active,
.ybg-campaign-filter-bar .ybg-filter-button:active,
.ybg-campaign-filter-bar a:active {
	transform: translateY(0);
}

.ybg-campaign-filter-bar .ybg-custom-select__button:disabled,
.ybg-campaign-filter-bar .ybg-filter-search__input:disabled,
.ybg-campaign-filter-bar .ybg-filter-search__submit:disabled,
.ybg-campaign-filter-bar .ybg-filter-button:disabled {
	cursor: wait;
	opacity: 0.62;
	transform: none;
}

.ybg-campaign-filter-bar .ybg-filter-bar__inner.is-submitting {
	pointer-events: none;
}

.ybg-campaign-filter-bar .ybg-filter-bar__inner.is-submitting .ybg-custom-select__button {
	background: linear-gradient(180deg, #f4f8ff 0%, #eaf3ff 100%);
	border-color: rgba(18, 103, 242, 0.26);
	box-shadow: 0 0 0 3px rgba(18, 103, 242, 0.08);
}

.ybg-campaign-filter-bar {
	overflow: visible !important;
	position: relative;
	z-index: 300;
}

.ybg-campaign-filter-bar .ybg-filter-bar__inner,
.ybg-campaign-filter-bar .ybg-filter-show,
.ybg-campaign-filter-bar .ybg-custom-select {
	overflow: visible;
	position: relative;
}

.ybg-campaign-filter-bar .ybg-custom-select.is-open {
	z-index: 340;
}

.ybg-campaign-filter-bar .ybg-custom-select__menu {
	overflow: visible;
	z-index: 360;
}

.ybg-campaign-filter-bar .ybg-filter-search {
	z-index: 1;
}

.ybg-campaign-filter-bar:has(.ybg-custom-select.is-open) .ybg-filter-search {
	z-index: 0;
}

.ybg-campaign-filter-bar + .ybg-section.ybg-campaign-directory {
	position: relative;
	z-index: 1;
}

.ybg-campaign-filter-bar .ybg-filter-search__submit:focus-visible {
	border-radius: 999px;
	box-shadow: 0 0 0 3px rgba(18, 103, 242, 0.16);
	color: var(--ybg-blue-navy);
	outline: none;
}

.ybg-campaign-card__cta.is-disabled,
.ybg-campaign-card__cta:disabled {
	background: linear-gradient(180deg, #f2f6fc 0%, #eaf1fb 100%);
	border-color: rgba(131, 158, 198, 0.12);
	box-shadow: 0 5px 12px rgba(0, 72, 180, 0.08);
	color: #8ca8d3;
	cursor: not-allowed;
	opacity: 1;
	transform: none;
}

.ybg-campaign-card__cta.is-disabled:hover,
.ybg-campaign-card__cta.is-disabled:focus-visible,
.ybg-campaign-card__cta:disabled:hover,
.ybg-campaign-card__cta:disabled:focus-visible {
	background: linear-gradient(180deg, #f2f6fc 0%, #eaf1fb 100%);
	border-color: rgba(131, 158, 198, 0.12);
	box-shadow: 0 5px 12px rgba(0, 72, 180, 0.08);
	color: #8ca8d3;
	outline: none;
	transform: none;
}

@media (max-width: 767px) {
	.ybg-guide-filter-bar .ybg-filter-bar__inner,
	.ybg-highlight-filter-bar .ybg-filter-bar__inner,
	.ybg-campaign-filter-bar .ybg-filter-bar__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	.ybg-filter-search {
		max-width: none;
	}
}



/* Featured Card Details Button and Overlay Badges */

.ybg-highlight-card-badge-overlay {
	position: absolute;
	top: 14px;
	left: 14px;
	align-items: center;
	backdrop-filter: blur(9px);
	background: var(--ybg-red);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--ybg-radius-pill);
	color: #ffffff;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 600;
	gap: 7px;
	justify-content: center;
	line-height: 1.15;
	padding: 6px 12px;
	white-space: nowrap;
	z-index: 2;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* Campaign Landing Additions */
.ybg-campaign-stats { padding: clamp(32px, 4vw, 48px) 0 0; position: relative; z-index: 2; }
.ybg-digital-page .ybg-campaign-stats { background: #ffffff; }
.ybg-campaign-stats__grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.ybg-campaign-stats .ybg-stat-card__icon,
.ybg-impact__dashboard .ybg-stat-card__icon { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #eff7ff; color: var(--ybg-blue-primary); margin-right: 0; margin-bottom: 0; flex-shrink: 0; border: 1px solid rgba(0, 110, 230, 0.18); transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease; }
.ybg-campaign-stats .ybg-stat-card__icon svg,
.ybg-impact__dashboard .ybg-stat-card__icon svg { width: 27px; height: 27px; stroke-width: 1.8px; }

.ybg-campaign-stats .ybg-stat-card:hover .ybg-stat-card__icon--blue,
.ybg-impact__dashboard .ybg-stat-card:hover .ybg-stat-card__icon--blue {
	background: linear-gradient(145deg, #1789ff, #0064db);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(0, 92, 212, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ybg-campaign-stats .ybg-stat-card__icon--green,
.ybg-impact__dashboard .ybg-stat-card__icon--green { background: #e6f6ee; color: #117748; border-color: rgba(17, 119, 72, 0.18); }
.ybg-campaign-stats .ybg-stat-card:hover .ybg-stat-card__icon--green,
.ybg-impact__dashboard .ybg-stat-card:hover .ybg-stat-card__icon--green {
	background: linear-gradient(135deg, #16a34a, #15803d);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(21, 128, 61, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ybg-campaign-stats .ybg-stat-card__icon--orange,
.ybg-impact__dashboard .ybg-stat-card__icon--orange { background: #fff0e6; color: #d65c00; border-color: rgba(214, 92, 0, 0.18); }
.ybg-campaign-stats .ybg-stat-card:hover .ybg-stat-card__icon--orange,
.ybg-impact__dashboard .ybg-stat-card:hover .ybg-stat-card__icon--orange {
	background: linear-gradient(135deg, #f97316, #ea580c);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(234, 88, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ybg-campaign-stats .ybg-stat-card__icon--purple,
.ybg-impact__dashboard .ybg-stat-card__icon--purple { background: #f3ebfa; color: #6b21a8; border-color: rgba(107, 33, 168, 0.18); }
.ybg-campaign-stats .ybg-stat-card:hover .ybg-stat-card__icon--purple,
.ybg-impact__dashboard .ybg-stat-card:hover .ybg-stat-card__icon--purple {
	background: linear-gradient(135deg, #a855f7, #7e22ce);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 20px rgba(126, 34, 206, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ybg-campaign-stats .ybg-stat-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(16px, 1.5vw, 24px);
	text-align: left;
	padding: clamp(16px, 1.5vw, 24px);
	min-height: 0;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(183, 213, 245, 0.4);
	box-shadow: 0 8px 25px rgba(5, 72, 165, 0.05);
	gap: 24px;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ybg-impact__dashboard .ybg-stat-card {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	min-height: 0;
	padding: 14px;
	text-align: center;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ybg-impact__dashboard .ybg-stat-card__icon {
	height: 42px;
	width: 42px;
}

.ybg-impact__dashboard .ybg-stat-card__icon svg {
	height: 21px;
	width: 21px;
}

.ybg-campaign-stats .ybg-stat-card:hover,
.ybg-impact__dashboard .ybg-stat-card:hover {
	box-shadow: 0 12px 30px rgba(5, 72, 165, 0.08);
}

.ybg-campaign-stats .ybg-stat-card--blue:hover,
.ybg-impact__dashboard .ybg-stat-card--blue:hover { border-color: rgba(0, 110, 230, 0.6); }

.ybg-campaign-stats .ybg-stat-card--green:hover,
.ybg-impact__dashboard .ybg-stat-card--green:hover { border-color: rgba(17, 119, 72, 0.6); }

.ybg-campaign-stats .ybg-stat-card--orange:hover,
.ybg-impact__dashboard .ybg-stat-card--orange:hover { border-color: rgba(214, 92, 0, 0.6); }

.ybg-campaign-stats .ybg-stat-card--purple:hover,
.ybg-impact__dashboard .ybg-stat-card--purple:hover { border-color: rgba(107, 33, 168, 0.6); }

.ybg-campaign-stats strong,
.ybg-impact__dashboard strong { font-size: 2.2rem; font-family: var(--ybg-font-heading); color: var(--ybg-blue-navy); line-height: 1.1; margin-bottom: 6px; display: block; }
.ybg-impact__dashboard strong { font-size: clamp(1.45rem, 2vw, 1.75rem); margin-bottom: 2px; }
.ybg-campaign-stats p { margin: 0; color: #5f7495; font-size: 0.95rem; }
.ybg-campaign-stats .ybg-stat-card__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.ybg-impact__dashboard .ybg-stat-card__content { align-items: center; display: flex; flex-direction: column; justify-content: center; min-width: 0; text-align: center; }
.ybg-campaign-stats .ybg-stat-card__label,
.ybg-impact__dashboard .ybg-stat-card__label { font-size: 1.05rem; font-weight: 600; color: var(--ybg-blue-navy); margin: 0 0 4px 0; line-height: 1.3; }
.ybg-impact__dashboard .ybg-stat-card__label { font-size: 0.88rem; margin: 0; }
.ybg-campaign-stats .ybg-stat-card__meta,
.ybg-impact__dashboard .ybg-stat-card__meta { font-size: 0.88rem; color: #8799b0; line-height: 1.5; margin: 0; }
.ybg-impact__dashboard .ybg-stat-card__meta { display: none; }

.ybg-process { padding-block: clamp(40px, 5vw, 64px); }
.ybg-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 40px; }
.ybg-process-step { background: #fff; padding: 40px 24px 32px; border-radius: 16px; position: relative; border: 1px solid rgba(18, 103, 242, 0.1); box-shadow: 0 8px 24px rgba(16, 23, 42, 0.04); text-align: center; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.ybg-process-step__number { position: absolute; top: 24px; left: 24px; width: 36px; height: 36px; background: var(--ybg-blue-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.95rem; box-shadow: 0 4px 10px rgba(18, 103, 242, 0.3); }
.ybg-process-step__icon { width: 72px; height: 72px; background: #f4f8ff; color: var(--ybg-blue-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; border: 1px solid rgba(18, 103, 242, 0.1); }
.ybg-process-step__icon svg { width: 32px; height: 32px; }
.ybg-process-step__arrow { position: absolute; top: 50%; right: -32px; transform: translateY(-50%); width: 24px; color: var(--ybg-blue-primary); opacity: 0.6; }
.ybg-process-step__arrow svg { width: 100%; height: auto; }
.ybg-process-step h3 { font-size: 1.2rem; color: var(--ybg-blue-navy); margin-bottom: 10px; }
.ybg-process-step p { color: #5f7495; font-size: 0.95rem; margin: 0; }

.ybg-fields { padding: clamp(40px, 5vw, 64px) 0 0; background: #ffffff; }
.ybg-page-landing .ybg-fields { padding-bottom: 0; }
.ybg-fields__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 40px; }
.ybg-field-card { text-align: center; padding: 32px 20px; border-radius: 16px; background: #ffffff; border: 1px solid #e2e8f0; transition: all 0.2s ease; display: flex; flex-direction: column; align-items: center; }
.ybg-field-card:hover { border-color: var(--ybg-hover-color, var(--ybg-blue-primary)); box-shadow: 0 8px 20px rgba(18, 103, 242, 0.08); transform: translateY(-4px); }
.ybg-field-card__icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.25s ease; }
.ybg-field-card__icon--orange { background: #fff0e6; color: #d65c00; border: 1px solid rgba(214, 92, 0, 0.18); }
.ybg-field-card:hover .ybg-field-card__icon--orange { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; border-color: rgba(255, 255, 255, 0.7); box-shadow: 0 9px 20px rgba(234, 88, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42); }

.ybg-field-card__icon--blue { background: #eff7ff; color: #006ee6; border: 1px solid rgba(0, 110, 230, 0.18); }
.ybg-field-card:hover .ybg-field-card__icon--blue { background: linear-gradient(145deg, #1789ff, #0064db); color: #fff; border-color: rgba(255, 255, 255, 0.7); box-shadow: 0 9px 20px rgba(0, 92, 212, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42); }

.ybg-field-card__icon--green { background: #e6f6ee; color: #117748; border: 1px solid rgba(17, 119, 72, 0.18); }
.ybg-field-card:hover .ybg-field-card__icon--green { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; border-color: rgba(255, 255, 255, 0.7); box-shadow: 0 9px 20px rgba(21, 128, 61, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42); }

.ybg-field-card__icon--red { background: #ffebeb; color: #dc2626; border: 1px solid rgba(220, 38, 38, 0.18); }
.ybg-field-card:hover .ybg-field-card__icon--red { background: linear-gradient(135deg, #ef4444, #b91c1c); color: #fff; border-color: rgba(255, 255, 255, 0.7); box-shadow: 0 9px 20px rgba(220, 38, 38, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42); }

.ybg-field-card__icon--purple { background: #f3ebfa; color: #6b21a8; border: 1px solid rgba(107, 33, 168, 0.18); }
.ybg-field-card:hover .ybg-field-card__icon--purple { background: linear-gradient(135deg, #a855f7, #7e22ce); color: #fff; border-color: rgba(255, 255, 255, 0.7); box-shadow: 0 9px 20px rgba(126, 34, 206, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42); }

.ybg-field-card__icon--cyan { background: #e0f2fe; color: #0284c7; border: 1px solid rgba(2, 132, 199, 0.18); }
.ybg-field-card:hover .ybg-field-card__icon--cyan { background: linear-gradient(135deg, #0ea5e9, #0369a1); color: #fff; border-color: rgba(255, 255, 255, 0.7); box-shadow: 0 9px 20px rgba(2, 132, 199, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42); }
.ybg-field-card__icon svg { width: 27px; height: 27px; }
.ybg-field-card h3 { font-size: 1.05rem; color: var(--ybg-blue-navy); line-height: 1.4; margin: 0; }
.ybg-fields__grid--four { grid-template-columns: repeat(4, 1fr); }

.ybg-digital__artwork { max-width: 320px; border-radius: 16px; overflow: hidden; margin-top: 32px; }
.ybg-digital__artwork img { width: 100%; height: auto; display: block; border-radius: inherit; }

.ybg-page-hero--campaign-landing, .ybg-page-hero--digital-landing, .ybg-page-hero--highlight-landing, .ybg-page-hero--gallery-landing {
	background: linear-gradient(135deg, var(--ybg-blue-primary) 0%, var(--ybg-blue-navy) 100%);
	color: #fff;
	text-align: left;
}
.ybg-page-hero--campaign-landing::after, .ybg-page-hero--digital-landing::after, .ybg-page-hero--highlight-landing::after, .ybg-page-hero--gallery-landing::after {
	display: none;
}
.ybg-page-hero--campaign-landing .ybg-page-hero__inner, .ybg-page-hero--digital-landing .ybg-page-hero__inner, .ybg-page-hero--highlight-landing .ybg-page-hero__inner, .ybg-page-hero--gallery-landing .ybg-page-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: calc(84px + clamp(80px, 10vw, 140px));
	padding-bottom: calc(clamp(48px, 8vw, 96px) + 80px);
}
.ybg-page-hero--campaign-landing .ybg-page-heading, .ybg-page-hero--digital-landing .ybg-page-heading, .ybg-page-hero--highlight-landing .ybg-page-heading, .ybg-page-hero--gallery-landing .ybg-page-heading {
	margin: 0;
	text-align: left;
	max-width: 620px;
}
.ybg-page-hero--campaign-landing .ybg-page-heading h1, .ybg-page-hero--digital-landing .ybg-page-heading h1, .ybg-page-hero--highlight-landing .ybg-page-heading h1, .ybg-page-hero--gallery-landing .ybg-page-heading h1 {
	color: #fff;
}
.ybg-page-hero--campaign-landing .ybg-page-heading__description, 
.ybg-page-hero--digital-landing .ybg-page-heading__description, .ybg-page-hero--highlight-landing 
.ybg-page-heading__description, .ybg-page-hero--gallery-landing .ybg-page-heading__description {
	align-items: center;
	color: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: flex-start;
	margin: 18px 0 0;
	min-height: calc(1.72em * 2) !important;
}
.ybg-page-hero__actions {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}
.ybg-page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.ybg-page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.ybg-page-hero__bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 4, 94, 0.95) 0%, rgba(3, 4, 94, 0.8) 50%, rgba(3, 4, 94, 0.2) 100%);
}
@media (max-width: 767px) {
	.ybg-page-hero__bg-overlay {
		background: linear-gradient(180deg, rgba(3, 4, 94, 0.95) 0%, rgba(3, 4, 94, 0.85) 60%, rgba(3, 4, 94, 0.4) 100%);
	}
}

.ybg-quote-banner {
	background-color: var(--ybg-blue-surface);
	padding-block: clamp(40px, 5vw, 64px);
	border-top: 1px solid var(--ybg-blue-border);
	border-bottom: 1px solid var(--ybg-blue-border);
}
.ybg-quote-banner__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.ybg-quote-banner__icon {
	width: 48px;
	height: 48px;
	color: var(--ybg-red-accent, #e21f26);
	opacity: 0.15;
	margin-bottom: 24px;
}
.ybg-quote-banner__content blockquote {
	margin: 0;
	padding: 0;
	border: none;
}
.ybg-quote-banner__content blockquote p {
	font-family: var(--ybg-font-system);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	line-height: 1.5;
	color: var(--ybg-blue-navy);
	font-weight: 500;
	font-style: italic;
	margin: 0;
}
.ybg-gallery-featured__grid {
	display: grid;
	grid-template-columns: 1.85fr 1fr;
	gap: 24px;
}
.ybg-gallery-featured__main .ybg-gallery-card {
	height: 100%;
}
.ybg-gallery-featured__main .ybg-gallery-card__content {
	flex-grow: 0;
}
.ybg-gallery-featured__main .ybg-gallery-card__image {
	flex-grow: 1;
	aspect-ratio: 4 / 3;
}
.ybg-gallery-featured__side {
	display: grid;
	gap: 24px;
	grid-template-rows: 1fr 1fr;
}
.ybg-gallery-featured__side .ybg-gallery-card {
	height: 100%;
}
.ybg-gallery-featured__side .ybg-gallery-card__image {

	aspect-ratio: 16 / 9; /* Back to 16/9 as they are narrower now */
}
@media (max-width: 991px) {
	.ybg-gallery-featured__grid {
		grid-template-columns: 1fr;
	}
	.ybg-gallery-featured__main .ybg-gallery-card__image {
		aspect-ratio: 16 / 9;
		flex-grow: 0;
	}
	.ybg-gallery-featured__side .ybg-gallery-card__image {
		aspect-ratio: 16 / 9;
	}
}

.ybg-gallery-filters__wrapper {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}
.ybg-gallery-filters__wrapper .ybg-section-heading {
	margin-bottom: 0;
}
.ybg-gallery-filters__wrapper .ybg-gallery-filters__scroll {
	padding-bottom: 0;
	flex-grow: 1;
}

.ybg-gallery-filters__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.ybg-gallery-filters__scroll::-webkit-scrollbar {
	display: none;
}
.ybg-pills-list {
	display: flex;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ybg-pill {
	display: block;
	padding: 8px 24px;
	border-radius: 99px;
	background: #fff;
	color: var(--ybg-text-secondary);
	font-weight: 500;
	border: 1px solid var(--ybg-blue-border);
	white-space: nowrap;
	transition: all 0.2s ease;
}
.ybg-pill:hover {
	background: #f0f7ff;
	color: var(--ybg-blue-primary);
	border-color: #cce5ff;
}
.ybg-pill--active {
	background: var(--ybg-blue-primary);
	color: #fff;
	border-color: var(--ybg-blue-primary);
}
.ybg-pill--active:hover {
	background: var(--ybg-blue-navy);
	color: #fff;
	border-color: var(--ybg-blue-navy);
}

/* Placeholder Cleanup A4-13B */
img[src*="placeholders"] {
	opacity: 0 !important;
}

.ybg-page-hero__artwork {
	background: radial-gradient(circle at bottom right, rgba(255,255,255,0.15) 0%, transparent 70%), linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.08) 100%);
	border-radius: var(--ybg-radius-card);
	position: relative;
}

.ybg-digital__artwork,
.ybg-gallery-contribution__artwork {
	background: radial-gradient(circle at top left, var(--ybg-blue-surface) 0%, rgba(18, 103, 242, 0.05) 100%), radial-gradient(circle, rgba(18, 103, 242, 0.05) 2px, transparent 2.5px);
	background-size: 100% 100%, 24px 24px;
	border-radius: var(--ybg-radius-card);
	position: relative;
}

.ybg-activity-card__media span:not(.ybg-category-badge-overlay) {
	display: none !important;
}

.ybg-activity-card__media {
	background: linear-gradient(135deg, var(--ybg-blue-surface) 0%, rgba(18, 103, 242, 0.05) 100%), radial-gradient(circle, rgba(18, 103, 242, 0.05) 2px, transparent 2.5px) !important;
	background-size: 100% 100%, 20px 20px !important;
}

/* GALLERY PAGE SPECIFIC
--------------------------------------------- */


.ybg-gallery-hero-stats {
	display: flex;
	gap: 32px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.ybg-gallery-hero-stats__item {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
}
.ybg-gallery-hero-stats__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.ybg-gallery-hero-stats__icon svg {
	width: 24px;
	height: 24px;
}
.ybg-gallery-hero-stats__content strong {
	display: block;
	font-family: var(--ybg-font-heading);
	font-size: 1.5rem;
	line-height: 1.2;
}
.ybg-gallery-hero-stats__content p {
	margin: 0;
	font-size: 0.875rem;
	opacity: 0.8;
}

/* Hero Collage */
.ybg-page-hero__collage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	height: 500px;
}
.ybg-page-hero__collage-main {
	height: 100%;
}
.ybg-page-hero__collage-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
}
.ybg-page-hero__collage-side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	height: 100%;
}
.ybg-page-hero__collage-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
}

/* Gallery Grid */
.ybg-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}

/* CTA Section Update */
.ybg-gallery-contribution--left-artwork {
	display: grid;
	grid-template-columns: minmax(320px, 0.4fr) minmax(0, 1fr) !important;
	gap: 40px;
}
.ybg-gallery-contribution__artwork {
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.ybg-gallery-contribution__artwork img {
	max-height: 120%; /* allow it to pop out slightly if needed, or 100% */
	object-fit: contain;
}

/* Filter pills icons */
.ybg-pills-list svg {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

@media (max-width: 991px) {
	.ybg-page-hero__collage {
		height: 400px;
	}
	.ybg-gallery-hero-stats {
		flex-direction: column;
		gap: 16px;
	}
	.ybg-gallery-contribution--left-artwork {
		grid-template-columns: 1fr !important;
	}
}





/* ---- HOMEPAGE ACTIVITIES UNIFORMITY ---- */
.ybg-activities__layout > .ybg-card .ybg-category-badge-overlay {
	position: absolute !important;
	bottom: 0 !important;
	left: 18px !important;
	right: auto !important;
	top: auto !important;
	transform: translateY(50%) !important;
	z-index: 10 !important;
	border: 3px solid #ffffff !important;
}

.ybg-activities__layout > .ybg-card .ybg-card__footer,
.ybg-activities__layout > .ybg-card .ybg-highlight-card__footer {
	margin-top: auto !important;
	border-top: none !important;
	padding-top: 0 !important;
	width: 100% !important;
	display: flex !important;
	justify-content: flex-start !important;
}

.ybg-activities__layout > .ybg-card .ybg-card__body,
.ybg-activities__layout > .ybg-card .ybg-gallery-card__content {
	display: flex !important;
	flex-direction: column !important;
	flex-grow: 1 !important;
	align-items: stretch !important;
	padding: 18px 18px 24px !important;
}

.ybg-activities__layout > .ybg-card .ybg-activity-card__media,
.ybg-activities__layout > .ybg-card .ybg-card__media {
	overflow: visible !important;
}

/* FORCE media containers to not shrink in Homepage layout */
.ybg-activities__layout > .ybg-card .ybg-activity-card__media,
.ybg-activities__layout > .ybg-card .ybg-card__media,
.ybg-activities__layout > .ybg-card .ybg-gallery-card__image {
	flex-shrink: 0 !important;
	min-height: 160px !important;
	height: 160px !important;
	overflow: visible !important;
}

.ybg-activities__layout > .ybg-card .ybg-category-badge-overlay {
	font-style: normal !important;
}

/* Single Gallery Photos */
.ybg-gallery-single__photos { margin-bottom: 40px; }
.ybg-gallery-single__image-item { border-radius: var(--ybg-radius-md); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.06); aspect-ratio: 4 / 3; }
.ybg-gallery-single__photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.ybg-gallery-single__image-item:hover .ybg-gallery-single__photo { transform: scale(1.05); }


/* Expand gallery single page */
.ybg-entry.ybg-gallery-single { max-width: 100%; }

