@font-face {
	font-family: "AE Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/Inter-VariableFont.ttf") format("truetype");
}

/* Fixed administration shortcuts on the authenticated network pages. */
.aen-admin-shortcuts {
	position: fixed;
	z-index: 1000;
	bottom: max(1.25rem, env(safe-area-inset-bottom));
	left: max(1.25rem, env(safe-area-inset-left));
}

.aen-admin-shortcuts-toggle {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	min-height: 48px;
	padding: .75rem 1.1rem;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 999px;
	background: var(--ae-gold);
	box-shadow: var(--ae-button-shadow);
	color: #fff;
	cursor: pointer;
	font-size: .82rem;
	font-weight: 750;
	transition: background-color .18s ease;
}

.aen-admin-shortcuts-toggle:hover {
	background: var(--ae-gold-hover);
}

.aen-admin-shortcuts-plus {
	font-size: 1.25rem;
	line-height: 1;
	transition: transform .2s ease;
}

.aen-admin-shortcuts.is-open .aen-admin-shortcuts-plus {
	transform: rotate(45deg);
}

.aen-admin-shortcut-links {
	position: absolute;
	bottom: calc(100% + .7rem);
	left: 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	width: max-content;
	max-width: calc(100vw - 2.5rem);
	visibility: hidden;
	pointer-events: none;
	transition: visibility 0s linear .25s;
}

.aen-admin-shortcut-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	min-height: 46px;
	padding: .75rem 1rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius-small);
	background: var(--ae-surface);
	box-shadow: var(--ae-shadow-short);
	color: var(--ae-headline);
	font-size: .8rem;
	text-decoration: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.aen-admin-shortcut-links a span {
	color: var(--ae-gold);
}

.aen-admin-shortcut-links a:hover {
	background: var(--ae-bg-soft);
}

.aen-admin-shortcuts.is-open .aen-admin-shortcut-links {
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

.aen-admin-shortcuts.is-open .aen-admin-shortcut-links a {
	opacity: 1;
	transform: translateY(0);
}

.aen-admin-shortcuts.is-open .aen-admin-shortcut-links a:nth-child(2) {
	transition-delay: .035s;
}

.aen-admin-shortcuts.is-open .aen-admin-shortcut-links a:nth-child(3) {
	transition-delay: .07s;
}

body:has(.aen-admin-shortcuts) .aen-site-footer {
	padding-bottom: 6rem;
}

@media (prefers-reduced-motion: reduce) {
	.aen-admin-shortcuts *,
	.aen-admin-shortcuts.is-open .aen-admin-shortcut-links a {
		transition: none;
	}
}

:root {
	--ae-bg: #f7f7f7;
	--ae-bg-soft: #f5f5f5;
	--ae-bg-hover: #ebebeb;
	--ae-surface: #ffffff;
	--ae-headline: #1d1d1f;
	--ae-copy: rgba(0, 0, 0, .50);
	--ae-copy-strong: rgba(0, 0, 0, .68);
	--ae-gold: #aa9136;
	--ae-gold-hover: #9d7a34;
	--ae-gold-soft: rgba(170, 145, 54, .12);
	--ae-blue: #16567b;
	--ae-border: 1px solid rgba(215, 215, 215, .72);
	--ae-radius: 1rem;
	--ae-radius-small: .5rem;
	--ae-shadow: 4px 4px 25px rgba(133, 133, 133, .16);
	--ae-shadow-short: 0 0 8px rgba(137, 137, 137, .14);
	--ae-button-shadow: rgba(170,145,54,.03) 0 .7px 1.6px, rgba(170,145,54,.08) 0 2px 4px, rgba(170,145,54,.14) 0 5px 10px, rgba(170,145,54,.24) 0 12px 24px;
	--ae-font: "AE Inter", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	min-height: 100vh;
	margin: 0;
	background: var(--ae-bg);
	color: var(--ae-copy);
	font-family: var(--ae-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
	font: inherit;
}

a,
button {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

[hidden] {
	display: none !important;
}

::selection {
	background: rgba(170, 145, 54, .22);
	color: var(--ae-headline);
}

:focus-visible {
	outline: 3px solid rgba(170, 145, 54, .45);
	outline-offset: 3px;
}

.aen-container {
	width: min(1200px, calc(100% - 4rem));
	margin-inline: auto;
}

.aen-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.aen-skip-link {
	position: fixed;
	top: .5rem;
	left: .5rem;
	z-index: 1000;
	padding: .6rem 1rem;
	transform: translateY(-160%);
	border-radius: 2rem;
	background: var(--ae-headline);
	color: white;
	text-decoration: none;
}

.aen-skip-link:focus {
	transform: translateY(0);
}

.aen-eyebrow {
	margin: 0 0 .8rem;
	color: var(--ae-gold);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .06em;
	line-height: 1.35;
	text-transform: uppercase;
}

.aen-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	overflow: hidden;
	border-radius: 9px;
	background: #050603;
}

.aen-mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aen-mark--large {
	width: 52px;
	height: 52px;
	border-radius: 12px;
}

.aen-brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	color: var(--ae-headline);
	text-decoration: none;
}

.aen-brand-lockup > span:not(.aen-mark) {
	display: grid;
	gap: 1px;
}

.aen-brand-lockup strong {
	font-size: .95rem;
	font-weight: 850;
	letter-spacing: -.01em;
}

.aen-brand-lockup small {
	color: var(--ae-copy);
	font-size: .58rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.aen-brand-logo {
	display: block;
	object-fit: contain;
}

.aen-login-logo {
	width: 96px;
	height: 96px;
}

.aen-mobile-logo {
	width: 72px;
	height: 72px;
}

.aen-navbar-logo {
	width: 50px;
	height: 50px;
}

.aen-primary-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 48px;
	padding: .65rem 1.35rem;
	border: 0;
	border-radius: 2rem;
	background: var(--ae-gold);
	box-shadow: var(--ae-button-shadow);
	color: white;
	cursor: pointer;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.aen-primary-button:hover {
	background: var(--ae-gold-hover);
	box-shadow: 0 10px 28px rgba(157, 122, 52, .26);
}

.aen-primary-button:active {
	transform: scale(.975);
}

.aen-primary-button i {
	font-size: 1.1rem;
	font-style: normal;
	font-weight: 500;
}

/* Login */
.aen-login-page {
	background: var(--ae-bg);
}

.aen-login-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(480px, .82fr);
	min-height: 100vh;
}

.aen-login-brand {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	padding: clamp(2rem, 4.5vw, 4.5rem) clamp(2.2rem, 6vw, 7rem);
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 25%, rgba(170,145,54,.15), transparent 25%),
		linear-gradient(145deg, #f7f7f7, #eeeeec);
}

.aen-login-brand::before {
	position: absolute;
	top: 12%;
	right: -13%;
	width: min(46vw, 680px);
	aspect-ratio: 1;
	border: 1px solid rgba(170,145,54,.13);
	border-radius: 50%;
	content: "";
}

.aen-login-brand::after {
	position: absolute;
	top: 17%;
	right: -8%;
	width: min(38vw, 560px);
	aspect-ratio: 1;
	border: 1px solid rgba(170,145,54,.08);
	border-radius: 50%;
	content: "";
}

.aen-login-brand > * {
	position: relative;
	z-index: 2;
}

.aen-ambient {
	position: absolute;
	pointer-events: none;
}

.aen-ambient--one {
	top: 29%;
	right: 10%;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(170,145,54,.10);
	filter: blur(55px);
}

.aen-ambient--two {
	bottom: 0;
	left: 2%;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(22,86,123,.07);
	filter: blur(70px);
}

.aen-login-promise {
	max-width: 720px;
	margin: clamp(5rem, 13vh, 9rem) 0 4rem;
}

.aen-login-promise h1 {
	max-width: 700px;
	margin: 0 0 1.5rem;
	color: var(--ae-headline);
	font-size: clamp(2.55rem, 4vw, 4rem);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: .98;
	text-align: left;
}

.aen-login-promise > p:last-child {
	max-width: 590px;
	margin: 0;
	color: var(--ae-copy);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.7;
}

.aen-login-trust {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

.aen-login-trust span {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .45rem .75rem;
	border: var(--ae-border);
	border-radius: 2rem;
	background: rgba(255,255,255,.65);
	box-shadow: var(--ae-shadow-short);
	color: var(--ae-copy-strong);
	font-size: .7rem;
	font-weight: 700;
}

.aen-login-trust i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ae-gold);
}

