/* ==========================================================================
   AFMO eG – Shared styles (Screendesign Stand 06-26)
   Used by every page. Page-specific styles stay in the page itself.
   ========================================================================== */

@import url("fonts.css");

:root {
	/* Hauptfarben */
	--afmo-blue: #24305E;
	--afmo-darkblue: #13244C;
	--afmo-green: #38775F;
	--afmo-gray: #707070;
	--afmo-gray-light: #efefef;
	--afmo-dark: #13244C;

	/* Schmuckfarben: Blau */
	--blue-50: #E5F2FF;
	--blue-100: #dfeaf8;
	--blue-100-transparent: #DFEAF8D3;
	--blue-300: #8ab5e1;
	--blue-500: #5488c7;
	/* Gelb */
	--yellow-100: #f0e2cb;
	--yellow-300: #f0cd95;
	--yellow-500: #efa635;
	/* Orange */
	--orange-100-transparent: #edcfc180;
	--orange-100: #edcfc1;
	--orange-300: #e3a689;
	--orange-500: #EF6530;
	--orange-400: #fba145;
	/* Grün */
	--green-100: #d5e5b7;
	--green-300: #B5D181;
	--green-300-transparent: #b5d181b6;
	--green-400: #7ebd54;
	--green-600: #7CA89A;
	--green-500: #8db73f;
	/* AFMO-Grün */
	--afmogreen-100: #bacec8;
	--afmogreen-300: #7ca89a;
	--afmogreen-500: #408971;

	/* Layout */
	--radius-block: 30px;
	--radius-card: 20px;
	--section-gap: clamp(3.5rem, 7vw, 6.5rem);
	--nav-overlay-height: clamp(5.25rem, 7vw, 6.5rem);
	--scroll-anchor-offset: calc(var(--nav-overlay-height) + 1.5rem);
	--afmo-header-radius: 60px;

	/* Typography */
	--fs-h1: 80px;
	--fs-h2: 60px;
	--fs-h3: 30px;
	--fs-eyebrow: 24px;
	--fs-body-lg: 20px;
	--fs-body: 16px;
	--fs-detail: 12px;

	--bs-link-color: var(--afmo-blue);
}

@media screen and (max-width: 991px) {
	:root {
		--fs-h1: 55px;
		--fs-h2: 40px;
		--fs-h3: 24px;
		--fs-body-lg: 16px;
	}
}

@media screen and (max-width: 767px) {
	:root {
		--fs-h1: 42px;
		--fs-h2: 32px;
		--fs-h3: 22px;
	}
}

/* --------------------------------------------------------------------------
	 Typography  (Desktop 80/60/30/24/16/20/16/12 → Tablet 55/40 → Mobile 42/32)
	 -------------------------------------------------------------------------- */
body {
	font-family: "LFT Etica", Helvetica, Arial, sans-serif;
	font-size: var(--fs-body-lg);
	color: var(--afmo-darkblue);
	background: #fff
		/* //color-struggle */
	;
}

.frontend-page picture {
	display: contents;
}

html {
	scroll-padding-top: var(--scroll-anchor-offset);
}

@media screen and (max-width: 991px) {
	body {
		font-size: 16px;
	}
}

.headline-1 {
	font-size: var(--fs-h1);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--afmo-blue);
}

.headline-2 {
	font-size: var(--fs-h2);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--afmo-blue);
}

.subline-30 {
	font-size: 30px;
	font-weight: 700;
	line-height: 38px;
	color: var(--afmo-blue);
}

@media screen and (max-width: 991px) {
	.subline-30 {
		font-size: 24px;
		line-height: 30px;
	}
}

@media screen and (max-width: 767px) {
	.subline-30 {
		font-size: 22px;
		line-height: 30px;
	}
}

.subline-24 {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	color: var(--afmo-blue);
}

.eyebrow {
	font-size: var(--fs-eyebrow);
	margin-bottom: 0.75rem;
}

.eyebrow-bordered--green {
	--eyebrow-border-color: var(--green-600);
}

.eyebrow--bordered {
	padding-left: 20px;
	border-left: 2px solid var(--eyebrow-border-color);
}

.body-20 {
	font-size: var(--fs-body-lg);
}

.detail-12 {
	font-size: var(--fs-detail);
}