.aen-login-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 3rem clamp(2rem, 6vw, 6rem) 1.5rem;
	border-left: var(--ae-border);
	background: var(--ae-surface);
}

.aen-login-form-wrap {
	width: min(100%, 430px);
	margin: auto 0;
}

.aen-mobile-brand {
	display: none;
}

.aen-login-form-wrap h2 {
	margin: 0 0 .75rem;
	color: var(--ae-headline);
	font-size: clamp(1.85rem, 2.7vw, 2.4rem);
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: 1.05;
}

.aen-login-lead {
	margin: 0 0 2.1rem;
	color: var(--ae-copy);
	font-size: .92rem;
}

.aen-alert {
	margin-bottom: 1.25rem;
	padding: .85rem 1rem;
	border: 1px solid rgba(159,54,36,.18);
	border-radius: var(--ae-radius-small);
	background: #fff3f1;
	color: #7d3024;
	font-size: .78rem;
	line-height: 1.55;
}

.aen-login-form > label,
.aen-password-label label {
	display: block;
	margin: 0 0 .4rem;
	color: var(--ae-headline);
	font-size: .75rem;
	font-weight: 750;
}

.aen-login-form > input,
.aen-password-input input {
	width: 100%;
	height: 51px;
	padding: 0 1rem;
	border: 2px solid rgba(223,223,223,.7);
	border-radius: var(--ae-radius-small);
	background: var(--ae-bg-soft);
	color: var(--ae-headline);
	font-weight: 550;
	outline: none;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.aen-login-form > input:focus,
.aen-password-input input:focus {
	border-color: rgba(170,145,54,.58);
	background: white;
	box-shadow: 0 0 0 4px var(--ae-gold-soft);
}

.aen-password-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 1.2rem;
}

.aen-password-label a {
	margin-bottom: .4rem;
	color: var(--ae-gold-hover);
	font-size: .72rem;
	font-weight: 650;
	text-decoration: none;
}

.aen-password-label a:hover {
	text-decoration: underline;
}

.aen-password-input {
	position: relative;
}

.aen-password-input input {
	padding-right: 5.5rem;
}

.aen-password-input button {
	position: absolute;
	top: 50%;
	right: .75rem;
	padding: .25rem .4rem;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: var(--ae-copy);
	cursor: pointer;
	font-size: .7rem;
	font-weight: 750;
}

.aen-checkbox {
	display: flex !important;
	align-items: center;
	gap: .55rem;
	margin: 1rem 0 1.45rem !important;
	color: var(--ae-copy) !important;
	cursor: pointer;
	font-size: .72rem !important;
	font-weight: 600 !important;
}

.aen-checkbox input {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var(--ae-gold);
}

.aen-login-form .aen-primary-button {
	width: 100%;
}

.aen-login-help {
	margin: 1.7rem 0 0;
	color: rgba(0,0,0,.38);
	font-size: .7rem;
	font-weight: 550;
	line-height: 1.65;
	text-align: center;
}

.aen-login-footer {
	display: grid;
	gap: .45rem;
	margin: 2rem 0 0;
	color: rgba(0,0,0,.32);
	font-size: .62rem;
	font-weight: 550;
	text-align: center;
}

.aen-legal-links {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
}

.aen-login-footer .aen-legal-links {
	justify-content: center;
}

.aen-login-footer a {
	color: rgba(0,0,0,.46);
	font-weight: 650;
	text-decoration: none;
}

.aen-login-footer a:hover {
	color: var(--ae-gold-hover);
}

/* Branded WordPress authentication flow */
body.login.aen-core-login {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(480px, .82fr);
	grid-template-rows: minmax(0, 1fr) auto;
	min-width: 0;
	min-height: 100vh;
	padding: 0;
	overflow-x: hidden;
	background: var(--ae-surface);
	color: var(--ae-copy);
	font-family: var(--ae-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
}

body.login.aen-core-login .aen-core-login-brand {
	grid-column: 1;
	grid-row: 1 / 3;
	border-right: var(--ae-border);
}

body.login.aen-core-login #login {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	width: min(430px, calc(100% - 4rem));
	margin: auto;
	padding: 3rem 0 2rem;
}

body.login.aen-core-login #login .wp-login-logo,
body.login.aen-core-login #backtoblog,
body.login.aen-core-login .privacy-policy-page-link {
	display: none;
}

.aen-core-mobile-brand {
	display: none;
}

.aen-core-login-heading {
	margin-bottom: 2rem;
}

.aen-core-login-heading h2 {
	margin: 0 0 .75rem;
	color: var(--ae-headline);
	font-size: clamp(1.85rem, 2.7vw, 2.4rem);
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: 1.05;
}

.aen-core-login-heading > p:last-child {
	margin: 0;
	color: var(--ae-copy);
	font-size: .92rem;
}

body.login.aen-core-login #login form {
	margin: 0;
	padding: 0;
	overflow: visible;
	border: 0;
	background: transparent;
	box-shadow: none;
}

body.login.aen-core-login #login form > p,
body.login.aen-core-login #login form .user-pass1-wrap,
body.login.aen-core-login #login form .user-pass-wrap {
	margin: 0 0 1.2rem;
}

body.login.aen-core-login #login label {
	display: block;
	margin: 0 0 .4rem;
	color: var(--ae-headline);
	font-size: .75rem;
	font-weight: 750;
}

body.login.aen-core-login #login input[type="text"],
body.login.aen-core-login #login input[type="email"],
body.login.aen-core-login #login input[type="password"] {
	box-sizing: border-box;
	width: 100%;
	height: 51px;
	margin: 0;
	padding: 0 1rem;
	border: 2px solid rgba(223,223,223,.7);
	border-radius: var(--ae-radius-small);
	background: var(--ae-bg-soft);
	box-shadow: none;
	color: var(--ae-headline);
	font-size: .9rem;
	font-weight: 550;
	line-height: 1;
	outline: none;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.login.aen-core-login #login input[type="text"]:focus,
body.login.aen-core-login #login input[type="email"]:focus,
body.login.aen-core-login #login input[type="password"]:focus {
	border-color: rgba(170,145,54,.58);
	background: white;
	box-shadow: 0 0 0 4px var(--ae-gold-soft);
}

body.login.aen-core-login #login .wp-pwd {
	position: relative;
}

body.login.aen-core-login #login .wp-pwd input {
	padding-right: 3.5rem;
}

body.login.aen-core-login #login .wp-hide-pw {
	position: absolute;
	top: 50%;
	right: .65rem;
	min-width: 34px;
	min-height: 34px;
	padding: 0;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--ae-copy);
}

body.login.aen-core-login #login .submit {
	margin: 1.5rem 0 0;
	padding: 0;
}

body.login.aen-core-login #login #wp-submit {
	float: none;
	width: 100%;
	min-height: 55px;
	padding: 0 1.35rem;
	border: 0;
	border-radius: 2rem;
	background: var(--ae-gold);
	box-shadow: var(--ae-button-shadow);
	color: white;
	font-size: .9rem;
	font-weight: 750;
	line-height: 1.2;
	text-shadow: none;
	transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

body.login.aen-core-login #login #wp-submit:hover,
body.login.aen-core-login #login #wp-submit:focus {
	background: var(--ae-gold-hover);
	box-shadow: 0 10px 28px rgba(157,122,52,.26);
}

body.login.aen-core-login #login #nav {
	margin: 1.5rem 0 0;
	padding: 0;
	color: var(--ae-copy);
	font-size: .72rem;
	font-weight: 650;
	text-align: center;
}

body.login.aen-core-login #login #nav a {
	color: var(--ae-gold-hover);
}

body.login.aen-core-login #login .notice,
body.login.aen-core-login #login #login_error,
body.login.aen-core-login #login .message {
	margin: 0 0 1.25rem;
	padding: .85rem 1rem;
	border: 1px solid rgba(170,145,54,.2);
	border-radius: var(--ae-radius-small);
	background: #fbf8ee;
	box-shadow: none;
	color: var(--ae-copy-strong);
	font-size: .76rem;
	line-height: 1.55;
}

body.login.aen-core-login #login #login_error,
body.login.aen-core-login #login .notice-error {
	border-color: rgba(159,54,36,.18);
	background: #fff3f1;
	color: #7d3024;
}

body.login.aen-core-login #login .notice p,
body.login.aen-core-login #login #login_error p,
body.login.aen-core-login #login .message p {
	margin: 0;
}

body.login.aen-core-login #login .description,
body.login.aen-core-login #login .indicator-hint {
	color: var(--ae-copy);
	font-size: .7rem;
	line-height: 1.55;
}

body.login.aen-core-login #login #pass-strength-result {
	margin: .55rem 0 0;
	border: 0;
	border-radius: var(--ae-radius-small);
	font-size: .7rem;
}

.aen-core-login-footer {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0 1.5rem 1.4rem;
	color: rgba(0,0,0,.34);
	font-size: .62rem;
	font-weight: 550;
}