h1,
h2,
h3,
h4,
h5 {
	color: var(--afmo-blue);
	font-weight: 700;
}

.container-xxl {
	max-width: 1600px !important;
}

.w-95 {
	width: 95%;
}

.w-5 {
	width: 5%;
}

/* COLOR */
.color-blue {
	color: var(--afmo-blue) !important;
}

.container-xl {
	max-width: 1600px;
}



/* --------------------------------------------------------------------------
	 Logo (text recreation of the "afmo." wordmark)
	 -------------------------------------------------------------------------- */
.afmo-logo {
	font-weight: 600;
	color: var(--afmo-darkblue);
	text-decoration: none;
	line-height: 1;
	padding: 0;
}

.afmo-logo .logo {
	height: 38px;
	width: 133px;
}

@media screen and (max-width: 1200px) {
	.afmo-logo .logo {
		height: 35px;
		width: 124px;
	}
}

@media screen and (max-width: 767px) {
	.afmo-logo .logo {
		height: 28px;
		width: 97px;
	}
}

.dot {
	color: var(--afmo-green) !important;
}

.afmo-logo:hover {
	color: var(--afmo-blue);
}

/* --------------------------------------------------------------------------
	 Navbar
	 -------------------------------------------------------------------------- */
.afmo-header {
	margin-top: calc(var(--nav-overlay-height) * -1);
}

.afmo-nav-shell {
	position: sticky;
	top: 0;
	z-index: 1030;
}

.afmo-nav-shell .navbar {
	position: relative;
	background: var(--blue-50);
	box-shadow: 0px 3px 6px #00000029
		/* //color-struggle */
	;
	border-radius: 0 0 var(--afmo-header-radius) var(--afmo-header-radius);
	padding: 28px 0;
	z-index: 1000;
	overflow: visible;
}

.afmo-nav-shell .container {
	position: relative;
	z-index: 2;
}

.afmo-nav-shell .nav-link {
	color: var(--afmo-darkblue);
	font-weight: 500;
	margin-inline: 0.35rem;
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	white-space: nowrap;
}

.afmo-nav-shell .nav-link:hover {
	color: var(--afmo-blue);
}

.afmo-nav-shell .nav-link.active {
	font-weight: 700;
	color: var(--afmo-blue);
}

.afmo-login-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--afmo-green);
	color: #fff
		/* //color-struggle */
	;
	border: 2px solid #fff
		/* //color-struggle */
	;
	transition: background 0.2s ease;
}

.afmo-login-btn:hover {
	background: var(--afmo-darkblue);
	color: #fff
		/* //color-struggle */
	;
}

.afmo-nav-shell .navbar-toggler {
	border: 0;
	color: var(--afmo-green);
}

.afmo-nav-shell .navbar-toggler:focus {
	box-shadow: none;
}

.afmo-mobile-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.afmo-login-btn--top,
.afmo-mobile-nav {
	display: none;
}

.afmo-menu-toggle {
	position: relative;
	width: 56px;
	height: 56px;
	padding: 0;
}

.afmo-menu-toggle__line {
	position: absolute;
	left: 11px;
	width: 34px;
	height: 2px;
	border-radius: 999px;
	background: var(--afmo-green);
	transition: transform 0.24s ease, opacity 0.18s ease, top 0.24s ease;
}

.afmo-menu-toggle__line:nth-child(1) {
	top: 17px;
}

.afmo-menu-toggle__line:nth-child(2) {
	top: 27px;
}

.afmo-menu-toggle__line:nth-child(3) {
	top: 37px;
}

.is-mobile-menu-open .afmo-menu-toggle__line:nth-child(1) {
	top: 27px;
	transform: rotate(45deg);
}

.is-mobile-menu-open .afmo-menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.is-mobile-menu-open .afmo-menu-toggle__line:nth-child(3) {
	top: 27px;
	transform: rotate(-45deg);
}