.aen-core-login-footer a {
	color: rgba(0,0,0,.48);
	font-weight: 650;
	text-decoration: none;
}

.aen-core-login-footer a:hover {
	color: var(--ae-gold-hover);
}

/* Header */
.aen-network-page {
	background: var(--ae-bg);
}

.aen-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: 60px;
	border-bottom: 1px solid rgba(203,203,203,.55);
	background: rgba(244,244,245,.83);
	box-shadow: 0 0 2px #cbcbcb;
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
}

.aen-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}

.aen-header-user {
	display: flex;
	align-items: center;
	gap: .65rem;
}

.aen-header-user > div:nth-child(2) {
	display: grid;
	min-width: 125px;
}

.aen-header-user small {
	color: var(--ae-copy);
	font-size: .56rem;
	font-weight: 600;
	letter-spacing: .03em;
	line-height: 1.35;
	text-transform: uppercase;
}

.aen-header-user strong {
	max-width: 170px;
	overflow: hidden;
	color: var(--ae-headline);
	font-size: .72rem;
	font-weight: 750;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.aen-user-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: var(--ae-border);
	border-radius: 50%;
	background: white;
	box-shadow: var(--ae-shadow-short);
	color: var(--ae-gold-hover);
	font-size: .65rem;
	font-weight: 850;
}

.aen-logout {
	margin-left: .3rem;
	padding: .38rem .85rem;
	border: 1px solid rgba(170,145,54,.28);
	border-radius: 2rem;
	background: rgba(255,255,255,.55);
	color: var(--ae-headline);
	font-size: .68rem;
	font-weight: 650;
	text-decoration: none;
	transition: background-color .16s ease;
}

.aen-logout:hover {
	background: white;
}

/* Directory */
.aen-network-hero {
	position: relative;
	overflow: hidden;
	border-bottom: var(--ae-border);
	background:
		radial-gradient(circle at 80% 18%, rgba(170,145,54,.13), transparent 26%),
		linear-gradient(#f7f7f7, #f3f3f3);
}

.aen-network-hero::after {
	position: absolute;
	right: -10%;
	bottom: -90%;
	width: min(48vw, 620px);
	aspect-ratio: 1;
	border: 1px solid rgba(170,145,54,.11);
	border-radius: 50%;
	content: "";
}

.aen-network-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 330px;
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
}

.aen-network-hero h1 {
	margin: 0 0 1rem;
	color: var(--ae-headline);
	font-size: clamp(3.1rem, 5.5vw, 5rem);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: .98;
}

.aen-network-hero-inner > div:first-child > p:last-child {
	max-width: 620px;
	margin: 0;
	color: var(--ae-copy);
	font-size: 1rem;
	font-weight: 600;
}

.aen-hero-seal {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 145px;
	height: 145px;
	margin-left: 3rem;
	border: 1px solid rgba(170,145,54,.26);
	border-radius: 50%;
	background: rgba(255,255,255,.58);
	box-shadow: var(--ae-shadow);
	backdrop-filter: blur(12px);
}

.aen-hero-seal span {
	padding-right: .75rem;
	color: var(--ae-headline);
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1;
}

.aen-hero-seal small {
	padding-left: .75rem;
	border-left: 1px solid rgba(170,145,54,.3);
	color: var(--ae-copy);
	font-size: .55rem;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.5;
	text-transform: uppercase;
}

.aen-quicklinks-section {
	padding: 1.5rem 0 0;
}

.aen-quicklinks-heading {
	margin-bottom: 1.2rem;
}

.aen-quicklinks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: .85rem;
}

.aen-quicklink {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: .85rem;
	align-items: center;
	min-height: 78px;
	padding: .8rem 1rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius-small);
	background: var(--ae-surface);
	box-shadow: var(--ae-shadow-short);
	color: var(--ae-headline);
	text-decoration: none;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.aen-quicklink:hover {
	transform: translateY(-2px);
	border-color: rgba(170,145,54,.32);
	box-shadow: 4px 8px 24px rgba(100,100,100,.15);
}

.aen-quicklink-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 10px;
	background: var(--ae-bg-soft);
}

.aen-quicklink-icon img {
	width: 100%;
	height: 100%;
	padding: .4rem;
	object-fit: contain;
}

.aen-quicklink-icon.is-fallback {
	background: var(--ae-gold-soft);
	color: var(--ae-gold-hover);
	font-size: 1.1rem;
	font-weight: 850;
}

.aen-quicklink strong {
	overflow: hidden;
	font-size: .78rem;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.aen-directory-section {
	padding: 2rem 0 4rem;
}

.aen-directory-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.aen-directory-heading h2,
.aen-benefits-panel h2,
.aen-about-panel h2,
.aen-contact-card h2 {
	margin: 0;
	color: var(--ae-headline);
	font-size: clamp(1.75rem, 2.7vw, 2.4rem);
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: 1.03;
}

.aen-directory-heading > p {
	margin: 0 0 .2rem;
	color: var(--ae-copy);
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.65;
	text-align: right;
}

.aen-filter-bar {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) 260px;
	gap: .75rem;
	padding: .55rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius);
	background: rgba(255,255,255,.72);
	box-shadow: var(--ae-shadow-short);
}

.aen-search-field,
.aen-category-field {
	position: relative;
}

.aen-search-field span {
	position: absolute;
	top: 50%;
	left: 1rem;
	width: 15px;
	height: 15px;
	transform: translateY(-58%);
	border: 1.5px solid rgba(0,0,0,.38);
	border-radius: 50%;
	pointer-events: none;
}

.aen-search-field span::after {
	position: absolute;
	right: -5px;
	bottom: -3px;
	width: 6px;
	height: 1.5px;
	transform: rotate(45deg);
	background: rgba(0,0,0,.38);
	content: "";
}

.aen-filter-bar input,
.aen-filter-bar select {
	width: 100%;
	height: 48px;
	border: 1px solid transparent;
	border-radius: var(--ae-radius-small);
	background: var(--ae-bg-soft);
	color: var(--ae-headline);
	font-size: .78rem;
	font-weight: 600;
	outline: none;
}

.aen-filter-bar input {
	padding: 0 1rem 0 2.75rem;
}

.aen-filter-bar select {
	padding: 0 2.5rem 0 1rem;
	cursor: pointer;
}

.aen-filter-bar input:focus,
.aen-filter-bar select:focus {
	border-color: rgba(170,145,54,.55);
	background: white;
	box-shadow: 0 0 0 3px var(--ae-gold-soft);
}

.aen-result-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.4rem 0;
	color: var(--ae-copy);
	font-size: .65rem;
	font-weight: 750;
}

.aen-result-line {
	height: 1px;
	flex: 1;
	background: rgba(215,215,215,.8);
}

.aen-partner-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.aen-partner-card {
	min-width: 0;
	overflow: hidden;
	border: var(--ae-border);
	border-radius: var(--ae-radius);
	background: var(--ae-surface);
	box-shadow: var(--ae-shadow);
	transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.aen-partner-card:hover {
	transform: translateY(-4px);
	box-shadow: 8px 12px 34px rgba(100,100,100,.19);
}

.aen-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.aen-card-media {
	position: relative;
	height: 245px;
	overflow: hidden;
	background: var(--ae-bg-soft);
}

.aen-card-media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: saturate(.88);
	transition: transform .35s ease, filter .2s ease;
}

.aen-partner-card:hover .aen-card-media > img {
	transform: scale(1.025);
	filter: saturate(1);
}

.aen-card-media--logo-only {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ae-surface);
}

.aen-card-logo-only {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: clamp(2.5rem, 6vw, 4.5rem);
}

.aen-card-logo-only img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.aen-card-fallback,
.aen-profile-fallback {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(145deg, #efefed, #deddd8);
}

.aen-card-fallback::after,
.aen-profile-fallback::after {
	position: absolute;
	width: 75%;
	aspect-ratio: 1;
	border: 1px solid rgba(170,145,54,.18);
	border-radius: 50%;
	content: "";
}

.aen-card-fallback span,
.aen-profile-fallback span {
	position: relative;
	z-index: 1;
	color: var(--ae-gold-hover);
	font-size: 3.6rem;
	font-weight: 900;
	letter-spacing: -.05em;
}

.aen-accent-2 .aen-card-fallback {
	background: linear-gradient(145deg, #edf1f2, #dfe5e7);
}

.aen-accent-3 .aen-card-fallback {
	background: linear-gradient(145deg, #f2eeee, #e5dedd);
}

.aen-accent-4 .aen-card-fallback {
	background: linear-gradient(145deg, #f0efe8, #e2e0d3);
}

.aen-card-logo {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 54px;
	padding: .5rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius-small);
	background: rgba(255,255,255,.93);
	box-shadow: var(--ae-shadow-short);
	backdrop-filter: blur(8px);
}

.aen-card-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.aen-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.4rem;
}

.aen-card-category {
	margin: 0 0 .5rem;
	color: var(--ae-gold-hover);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.aen-card-body h3 {
	margin: 0 0 .15rem;
	color: var(--ae-headline);
	font-size: 1.25rem;
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1.1;
}

.aen-card-subtitle {
	margin: 0 0 .8rem;
	color: var(--ae-copy);
	font-size: .75rem;
	font-weight: 650;
}

.aen-card-description {
	display: -webkit-box;
	margin: 0 0 1.25rem;
	overflow: hidden;
	color: var(--ae-copy);
	font-size: .75rem;
	font-weight: 550;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.aen-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .8rem;
	margin-top: auto;
	padding-top: .95rem;
	border-top: var(--ae-border);
}

.aen-card-footer > span {
	max-width: 48%;
	color: var(--ae-copy);
	font-size: .62rem;
	font-weight: 600;
	line-height: 1.4;
}

.aen-card-footer strong {
	color: var(--ae-headline);
	font-size: .65rem;
	font-weight: 750;
}

.aen-card-footer i {
	margin-left: .25rem;
	color: var(--ae-gold-hover);
	font-size: .9rem;
	font-style: normal;
}

.aen-empty-filter,
.aen-empty-network {
	padding: 4rem 2rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius);
	background: white;
	box-shadow: var(--ae-shadow);
	text-align: center;
}

.aen-empty-filter strong,
.aen-empty-network h3 {
	color: var(--ae-headline);
	font-size: 1.3rem;
	font-weight: 850;
	letter-spacing: -.025em;
}

.aen-empty-filter p,
.aen-empty-network p {
	color: var(--ae-copy);
	font-size: .78rem;
}

.aen-empty-filter button {
	padding: .55rem 1rem;
	border: 1px solid rgba(170,145,54,.32);
	border-radius: 2rem;
	background: var(--ae-bg-soft);
	color: var(--ae-headline);
	cursor: pointer;
	font-size: .72rem;
	font-weight: 700;
}

.aen-empty-network > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: var(--ae-radius);
	background: #050603;
	color: var(--ae-gold);
	font-weight: 850;
}

/* Partner detail */
.aen-partner-topbar {
	border-bottom: var(--ae-border);
	background: var(--ae-bg-soft);
}

.aen-partner-topbar .aen-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 52px;
}

.aen-partner-topbar a,
.aen-partner-topbar span {
	color: var(--ae-copy);
	font-size: .65rem;
	font-weight: 700;
	text-decoration: none;
}

.aen-partner-topbar a:hover {
	color: var(--ae-gold-hover);
}

.aen-partner-topbar a i {
	margin-right: .4rem;
	color: var(--ae-gold-hover);
	font-size: .95rem;
	font-style: normal;
}