@media screen and (max-width: 1199.98px) {
	:root {
		--afmo-header-radius: 50px;
	}

	.afmo-nav-shell {
		padding-inline: 0 !important;
	}

	.afmo-nav-shell .navbar {
		height: 100px;
		padding: 20px 0 20px;
		border-radius: 0 0 var(--afmo-header-radius) var(--afmo-header-radius);
	}

	.afmo-nav-shell .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.afmo-login-btn--top {
		display: inline-flex;
		width: 56px;
		height: 56px;
		box-shadow: 0 3px 8px #00000029;
	}

	.afmo-mobile-nav {
		position: absolute;
		top: calc(100% - 1px);
		left: 50%;
		display: block;
		width: 100%;
		max-width: calc(100% - 100px);
		z-index: 1;
		pointer-events: none;
		transform: translateX(-50%);
		border-radius: 0 0 30px 30px;
		overflow: hidden;
	}

	.is-mobile-menu-open .afmo-mobile-nav {
		pointer-events: auto;
	}

	.afmo-mobile-nav__inner {
		display: grid;
		grid-template-columns: 46% 54%;
		/* min-height: 392px; */
		filter: drop-shadow(0 4px 8px #0000001f);
		background: var(--blue-300);
		transform: translateY(calc(-100% - 8px));
		transition: transform 0.26s ease-in;
		will-change: transform;
	}

	.is-mobile-menu-open .afmo-mobile-nav__inner {
		transform: translateY(0);
		transition-duration: 0.36s;
		transition-timing-function: cubic-bezier(.22, .8, .25, 1);
	}

	.afmo-mobile-nav__pages,
	.afmo-mobile-nav__submenu {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.afmo-mobile-nav__pages {
		background: var(--blue-50);
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
		box-shadow: inset 0 10px 14px -14px #13244c80;
	}

	.afmo-mobile-nav__submenu {
		position: relative;
		display: flex;
		background: var(--blue-300);
		border-bottom-right-radius: 30px;
		box-shadow: inset 0 10px 14px -14px #13244c80;
	}

	.afmo-mobile-nav__submenu::before {
		content: "";
		position: absolute;
		top: 56px;
		left: -1px;
		width: 24px;
		height: 52px;
		background: var(--blue-50);
		clip-path: polygon(0 0, 100% 50%, 0 100%);
		z-index: 1;
	}

	.afmo-mobile-nav__primary-list,
	.afmo-mobile-nav__submenu-list {
		position: relative;
		z-index: 2;
		width: 100%;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.afmo-mobile-nav__primary {
		display: block;
		width: 100%;
		border: 0;
		background: transparent;
		color: var(--afmo-darkblue);
		font: inherit;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.28;
		text-align: left;
		text-decoration: none;
		cursor: pointer;
		padding: 0.72rem clamp(2rem, 5vw, 3.4rem);
	}

	.afmo-mobile-nav__primary.is-active {
		font-weight: 700;
	}

	.afmo-mobile-nav__sub-link {
		display: flex;
		align-items: center;
		gap: 0.9rem;
		color: var(--afmo-darkblue);
		font-size: 16px;
		line-height: 1.25;
		text-decoration: none;
		padding: 0.64rem clamp(2.2rem, 6vw, 4.4rem);
	}

	.afmo-mobile-nav__sub-link:hover {
		color: var(--afmo-blue);
	}

	.afmo-mobile-nav__arrow {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		width: 32px;
		height: 32px;
		border: 2px solid var(--blue-500);
		border-radius: 7px;
		color: var(--blue-500);
		font-size: 1.35rem;
		line-height: 1;
	}

	.afmo-login-btn--panel {
		position: absolute;
		display: none;
		right: 34px;
		bottom: 34px;
		width: 56px;
		height: 56px;
		box-shadow: 0 3px 8px #00000029;
	}

	@media (prefers-reduced-motion: reduce) {

		.afmo-mobile-nav__inner,
		.afmo-menu-toggle__line {
			transition: none;
		}
	}
}

@media screen and (max-width: 767.98px) {
	:root {
		--afmo-header-radius: 30px;
	}

	.afmo-nav-shell {
		padding-inline: 0 !important;
	}

	.afmo-nav-shell .navbar {
		height: 80px;
		padding: 15px;
		padding-inline: 20px !important;
		border-radius: 0 0 var(--afmo-header-radius) var(--afmo-header-radius);
	}

	.afmo-login-btn--top {
		display: none;
	}

	.afmo-mobile-nav {
		top: calc(100% - 1px);
		width: 100%;
		max-width: calc(100% - 60px);
	}

	.afmo-mobile-nav__inner {
		grid-template-columns: 38% 62%;
		min-height: 452px;
	}

	.afmo-mobile-nav__pages,
	.afmo-mobile-nav__submenu {
		padding-top: 86px;
		padding-bottom: 74px;
	}

	.afmo-mobile-nav__pages {
		border-bottom-left-radius: 42px;
		border-bottom-right-radius: 42px;
	}

	.afmo-mobile-nav__submenu {
		border-bottom-right-radius: 42px;
	}

	.afmo-mobile-nav__primary {
		font-size: 16px;
		padding: 0.67rem 1.25rem;
	}

	.afmo-mobile-nav__sub-link {
		gap: 0.75rem;
		font-size: 16px;
		padding: 0.56rem 1rem 0.56rem clamp(2.15rem, 8vw, 3.2rem);
	}

	.afmo-mobile-nav__arrow {
		width: 30px;
		height: 30px;
		font-size: 1.2rem;
	}

	.afmo-login-btn--panel {
		display: inline-flex;
		right: 32px;
		bottom: 32px;
	}
}

.afmo-header .afmo-hero {
	margin-top: calc(var(--nav-overlay-height) * -1);
	z-index: 1;
	padding-top: var(--nav-overlay-height);
}

/* --------------------------------------------------------------------------
	 Buttons (pill, with optional arrow that nudges on hover)
	 -------------------------------------------------------------------------- */
.btn-afmo,
.btn-afmo-outline,
.btn-afmo-light {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border-radius: 999px;
	padding: 0.65rem 1.5rem;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-afmo {
	background: var(--afmo-blue);
	color: #fff
		/* //color-struggle */
	;
	border: 2px solid var(--afmo-blue);
}

.btn-afmo:hover {
	background: var(--afmo-darkblue);
	border-color: var(--afmo-darkblue);
	color: #fff
		/* //color-struggle */
	;
}

.btn-afmo-outline {
	background: transparent;
	color: var(--afmo-blue);
	border: 2px solid var(--afmo-blue);
}

.btn-afmo-outline:hover {
	background: var(--afmo-blue);
	color: #fff
		/* //color-struggle */
	;
}

.btn-afmo-light {
	background: #fff
		/* //color-struggle */
	;
	color: var(--afmo-blue);
	border: 2px solid #fff
		/* //color-struggle */
	;
}

.btn-afmo-light:hover {
	background: var(--blue-100);
	border-color: var(--blue-100);
	color: var(--afmo-darkblue);
}

.btn-afmo .arrow,
.btn-afmo-outline .arrow,
.btn-afmo-light .arrow,
.arrow-link .arrow {
	transition: transform 0.25s ease;
}

.btn-afmo:hover .arrow,
.btn-afmo-outline:hover .arrow,
.btn-afmo-light:hover .arrow,
.arrow-link:hover .arrow {
	transform: translateX(5px);
}

.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--afmo-blue);
	font-weight: 600;
	text-decoration: none;
}

.arrow-link:hover {
	color: var(--afmo-darkblue);
}

/* Round icon-arrow button (used on cards/teasers) */
.btn-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--afmo-blue);
	color: #fff
		/* //color-struggle */
	;
	border: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.btn-circle:hover {
	background: var(--afmo-darkblue);
	color: #fff
		/* //color-struggle */
	;
	transform: translateX(4px);
}

/* --------------------------------------------------------------------------
	 Blocks & cards
	 -------------------------------------------------------------------------- */
.afmo-block {
	border-radius: var(--radius-block);
	overflow: hidden;
}

.afmo-card {
	border-radius: var(--radius-card);
	border: 0;
}

/* Background helpers */
.bg-blue-50 {
	background: var(--blue-50);
}

.bg-blue-100 {
	background: var(--blue-100);
}

.bg-blue-300 {
	background: var(--blue-300);
}

.bg-blue-500 {
	background: var(--blue-500);
}

.bg-yellow-100 {
	background: var(--yellow-100);
}

.bg-yellow-300 {
	background: var(--yellow-300);
}

.bg-yellow-500 {
	background: var(--yellow-500);
}

.bg-orange-100-transparent {
	background: var(--orange-100-transparent);
}

.bg-orange-100 {
	background: var(--orange-100);
}

.bg-orange-300 {
	background: var(--orange-300);
}

.bg-orange-400 {
	background: var(--orange-400);
}

.bg-orange-500 {
	background: var(--orange-500);
}

.bg-green-100 {
	background: var(--green-100);
}

.bg-green-300 {
	background: var(--green-300);
}

.bg-green-300-transparent {
	background: var(--green-300-transparent);
}

.bg-green-400 {
	background: var(--green-400);
}

.bg-green-500 {
	background: var(--green-500);
}

.bg-green-600 {
	background: var(--green-600);
}

.bg-afmogreen-100 {
	background: var(--afmogreen-100);
}

.bg-afmogreen-300 {
	background: var(--afmogreen-300);
}

.bg-afmogreen-500 {
	background: var(--afmogreen-500);
}

.bg-afmo-blue {
	background: var(--afmo-blue);
	color: #fff
		/* //color-struggle */
	;
}

.bg-afmo-blue h1,
.bg-afmo-blue h2,
.bg-afmo-blue h3,
.bg-afmo-blue .headline-2,
.bg-afmo-blue .subline-24 {
	color: #fff
		/* //color-struggle */
	;
}

.bg-afmo-green {
	background: var(--afmo-green);
	color: #fff
		/* //color-struggle */
	;
}

.bg-afmo-green h2,
.bg-afmo-green h3 {
	color: #fff
		/* //color-struggle */
	;
}

.text-afmo-blue,
.color-afmo-blue {
	color: var(--afmo-blue) !important;
}

.text-afmo-darkblue,
.color-afmo-darkblue {
	color: var(--afmo-darkblue) !important;
}

.text-afmo-dark,
.color-afmo-dark {
	color: var(--afmo-dark) !important;
}

.text-blue-50,
.color-blue-50 {
	color: var(--blue-50) !important;
}

.text-blue-100,
.color-blue-100 {
	color: var(--blue-100) !important;
}

.text-blue-100-transparent,
.color-blue-100-transparent {
	color: var(--blue-100-transparent) !important;
}

.text-blue-300,
.color-blue-300 {
	color: var(--blue-300) !important;
}

.text-blue-500,
.color-blue-500 {
	color: var(--blue-500) !important;
}

.text-yellow-100,
.color-yellow-100 {
	color: var(--yellow-100) !important;
}

.text-yellow-300,
.color-yellow-300 {
	color: var(--yellow-300) !important;
}

.text-yellow-500,
.color-yellow-500 {
	color: var(--yellow-500) !important;
}

.text-orange-100-transparent,
.color-orange-100-transparent {
	color: var(--orange-100-transparent) !important;
}

.text-orange-100,
.color-orange-100 {
	color: var(--orange-100) !important;
}

.text-orange-300,
.color-orange-300 {
	color: var(--orange-300) !important;
}

.text-orange-400,
.color-orange-400 {
	color: var(--orange-400) !important;
}

.text-orange-500,
.color-orange-500 {
	color: var(--orange-500) !important;
}

.text-green-100,
.color-green-100 {
	color: var(--green-100) !important;
}

.text-green-300,
.color-green-300 {
	color: var(--green-300) !important;
}

.text-green-300-transparent,
.color-green-300-transparent {
	color: var(--green-300-transparent) !important;
}

.text-green-400,
.color-green-400 {
	color: var(--green-400) !important;
}

.text-green-500,
.color-green-500 {
	color: var(--green-500) !important;
}

.text-green-600,
.color-green-600 {
	color: var(--green-600) !important;
}

.text-afmo-green,
.color-afmo-green {
	color: var(--afmo-green) !important;
}

.text-afmo-gray,
.color-afmo-gray {
	color: var(--afmo-gray) !important;
}

.text-afmo-gray-light,
.color-afmo-gray-light {
	color: var(--afmo-gray-light) !important;
}

.text-afmogreen-100,
.color-afmogreen-100 {
	color: var(--afmogreen-100) !important;
}

.text-afmogreen-300,
.color-afmogreen-300 {
	color: var(--afmogreen-300) !important;
}

.text-afmogreen-500,
.color-afmogreen-500 {
	color: var(--afmogreen-500) !important;
}

/* FONT SIZES */
.headline-2-large {
	font-size: var(--fs-h1);
	line-height: 1.2;
	font-weight: 600;
	color: var(--afmo-blue);
}

.headline-2-medium {
	font-size: var(--fs-h2);
	line-height: 1.2;
	font-weight: 600;
	color: var(--afmo-blue);
}

.dg {
	color: var(--afmo-green);
}

/* Sections */
.afmo-section {
	margin-block: var(--section-gap);
}

/* Anker landen unterhalb des sticky Headers */
[id] {
	scroll-margin-top: var(--scroll-anchor-offset);
}


.dg {
	color: var(--afmo-green);
}

/* Quadratischer Pfeil-Button mit runden Ecken */
.sq-arrow {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border: 2px solid currentColor;
	border-radius: 8px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: border-width 0.25s ease, color 0.25s ease, transform 0.25s ease, -webkit-text-stroke 0.25s ease;
}

a:hover>.sq-arrow,
a:focus>.sq-arrow {
	border-width: 3px;
	transform: translateX(5px);
	-webkit-text-stroke: 0.7px currentColor;
}

a.sq-arrow:hover,
a.sq-arrow:focus {
	border-width: 3px;
	-webkit-text-stroke: 0.7px currentColor;
}

.hero-philo-link {
	justify-self: end;
}

/* Textlink mit Pfeil-Quadrat */
.link-pill {
	--link-pill-color: var(--green-300);
	--link-pill-hover-color: var(--link-pill-color);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--link-pill-color);
	font-weight: 500;
	transition: color 0.25s ease, transform 0.25s ease;
}