.aen-partner-hero {
	position: relative;
	overflow: hidden;
	border-bottom: var(--ae-border);
	background: linear-gradient(#f7f7f7, #f2f2f2);
}

.aen-partner-hero::after {
	position: absolute;
	top: -65%;
	right: -10%;
	width: min(48vw, 650px);
	aspect-ratio: 1;
	border: 1px solid rgba(170,145,54,.12);
	border-radius: 50%;
	content: "";
}

.aen-partner-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 390px minmax(0, 1fr);
	gap: clamp(3.5rem, 8vw, 7rem);
	align-items: center;
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.aen-profile-portrait {
	position: relative;
	height: 440px;
	overflow: visible;
	border-radius: var(--ae-radius);
	box-shadow: var(--ae-shadow);
}

.aen-profile-portrait > img,
.aen-profile-fallback {
	width: 100%;
	height: 100%;
	border-radius: var(--ae-radius);
	object-fit: cover;
	object-position: center top;
}

.aen-profile-portrait--logo-only {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ae-surface);
}

.aen-profile-logo-only {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: clamp(3rem, 7vw, 5rem);
}

.aen-profile-logo-only img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.aen-profile-logo {
	position: absolute;
	right: -1.25rem;
	bottom: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 78px;
	padding: .75rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius-small);
	background: rgba(255,255,255,.94);
	box-shadow: var(--ae-shadow);
}

.aen-profile-logo img {
	max-height: 100%;
	object-fit: contain;
}

.aen-profile-intro {
	max-width: 650px;
}

.aen-profile-intro h1 {
	margin: 0 0 .5rem;
	color: var(--ae-headline);
	font-size: clamp(2.3rem, 4vw, 3.6rem);
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: .95;
}

.aen-profile-subtitle {
	margin: 0;
	color: var(--ae-gold-hover);
	font-size: 1rem;
	font-weight: 750;
}

.aen-profile-company {
	margin: .2rem 0 0;
	color: var(--ae-copy);
	font-size: .8rem;
	font-weight: 600;
}

.aen-profile-lead {
	max-width: 590px;
	margin: 1.6rem 0 0;
	padding: 1.2rem 1.3rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius);
	background: rgba(255,255,255,.6);
	box-shadow: var(--ae-shadow-short);
	color: var(--ae-copy-strong);
	font-size: .95rem;
	font-weight: 600;
	line-height: 1.7;
}

.aen-profile-badges {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-top: 1.4rem;
}

.aen-profile-badges span {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .42rem .7rem;
	border: var(--ae-border);
	border-radius: 2rem;
	background: white;
	box-shadow: var(--ae-shadow-short);
	color: var(--ae-copy-strong);
	font-size: .62rem;
	font-weight: 700;
}

.aen-profile-badges i {
	color: var(--ae-gold-hover);
	font-size: .45rem;
	font-style: normal;
}

.aen-partner-content-section {
	padding: 5.2rem 0 7rem;
}

.aen-partner-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: clamp(2.5rem, 7vw, 6rem);
	align-items: start;
}

.aen-partner-main-column {
	display: grid;
	gap: 3rem;
}

.aen-benefits-panel,
.aen-about-panel {
	padding: 2.5rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius);
	background: white;
	box-shadow: var(--ae-shadow);
}

.aen-benefits-panel {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 0, rgba(170,145,54,.14), transparent 30%),
		white;
}

.aen-richtext {
	margin-top: 1.5rem;
	color: var(--ae-copy);
	font-size: .85rem;
	font-weight: 550;
	line-height: 1.8;
}

.aen-richtext > :first-child {
	margin-top: 0;
}

.aen-richtext > :last-child {
	margin-bottom: 0;
}

.aen-richtext h3,
.aen-richtext h4 {
	margin: 1.5rem 0 .5rem;
	color: var(--ae-headline);
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: -.02em;
}

.aen-richtext ul {
	padding: 0;
	list-style: none;
}

.aen-richtext li {
	position: relative;
	margin: .7rem 0;
	padding-left: 1.8rem;
}

.aen-richtext li::before {
	position: absolute;
	top: .15rem;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	border-radius: 6px;
	background: var(--ae-gold-soft);
	color: var(--ae-gold-hover);
	content: "✓";
	font-size: .7rem;
	font-weight: 850;
}

.aen-contact-card {
	position: sticky;
	top: 84px;
	padding: 2rem;
	border: var(--ae-border);
	border-radius: var(--ae-radius);
	background: white;
	box-shadow: var(--ae-shadow);
}

.aen-contact-card h2 {
	font-size: 1.65rem;
}

.aen-contact-card > p:nth-of-type(2) {
	margin: .75rem 0 1.4rem;
	color: var(--ae-copy);
	font-size: .75rem;
	font-weight: 550;
	line-height: 1.65;
}

.aen-contact-list {
	margin: 0 0 1.4rem;
	border-top: var(--ae-border);
}

.aen-contact-list > a,
.aen-contact-list > div {
	display: grid;
	gap: .1rem;
	padding: .75rem 0;
	border-bottom: var(--ae-border);
	text-decoration: none;
}

.aen-contact-list > a:hover strong {
	color: var(--ae-gold-hover);
}

.aen-contact-list span {
	color: rgba(0,0,0,.36);
	font-size: .58rem;
	font-weight: 700;
	text-transform: uppercase;
}

.aen-contact-list strong {
	overflow-wrap: anywhere;
	color: var(--ae-headline);
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.5;
}

.aen-contact-card .aen-primary-button {
	width: 100%;
}

.aen-social-links {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: .55rem;
	margin-top: .75rem;
}

.aen-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	width: 100%;
	min-width: 0;
	min-height: 48px;
	padding: .65rem 1.35rem;
	border-radius: 999px;
	color: #fff;
	font-size: inherit;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: filter .16s ease, transform .16s ease;
}

.aen-social-link:hover {
	color: #fff;
	filter: brightness(.9);
}

.aen-social-link:active {
	transform: scale(.975);
}

.aen-social-link > span {
	font-size: 1.1rem;
	font-weight: 500;
}

.aen-social-link--whatsapp { background: #128c7e; }
.aen-social-link--instagram { background: linear-gradient(115deg, #833ab4, #fd1d1d 55%, #fcb045); }
.aen-social-link--linkedin { background: #0a66c2; }
.aen-social-link--facebook { background: #1877f2; }

.aen-contact-trust {
	display: flex;
	align-items: flex-start;
	gap: .55rem;
	margin-top: 1.2rem;
	color: rgba(0,0,0,.42);
	font-size: .65rem;
	font-weight: 550;
	line-height: 1.55;
}

.aen-contact-trust i {
	color: var(--ae-gold-hover);
	font-size: .6rem;
	font-style: normal;
}

/* Footer */
.aen-site-footer {
	padding: 2.5rem 0;
	border-top: 1px solid rgba(255,255,255,.08);
	background: #1d1d1f;
	color: rgba(255,255,255,.56);
}

.aen-site-footer .aen-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.aen-site-footer .aen-footer-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.aen-footer-logo {
	width: 78px;
	height: 78px;
	flex: 0 0 auto;
}

.aen-site-footer strong {
	color: #fff;
	font-size: .75rem;
	font-weight: 850;
}

.aen-site-footer span,
.aen-site-footer p,
.aen-site-footer a {
	color: rgba(255,255,255,.56);
	font-size: .62rem;
	font-weight: 550;
}

.aen-site-footer p {
	max-width: 520px;
	margin: 0;
	text-align: right;
}

.aen-footer-meta {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: .55rem;
}

.aen-site-footer a {
	color: rgba(255,255,255,.82);
	font-weight: 700;
	text-decoration: none;
}

.aen-site-footer a:hover {
	color: #c5aa4e;
}

@media (max-width: 1080px) {
	body.login.aen-core-login {
		grid-template-columns: 1fr 460px;
	}

	.aen-login-shell {
		grid-template-columns: 1fr 460px;
	}

	.aen-login-brand {
		padding-inline: 3.5rem;
	}

	.aen-login-panel {
		padding-inline: 2.8rem;
	}

	.aen-partner-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aen-partner-hero-grid {
		grid-template-columns: 340px minmax(0, 1fr);
		gap: 4rem;
	}

	.aen-profile-portrait {
		height: 400px;
	}

	.aen-partner-content-grid {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 3rem;
	}
}

@media (max-width: 820px) {
	body.login.aen-core-login {
		display: flex;
		flex-direction: column;
		background: white;
	}

	body.login.aen-core-login #login {
		flex: 1 0 auto;
		align-self: auto;
		box-sizing: border-box;
		width: min(100%, 430px);
		margin: 0 auto;
		padding: 2.5rem 1.5rem 2rem;
	}

	.aen-core-mobile-brand {
		display: block;
		margin-bottom: 4rem;
	}

	.aen-core-login-footer {
		flex-wrap: wrap;
		padding-bottom: 1.5rem;
	}

	.aen-login-shell {
		display: block;
		background: white;
	}

	.aen-login-brand {
		display: none;
	}

	.aen-login-panel {
		min-height: 100vh;
		padding: 2.5rem 1.5rem 1.5rem;
		border: 0;
	}

	.aen-mobile-brand {
		display: flex;
		align-items: center;
		gap: .65rem;
		margin-bottom: 4rem;
		color: var(--ae-headline);
		font-size: .78rem;
		font-weight: 850;
	}

	.aen-header-user > div:nth-child(2) {
		display: none;
	}

	.aen-network-hero-inner {
		min-height: 290px;
	}

	.aen-hero-seal {
		width: 120px;
		height: 120px;
		margin-left: 2rem;
	}

	.aen-hero-seal span {
		font-size: 2rem;
	}

	.aen-partner-hero-grid {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 3rem;
	}

	.aen-profile-portrait {
		height: 350px;
	}

	.aen-partner-content-grid {
		grid-template-columns: 1fr;
	}

	.aen-contact-card {
		position: static;
	}
}

@media (max-width: 680px) {
	.aen-container {
		width: calc(100% - 2rem);
	}

	.aen-brand-lockup small {
		display: none;
	}

	.aen-brand-lockup strong {
		font-size: .76rem;
	}

	.aen-header-user {
		gap: .35rem;
	}

	.aen-logout {
		margin-left: 0;
		padding-inline: .65rem;
	}

	.aen-network-hero-inner {
		display: block;
		min-height: auto;
		padding-top: 3.5rem;
		padding-bottom: 3.8rem;
	}

	.aen-network-hero h1 {
		font-size: 2.9rem;
	}

	.aen-network-hero-inner > div:first-child > p:last-child {
		font-size: .88rem;
	}

	.aen-hero-seal {
		display: none;
	}

	.aen-quicklinks-section {
		padding-top: 2.2rem;
	}

	.aen-quicklinks-grid {
		grid-template-columns: 1fr;
	}

	.aen-quicklink {
		min-height: 70px;
	}

	.aen-directory-section {
		padding: 3.8rem 0 4.8rem;
	}

	.aen-quicklinks-section + .aen-directory-section {
		padding-top: 2.6rem;
	}

	.aen-directory-heading {
		display: block;
	}

	.aen-directory-heading > p {
		margin-top: .8rem;
		text-align: left;
	}

	.aen-filter-bar {
		grid-template-columns: 1fr;
	}

	.aen-partner-grid {
		grid-template-columns: 1fr;
	}

	.aen-card-media {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.aen-partner-topbar .aen-container {
		min-height: 48px;
	}

	.aen-partner-topbar span {
		display: none;
	}

	.aen-partner-hero-grid {
		display: flex;
		flex-direction: column;
		gap: 2.6rem;
		padding-top: 2.2rem;
		padding-bottom: 3.2rem;
	}

	.aen-profile-portrait {
		width: calc(100% - 1rem);
		height: auto;
		aspect-ratio: 4 / 3;
		align-self: flex-start;
	}

	.aen-profile-logo {
		right: -1rem;
	}

	.aen-profile-intro h1 {
		font-size: 2.2rem;
	}

	.aen-partner-content-section {
		padding: 3.8rem 0 4.8rem;
	}

	.aen-benefits-panel,
	.aen-about-panel,
	.aen-contact-card {
		padding: 1.6rem;
	}

	.aen-site-footer .aen-container {
		display: grid;
		gap: 1rem;
	}

	.aen-footer-meta {
		align-items: flex-start;
	}

	.aen-footer-logo {
		width: 68px;
		height: 68px;
	}

	.aen-site-footer p {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Authenticated actions and events dialog. */
body.aen-announcements-open {
	overflow: hidden;
}

.aen-announcements-modal {
	width: min(860px, calc(100% - 2rem));
	max-width: none;
	max-height: calc(100vh - 2rem);
	max-height: calc(100dvh - 2rem);
	margin: auto;
	padding: 0;
	border: 0;
	border-radius: 20px;
	background: var(--ae-surface);
	box-shadow: 0 24px 100px rgba(0,0,0,.25);
	color: var(--ae-copy-strong);
	opacity: 0;
	overscroll-behavior: contain;
	transform: translateY(10px) scale(.985);
	transition: opacity .22s ease, transform .22s ease;
}

.aen-announcements-modal.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.aen-announcements-modal.is-closing {
	pointer-events: none;
}

.aen-announcements-modal::backdrop {
	background: rgba(17,18,15,.26);
	backdrop-filter: blur(1px);
	opacity: 0;
	transition: opacity .22s ease;
}

.aen-announcements-modal.is-visible::backdrop {
	opacity: 1;
}

.aen-announcements-header {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--ae-surface);
}

.aen-announcements-header h2 {
	margin: 0;
	padding-right: 2.5rem;
	color: var(--ae-headline);
	font-size: 1.2rem;
	font-weight: 850;
	letter-spacing: -.035em;
}

.aen-announcements-close,
.aen-announcements-arrow {
	display: inline-grid;
	place-items: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	border: var(--ae-border);
	border-radius: 50%;
	background: var(--ae-bg-soft);
	color: var(--ae-headline);
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
}

.aen-announcements-close {
	position: absolute;
	top: .5rem;
	right: .5rem;
	width: 36px;
	height: 36px;
	border-color: transparent;
	background: transparent;
	opacity: .55;
	font-size: 1.45rem;
	transition: background-color .16s ease, opacity .16s ease;
}

.aen-announcements-arrow {
	width: 36px;
	height: 36px;
	border-color: rgba(0,0,0,.1);
	background: transparent;
	opacity: .62;
	font-size: 1.05rem;
	transition: background-color .16s ease, opacity .16s ease;
}

.aen-announcements-arrow:hover,
.aen-announcements-arrow:focus-visible {
	background: var(--ae-bg-hover);
	opacity: .85;
}

.aen-announcements-close:hover {
	background: var(--ae-bg-soft);
	opacity: .85;
}

.aen-announcement-slide {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	min-height: 320px;
	padding: 1.5rem;
	animation: aen-announcement-in .25s ease-out;
}

.aen-announcement-visual {
	display: grid;
	place-items: center;
	width: 100%;
	height: clamp(240px, 44vw, 400px);
	overflow: hidden;
	border-radius: var(--ae-radius-small);
	background: var(--ae-bg-soft);
}

.aen-announcement-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aen-announcement-text {
	width: 100%;
	overflow-wrap: anywhere;
	font-size: .9rem;
	font-weight: 500;
	line-height: 1.75;
}

.aen-announcement-text > :first-child { margin-top: 0; }
.aen-announcement-text > :last-child { margin-bottom: 0; }
.aen-announcement-slide > .aen-primary-button { max-width: 100%; }

.aen-announcements-navigation {
	display: flex;
	align-items: center;
	gap: .65rem;
	padding: 1.5rem;
}

.aen-announcements-count {
	min-width: 3rem;
	text-align: center;
	opacity: .68;
	font-size: .75rem;
	font-variant-numeric: tabular-nums;
}

.aen-announcements-pause {
	min-height: 44px;
	margin-left: auto;
	padding: .35rem .45rem;
	border: 0;
	background: transparent;
	color: var(--ae-copy-strong);
	opacity: .42;
	font-size: .68rem;
	font-weight: 550;
	cursor: pointer;
	transition: opacity .16s ease;
}

.aen-announcements-pause:hover,
.aen-announcements-pause:focus-visible {
	opacity: .7;
}

.aen-announcements-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--ae-surface);
	font-size: .8rem;
}

.aen-announcements-preferences {
	min-width: 0;
}

.aen-announcements-footer label {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	min-height: 32px;
	cursor: pointer;
}

.aen-announcements-footer input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--ae-gold);
}

.aen-announcements-storage-error {
	margin: .5rem 0 0;
	color: #a43e2f;
}

.aen-announcements-confirm {
	flex-shrink: 0;
	min-height: 42px;
	padding: .55rem 1.25rem;
	background: #1d1d1f;
	box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.aen-announcements-confirm:hover {
	background: #000;
	box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

@keyframes aen-announcement-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
	.aen-announcement-visual { height: clamp(200px, 62vw, 280px); }
	.aen-announcement-slide { min-height: 0; padding: 1.5rem; }
	.aen-announcements-navigation { flex-wrap: wrap; }
	.aen-announcements-pause { flex-basis: 100%; margin-left: 0; }
	.aen-announcements-footer { align-items: stretch; flex-direction: column; }
	.aen-announcements-confirm { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.aen-announcement-slide { animation: none; }
}