.link-pill>.sq-arrow {
	color: var(--link-pill-color);
	border-color: var(--link-pill-color);
	background: transparent;
	transition: color 0.25s ease, transform 0.25s ease, -webkit-text-stroke 0.25s ease;
}

.link-pill:hover,
.link-pill:focus-visible {
	color: var(--link-pill-hover-color);
	font-weight: 700;
	transform: translateX(3px);
}

.link-pill:hover>.sq-arrow,
.link-pill:focus-visible>.sq-arrow {
	background: transparent;
	transform: none;
	border-width: 3px;
	-webkit-text-stroke: 0.7px currentColor;
}

.link-pill-blue {
	--link-pill-color: var(--blue-300);
}

.link-pill-darkblue {
	--link-pill-color: var(--afmo-darkblue);
}

.link-pill-orange {
	--link-pill-color: var(--orange-400);
}

.link-pill-green {
	--link-pill-color: var(--green-400);
}

.link-pill-white {
	--link-pill-color: #fff
		/* //color-struggle */
	;
}

.link-pill--framed {
	border: 2px solid var(--link-pill-color);
	border-radius: 30px;
	padding: 30px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

a.inline-link {
	color: var(--afmo-darkblue);
	text-decoration: none;
	border: 0;
}

a.inline-link:hover,
a.inline-link:focus-visible {
	text-decoration: underline;
}

.member-card-container .link-pill {
	/* --link-pill-color: #fff; //color-struggle */
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.member-card-container .link-pill-green {
	--link-pill-color: var(--green-300);
}

.member-section-cards .member-benefits-link .link-pill {
	position: static;
}

.left-lined .link-pill {
	--link-pill-color: var(--left-lined-color);
	gap: 1rem;
	padding-left: 0.5rem;
}


/* --------------------------------------------------------------------------
   Images
   -------------------------------------------------------------------------- */

/* Photos cropped from the design */
.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-radius {
	border-radius: var(--radius-card);
}

.photo-full {
	border-radius: 50px;
	overflow: hidden;
	max-height: 445px;
}

.photo-full.is-parallax-photo {
	background-image: var(--photo-full-image);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.photo-full--445 {
	max-height: 445px;
}

.photo-full--630 {
	max-height: 630px;
}

.photo-band {
	/* max-height: 445px; */
	border-radius: 50px;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.photo-full.is-parallax-photo .photo-band {
	opacity: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.afmo-footer {
	margin-top: var(--section-gap);
	background: var(--blue-50);
	border-radius: 60px 60px 0 0;
	overflow: hidden;
}

.afmo-footer .footer-main {
	/* background: var(--blue-100); */
	border-radius: 60px 60px 0 0;
	/* padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1.5rem, 3vw, 3rem); */
}

.afmo-footer .footer-title {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--afmo-darkblue);
}

.afmo-footer .footer-col {
	border-left: 2px solid var(--afmo-darkblue);
	padding-left: 1rem;
}

.afmo-footer ul {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
}

.afmo-footer ul a {
	font-size: 16px;
	display: inline-block;
	padding-block: 0.45rem;
	color: var(--afmo-darkblue);
	font-weight: 600;
	text-decoration: none;
}

.afmo-footer ul a:hover {
	color: var(--afmo-blue);
	text-decoration: underline;
}

.afmo-footer .footer-bottom {
	border-radius: 60px 60px 0 0;
	background: #13244C15;
	padding: 1rem 0;
}

.afmo-footer .footer-bottom a {
	color: var(--afmo-blue);
	text-decoration: none;
	font-size: 12px;
}

.afmo-footer .footer-bottom a:hover {
	text-decoration: underline;
}

.afmo-footer .footer-separator {
	font-size: 12px;
}

.afmo-footer .social a {
	color: var(--afmo-darkblue);
	font-size: 1.4rem;
	margin-left: 1rem;
}

.afmo-footer .social a:hover {
	color: var(--afmo-blue);
}

@media (max-width: 767.98px) {
	:root {
		--nav-overlay-height: 4.75rem;
	}

	.afmo-footer .footer-main {
		padding-bottom: 2.5rem;
	}

	.afmo-footer .afmo-logo .logo {
		width: 150px;
		height: auto;
		padding-left: 1rem;
	}

	.afmo-footer .footer-col {
		border-left: 2px solid var(--afmo-darkblue);
		margin-bottom: 20px;
		padding-left: 12px;
	}

	.afmo-footer .footer-toggle {
		width: 100%;
		background: none;
		border: 0;
		padding: 0.25rem 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		color: var(--afmo-darkblue);
		font-size: 14px;
		font-weight: 500;
		line-height: 1.25;
		text-align: left;
		text-transform: uppercase;
	}

	.afmo-footer .footer-toggle .chev {
		flex: 0 0 auto;
		transition: transform 0.25s ease;
		color: var(--afmo-darkblue);
		font-size: 1.4rem;
	}

	.afmo-footer .footer-toggle[aria-expanded="true"] .chev {
		transform: rotate(180deg);
	}
}

/* --------------------------------------------------------------------------
	 Scroll-reveal animation (elements with .reveal get faded/slid in)
	 -------------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Accordion (FAQ / footer style) */
.accordion-afmo .accordion-item {
	border: 0;
	border-bottom: 2px solid var(--blue-300);
	background: transparent;
}

.accordion-afmo .accordion-button {
	background: transparent;
	color: var(--afmo-darkblue);
	font-weight: 700;
	box-shadow: none;
	padding-inline: 0;
}

.accordion-afmo .accordion-button:not(.collapsed) {
	color: var(--afmo-blue);
}


/*--------------------------------------------------------------------------
  VIDEO  
--------------------------------------------------------------------------*/
.video-module {
	position: relative;
}

.video-module__media {
	border-radius: 30px;
}

.video-module .play-btn {
	align-items: center;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, 0.82);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(2, 63, 134, 0.25);
	color: var(--afmo-darkblue);
	display: flex;
	font-size: clamp(2rem, 4.8vw, 4rem);
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
	width: clamp(72px, 16%, 120px);
}

.video-module .play-btn:hover,
.video-module .play-btn:focus-visible {
	background: rgba(255, 255, 255, 0.95);
	color: var(--afmo-blue);
	transform: translate(-50%, -50%) scale(1.06);
}

.video-module.is-playing .play-btn {
	opacity: 0;
	pointer-events: none;
}

/* --------------------------------------------------------------------------
	 Cursor
	 -------------------------------------------------------------------------- */
html,
body,
body * {
	cursor: url("../svg/afmo-cursor.svg") 10 11, auto !important;
}

a,
a *,
button,
button *,
[role="button"],
[role="button"] *,
input[type="button"],
input[type="submit"],
input[type="reset"],
.nav-link,
.nav-link *,
.link-pill,
.link-pill *,
.btn,
.btn *,
.afmo-login-btn,
.afmo-login-btn *,
.afmo-menu-toggle,
.afmo-menu-toggle * {
	cursor: url("../svg/afmo-cursor-hover.svg") 12 13, pointer !important;
}
