/* Asia Education Journal visual system. */

body {
	background: var(--aej-paper);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--aej-serif);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

p {
	max-width: 68ch;
}

button,
a,
input,
textarea {
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid rgba(197, 163, 91, 0.55);
	outline-offset: 3px;
}

/* Header */
.aej-topbar {
	color: #ffffff;
	background: var(--aej-navy-deep);
	font-size: 11px;
}

.aej-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 34px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.aej-topbar-links,
.aej-topbar-social {
	display: flex;
	align-items: center;
	gap: 18px;
}

.aej-topbar a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 10px;
	font-weight: 600;
	text-decoration: none;
}

.aej-topbar a:hover,
.aej-topbar a:focus {
	color: var(--aej-gold);
}

.aej-topbar-social {
	gap: 8px;
}

.aej-topbar-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	font-size: 9px;
	font-weight: 800;
}

.aej-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid var(--aej-line);
	box-shadow: 0 8px 28px rgba(11, 33, 72, 0.06);
	backdrop-filter: blur(14px);
}

.aej-header-inner {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 94px;
	}

.aej-brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.aej-brand-logo {
	display: block;
	width: auto;
	max-width: 244px;
	height: 68px;
	object-fit: contain;
}

.aej-brand .custom-logo {
	display: block;
	width: auto;
	max-width: 244px;
	height: 68px;
	object-fit: contain;
}

.aej-primary-nav {
	min-width: 0;
}

.aej-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 2px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aej-menu li {
	position: relative;
}

.aej-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: var(--aej-navy);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.aej-menu a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 2px;
	content: '';
	background: var(--aej-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.aej-menu a:hover,
.aej-menu a:focus,
.aej-menu .current-menu-item > a,
.aej-menu .current_page_item > a,
.aej-menu .current-menu-ancestor > a {
	color: var(--aej-gold-deep);
}

.aej-menu a:hover::after,
.aej-menu a:focus::after,
.aej-menu .current-menu-item > a::after,
.aej-menu .current_page_item > a::after,
.aej-menu .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.aej-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.aej-icon-button,
.aej-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: var(--aej-navy);
	background: transparent;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
}

.aej-icon-button:hover,
.aej-icon-button:focus,
.aej-menu-toggle:hover,
.aej-menu-toggle:focus {
	color: var(--aej-gold-deep);
	background: var(--aej-soft);
	border-color: var(--aej-line);
}

.aej-menu-toggle {
	display: none;
	font-size: 19px;
}

.aej-search-panel,
.aej-mobile-panel {
	background: #ffffff;
	border-top: 1px solid var(--aej-line);
	box-shadow: 0 16px 30px rgba(11, 33, 72, 0.08);
}

.aej-search-panel[hidden],
.aej-mobile-panel[hidden] {
	display: none;
}

.aej-search-inner {
	display: flex;
	justify-content: flex-end;
	padding-top: 14px;
	padding-bottom: 14px;
}

.aej-header-search-form,
.aej-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	width: min(100%, 620px);
	border: 1px solid var(--aej-line);
}

.aej-header-search-form {
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
}

.aej-header-search-form input,
.aej-search-form input {
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	color: var(--aej-ink);
	background: #ffffff;
	border: 0;
	box-shadow: none;
}

.aej-header-search-form button,
.aej-search-form button {
	width: 46px;
	height: 46px;
	padding: 0;
	color: #ffffff;
	background: var(--aej-navy);
	border: 0;
	cursor: pointer;
	font-size: 20px;
}

.aej-header-search-form button:hover,
.aej-header-search-form button:focus,
.aej-search-form button:hover,
.aej-search-form button:focus {
	background: var(--aej-gold-deep);
}

.aej-header-search-close {
	margin-left: 6px;
	color: var(--aej-navy) !important;
	background: var(--aej-soft) !important;
}

.aej-mobile-menu {
	margin: 0;
	padding: 12px 18px 26px;
	list-style: none;
}

.aej-mobile-menu li {
	border-bottom: 1px solid var(--aej-line);
}

.aej-mobile-menu a {
	display: flex;
	align-items: center;
	min-height: 48px;
	color: var(--aej-navy);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

/* Shared editorial primitives */
.aej-section {
	padding: 84px 0 96px;
}

.aej-section--soft {
	background: var(--aej-soft);
}

.aej-eyebrow {
	margin: 0 0 14px;
	color: var(--aej-gold-deep);
	font-family: var(--aej-sans);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.aej-section-heading {
	max-width: 720px;
	margin: 0 0 16px;
	color: var(--aej-navy);
	font-size: clamp(32px, 4vw, 52px);
	text-wrap: balance;
}

.aej-section-intro {
	max-width: 620px;
	margin: 0;
	color: var(--aej-body);
	font-size: 16px;
	line-height: 1.75;
}

.aej-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 12px 22px;
	border: 1px solid transparent;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.aej-button:hover,
.aej-button:focus {
	transform: translateY(-2px);
}

.aej-button--navy {
	color: #ffffff;
	background: var(--aej-navy);
}

.aej-button--navy:hover,
.aej-button--navy:focus {
	color: #ffffff;
	background: var(--aej-gold-deep);
}

.aej-button--gold {
	color: var(--aej-navy);
	background: var(--aej-gold);
}

.aej-button--gold:hover,
.aej-button--gold:focus {
	color: #ffffff;
	background: var(--aej-navy);
}

.aej-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--aej-gold-deep);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.aej-text-link:hover,
.aej-text-link:focus {
	color: var(--aej-navy);
}

/* Home */
.aej-home-hero {
	padding: 74px 0 86px;
	background: linear-gradient(125deg, #f6f8fb 0%, #ffffff 56%, #f4f7fa 100%);
}

.aej-home-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
	align-items: center;
	gap: clamp(40px, 7vw, 100px);
}

.aej-home-hero h1 {
	max-width: 630px;
	margin: 0 0 22px;
	color: var(--aej-navy);
	font-size: clamp(42px, 6vw, 78px);
	line-height: 1.01;
	text-wrap: balance;
}

.aej-home-hero-copy > p:not(.aej-eyebrow) {
	max-width: 530px;
	margin: 0 0 28px;
	color: var(--aej-body);
	font-size: 16px;
	line-height: 1.8;
}

.aej-home-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.aej-hero-media {
	position: relative;
	min-height: 430px;
	background: var(--aej-navy);
	box-shadow: 22px 24px 0 rgba(197, 163, 91, 0.17);
}

.aej-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.aej-hero-caption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	max-width: 220px;
	padding: 16px 18px;
	color: #ffffff;
	background: rgba(6, 21, 47, 0.9);
	border-left: 3px solid var(--aej-gold);
}

.aej-hero-caption strong,
.aej-hero-caption span {
	display: block;
}

.aej-hero-caption strong {
	margin-bottom: 5px;
	font-family: var(--aej-serif);
	font-size: 20px;
	font-weight: 600;
}

.aej-hero-caption span {
	color: rgba(255, 255, 255, 0.76);
	font-size: 11px;
	line-height: 1.5;
}

.aej-topic-strip {
	padding: 46px 0;
	border-bottom: 1px solid var(--aej-line);
}

.aej-topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.aej-topic-card {
	padding: 6px 28px;
	border-left: 1px solid var(--aej-line);
}

.aej-topic-card:first-child {
	padding-left: 0;
	border-left: 0;
}

.aej-topic-card h2 {
	margin: 0 0 6px;
	color: var(--aej-navy);
	font-size: 20px;
}

.aej-topic-card p {
	margin: 0;
	color: var(--aej-body);
	font-size: 13px;
	line-height: 1.55;
}

.aej-featured-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
	gap: 54px;
	align-items: end;
}

.aej-featured-card {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
	align-items: stretch;
	background: var(--aej-navy);
	box-shadow: 0 18px 42px rgba(11, 33, 72, 0.12);
}

.aej-featured-media {
	display: block;
	min-height: 360px;
	overflow: hidden;
	background: var(--aej-navy-deep);
}

.aej-featured-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	transition: transform 300ms ease;
}

.aej-featured-media:hover .aej-featured-image,
.aej-featured-media:focus .aej-featured-image {
	transform: scale(1.04);
}

.aej-featured-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 40px 38px;
	color: #ffffff;
}

.aej-featured-body .aej-post-meta {
	margin-bottom: 14px;
}

.aej-featured-body .aej-post-category {
	color: var(--aej-gold);
}

.aej-featured-body time {
	color: rgba(255, 255, 255, 0.62);
}

.aej-featured-body h2 {
	margin: 0 0 16px;
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1.1;
}

.aej-featured-body h2 a {
	text-decoration: none;
}

.aej-featured-body h2 a:hover,
.aej-featured-body h2 a:focus {
	color: var(--aej-gold);
}

.aej-featured-body p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.77);
	font-size: 14px;
	line-height: 1.7;
}

.aej-featured-body .aej-text-link {
	margin-top: auto;
	color: var(--aej-gold);
}

.aej-home-side-note {
	padding: 0 0 12px;
	border-bottom: 1px solid var(--aej-line);
}

.aej-home-side-note h2 {
	margin: 0 0 12px;
	color: var(--aej-navy);
	font-size: 29px;
}

.aej-home-side-note p {
	margin: 0 0 18px;
	color: var(--aej-body);
	font-size: 14px;
	line-height: 1.7;
}

.aej-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.aej-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--aej-line);
	box-shadow: 0 8px 22px rgba(11, 33, 72, 0.04);
}

.aej-card-media {
	display: block;
	overflow: hidden;
	background: var(--aej-navy-deep);
}

.aej-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 260ms ease;
}

.aej-card-media:hover .aej-card-image,
.aej-card-media:focus .aej-card-image {
	transform: scale(1.04);
}

.aej-card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 236px;
	padding: 22px 22px 24px;
}

.aej-post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	margin: 0 0 13px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
	text-transform: uppercase;
}

.aej-post-category {
	color: var(--aej-gold-deep);
}

.aej-post-meta time {
	color: var(--aej-muted);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
}

.aej-card-title {
	margin: 0 0 11px;
	color: var(--aej-navy);
	font-size: 21px;
	line-height: 1.2;
}

.aej-card-title a {
	text-decoration: none;
}

.aej-card-title a:hover,
.aej-card-title a:focus {
	color: var(--aej-gold-deep);
}

.aej-card-body p {
	margin: 0 0 18px;
	color: var(--aej-body);
	font-size: 13px;
	line-height: 1.65;
}

.aej-card-body .aej-text-link {
	margin-top: auto;
}

.aej-card--sample {
	background: #fbfcfd;
}

.aej-newsletter-cta {
	color: #ffffff;
	background: var(--aej-navy);
}

.aej-newsletter-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 42px;
	align-items: center;
}

.aej-newsletter-cta h2 {
	max-width: 680px;
	margin: 0 0 10px;
	font-size: clamp(30px, 4vw, 50px);
}

.aej-newsletter-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 15px;
}

/* Inner pages and archives */
.aej-page-hero {
	padding: 62px 0 74px;
	color: #ffffff;
	background: linear-gradient(104deg, rgba(6, 21, 47, 0.98), rgba(11, 33, 72, 0.78)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.aej-page-hero h1 {
	max-width: 720px;
	margin: 0 0 14px;
	font-size: clamp(38px, 5vw, 64px);
}

.aej-page-hero p {
	max-width: 610px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 16px;
}

.aej-breadcrumbs {
	background: #ffffff;
	border-bottom: 1px solid var(--aej-line);
}

.aej-breadcrumbs .aej-shell {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	min-height: 44px;
	color: var(--aej-muted);
	font-size: 11px;
}

.aej-breadcrumbs a {
	text-decoration: none;
}

.aej-breadcrumbs a:hover,
.aej-breadcrumbs a:focus {
	color: var(--aej-gold-deep);
}

.aej-archive-intro {
	padding-top: 76px;
	padding-bottom: 54px;
	background: var(--aej-soft);
}

.aej-archive-intro--image {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	min-height: 330px;
	margin-left: calc(50% - 50vw);
	color: #ffffff;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.aej-archive-intro--image .aej-shell {
	position: relative;
	z-index: 1;
}

.aej-archive-intro--image .aej-eyebrow {
	color: var(--aej-gold);
}

.aej-archive-intro--image h1 {
	color: #ffffff;
}

.aej-archive-intro--image .aej-intro-copy {
	color: rgba(255, 255, 255, 0.82);
}

.aej-hero-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 48px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 11px;
}

.aej-hero-breadcrumbs a {
	color: #ffffff;
	text-decoration: none;
}

.aej-hero-breadcrumbs a:hover,
.aej-hero-breadcrumbs a:focus {
	color: var(--aej-gold);
}

.aej-archive-intro h1 {
	max-width: 850px;
	margin: 0 0 16px;
	color: var(--aej-navy);
	font-size: clamp(38px, 5vw, 66px);
	text-wrap: balance;
}

.aej-archive-intro.aej-archive-intro--image h1 {
	color: #ffffff;
}

.aej-intro-copy {
	max-width: 620px;
	margin: 0;
	color: var(--aej-body);
	font-size: 16px;
	line-height: 1.75;
}

.aej-archive-shell {
	padding-top: 34px;
	padding-bottom: 92px;
}

.aej-category-tabs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin-bottom: 38px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--aej-line);
}

.aej-category-tabs a {
	position: relative;
	padding: 8px 0;
	color: var(--aej-body);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.aej-category-tabs a::after {
	position: absolute;
	right: 0;
	bottom: -17px;
	left: 0;
	height: 2px;
	content: '';
	background: var(--aej-gold);
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.aej-category-tabs a:hover,
.aej-category-tabs a:focus,
.aej-category-tabs a.is-active {
	color: var(--aej-navy);
}

.aej-category-tabs a:hover::after,
.aej-category-tabs a:focus::after,
.aej-category-tabs a.is-active::after {
	transform: scaleX(1);
}

.aej-archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 56px;
	align-items: start;
}

.aej-archive-layout--full {
	display: block;
}

.aej-archive-feed .aej-card-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aej-archive-layout .aej-card-grid {
	gap: 24px;
}

.aej-sidebar {
	position: sticky;
	top: 118px;
}

.aej-sidebar-block {
	margin-bottom: 34px;
}

.aej-sidebar-block h2,
.aej-sidebar-newsletter h2 {
	margin: 0 0 16px;
	color: var(--aej-navy);
	font-size: 22px;
}

.aej-search-form {
	width: 100%;
}

.aej-search-form input {
	height: 44px;
	padding-left: 12px;
	font-size: 12px;
	border: 1px solid var(--aej-line);
	border-right: 0;
}

.aej-search-form button {
	width: 42px;
	height: 44px;
	font-size: 19px;
}

.aej-topic-list,
.aej-latest-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.aej-topic-list li {
	border-bottom: 1px solid var(--aej-line);
}

.aej-topic-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 42px;
	color: var(--aej-body);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.aej-topic-list a:hover,
.aej-topic-list a:focus {
	color: var(--aej-gold-deep);
	padding-left: 4px;
}

.aej-latest-list {
	display: grid;
	gap: 16px;
}

.aej-latest-list li {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.aej-latest-media {
	display: block;
	overflow: hidden;
	background: var(--aej-navy-deep);
}

.aej-latest-image {
	display: block;
	width: 76px;
	height: 62px;
	object-fit: cover;
}

.aej-latest-title {
	display: block;
	margin: -3px 0 5px;
	color: var(--aej-navy);
	font-family: var(--aej-serif);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.28;
	text-decoration: none;
}

.aej-latest-title:hover,
.aej-latest-title:focus {
	color: var(--aej-gold-deep);
}

.aej-latest-list time {
	color: var(--aej-muted);
	font-size: 10px;
}

.aej-sidebar-newsletter {
	padding: 24px 22px 25px;
	color: #ffffff;
	background: var(--aej-navy);
}

.aej-sidebar-newsletter h2 {
	color: #ffffff;
	font-size: 26px;
}

.aej-sidebar-newsletter p:not(.aej-eyebrow) {
	margin: 0 0 20px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
	line-height: 1.65;
}

.aej-sidebar-newsletter .aej-eyebrow {
	color: var(--aej-gold);
}

.aej-pagination {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.aej-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aej-pagination a,
.aej-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	color: var(--aej-navy);
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid var(--aej-line);
}

.aej-pagination a:hover,
.aej-pagination a:focus,
.aej-pagination .current {
	color: #ffffff;
	background: var(--aej-navy);
	border-color: var(--aej-navy);
}

.aej-empty-state {
	padding: 56px 28px;
	text-align: center;
	background: var(--aej-soft);
	border: 1px solid var(--aej-line);
}

.aej-empty-state .aej-eyebrow,
.aej-empty-state p:not(.aej-eyebrow) {
	margin-right: auto;
	margin-left: auto;
}

.aej-empty-state h2 {
	margin: 0 0 10px;
	color: var(--aej-navy);
	font-size: 30px;
}

/* About */
.aej-about-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 70px;
	align-items: center;
}

.aej-about-media {
	position: relative;
}

.aej-about-media::after {
	position: absolute;
	right: -18px;
	bottom: -18px;
	width: 58%;
	height: 58%;
	content: '';
	border-right: 2px solid var(--aej-gold);
	border-bottom: 2px solid var(--aej-gold);
	pointer-events: none;
}

.aej-about-media img {
	display: block;
	width: 100%;
	height: 470px;
	object-fit: cover;
}

.aej-about-copy h2 {
	margin: 0 0 16px;
	color: var(--aej-navy);
	font-size: clamp(32px, 4vw, 50px);
}

.aej-about-text p,
.aej-about-copy > p {
	margin: 0 0 15px;
	color: var(--aej-body);
	font-size: 15px;
	line-height: 1.8;
}

.aej-value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--aej-line);
}

.aej-value-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 12px;
	color: var(--aej-gold-deep);
	background: rgba(197, 163, 91, 0.15);
	font-size: 17px;
}

.aej-value-title {
	margin: 0 0 7px;
	color: var(--aej-navy);
	font-size: 20px;
}

.aej-value-text {
	margin: 0;
	color: var(--aej-body);
	font-size: 13px;
	line-height: 1.6;
}

.aej-dark-band {
	color: #ffffff;
	background: var(--aej-navy-deep);
}

.aej-dark-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.aej-dark-grid > div {
	padding: 0 30px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.aej-dark-grid > div:first-child {
	padding-left: 0;
	border-left: 0;
}

.aej-dark-grid h2 {
	margin: 0 0 11px;
	color: #ffffff;
	font-size: 23px;
}

.aej-dark-grid p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.65;
}

/* Contact */
.aej-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
	gap: 76px;
	align-items: start;
}

.aej-contact-info h2,
.aej-contact-form-card h2 {
	margin: 0 0 12px;
	color: var(--aej-navy);
	font-size: clamp(32px, 4vw, 48px);
}

.aej-contact-info > p {
	margin: 0 0 34px;
	color: var(--aej-body);
	font-size: 15px;
	line-height: 1.75;
}

.aej-contact-list {
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aej-contact-item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.aej-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--aej-gold-deep);
	background: var(--aej-soft);
	font-size: 17px;
}

.aej-contact-label,
.aej-contact-value {
	display: block;
}

.aej-contact-label {
	margin-bottom: 3px;
	color: var(--aej-navy);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.aej-contact-value {
	color: var(--aej-body);
	font-size: 13px;
	line-height: 1.65;
}

.aej-contact-value a {
	text-decoration: none;
}

.aej-contact-value a:hover,
.aej-contact-value a:focus {
	color: var(--aej-gold-deep);
}

.aej-contact-note {
	display: block;
	color: var(--aej-muted);
	font-size: 11px;
}

.aej-contact-follow {
	margin-top: 34px;
	padding-top: 24px;
	border-top: 1px solid var(--aej-line);
}

.aej-contact-follow h3 {
	margin: 0 0 12px;
	color: var(--aej-navy);
	font-size: 20px;
}

.aej-contact-social {
	display: flex;
	gap: 8px;
}

.aej-social-square {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #ffffff;
	background: var(--aej-navy);
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
}

.aej-social-square:hover,
.aej-social-square:focus {
	color: var(--aej-navy);
	background: var(--aej-gold);
}

.aej-contact-form-card {
	padding: 34px 36px 38px;
	background: #ffffff;
	border: 1px solid var(--aej-line);
	box-shadow: 0 18px 38px rgba(11, 33, 72, 0.06);
}

.aej-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.aej-form-field {
	margin-bottom: 18px;
}

.aej-form-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--aej-navy);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.aej-form-field input,
.aej-form-field textarea {
	display: block;
	width: 100%;
	padding: 12px 14px;
	color: var(--aej-ink);
	background: #ffffff;
	border: 1px solid var(--aej-line);
	border-radius: 0;
}

.aej-form-field input {
	height: 48px;
}

.aej-form-field textarea {
	min-height: 150px;
	resize: vertical;
}

.aej-form-field input:focus,
.aej-form-field textarea:focus {
	border-color: var(--aej-gold);
	box-shadow: 0 0 0 3px rgba(197, 163, 91, 0.16);
	outline: 0;
}

.aej-form-submit {
	border: 0;
	cursor: pointer;
}

.aej-form-status {
	margin: 0 0 22px;
	padding: 12px 14px;
	color: var(--aej-navy);
	background: rgba(197, 163, 91, 0.18);
	font-size: 13px;
}

/* Single article */
.aej-article-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 58px;
	align-items: start;
	padding-top: 70px;
	padding-bottom: 92px;
}

.aej-article-header {
	max-width: 860px;
	margin-bottom: 28px;
}

.aej-article-title {
	margin: 0 0 18px;
	color: var(--aej-navy);
	font-size: clamp(38px, 5.5vw, 70px);
	line-height: 1.04;
	text-wrap: balance;
}

.aej-article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 20px;
	color: var(--aej-muted);
	font-size: 11px;
}

.aej-article-meta .aej-post-category {
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aej-article-featured {
	display: block;
	width: 100%;
	max-height: 550px;
	margin-bottom: 30px;
	object-fit: cover;
}

.aej-article-content {
	max-width: 760px;
	color: var(--aej-body);
	font-size: 16px;
	line-height: 1.85;
}

.aej-article-content > *:first-child {
	margin-top: 0;
}

.aej-article-content h2,
.aej-article-content h3,
.aej-article-content h4 {
	margin: 36px 0 12px;
	color: var(--aej-navy);
}

.aej-article-content h2 {
	font-size: 32px;
}

.aej-article-content h3 {
	font-size: 25px;
}

.aej-article-content a {
	color: var(--aej-gold-deep);
	text-underline-offset: 3px;
}

.aej-article-content blockquote {
	margin: 30px 0;
	padding: 8px 24px;
	color: var(--aej-navy);
	border-left: 3px solid var(--aej-gold);
	font-family: var(--aej-serif);
	font-size: 24px;
	line-height: 1.45;
}

.aej-article-content img {
	display: block;
	margin: 28px 0;
}

.aej-article-share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid var(--aej-line);
}

.aej-article-share > span {
	margin-right: 5px;
	color: var(--aej-navy);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.aej-article-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #ffffff;
	background: var(--aej-navy);
	font-size: 10px;
	font-weight: 800;
	text-decoration: none;
}

.aej-article-share a:hover,
.aej-article-share a:focus {
	color: var(--aej-navy);
	background: var(--aej-gold);
}

/* Footer */
.aej-site-footer {
	color: #ffffff;
	background: var(--aej-navy-deep);
	border-top: 3px solid var(--aej-gold);
}

.aej-footer-inner {
	padding-top: 58px;
	padding-bottom: 26px;
}

.aej-footer-main {
	display: grid;
	grid-template-columns: minmax(280px, 1.45fr) minmax(150px, 0.65fr) minmax(210px, 0.85fr);
	gap: 58px;
	align-items: start;
}

.aej-footer-mark {
	display: inline-block;
}

.aej-footer-logo {
	display: block;
	width: 270px;
	height: auto;
}

.aej-footer-intro {
	max-width: 440px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 13px;
	line-height: 1.75;
}

.aej-footer-title,
.aej-footer-widget-title {
	margin: 0 0 16px;
	color: #ffffff;
	font-family: var(--aej-sans);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.aej-footer-col ul,
.aej-footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.aej-footer-col li,
.aej-footer-widget li {
	margin-bottom: 9px;
}

.aej-footer-col a,
.aej-footer-widget a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	text-decoration: none;
}

.aej-footer-col a:hover,
.aej-footer-col a:focus,
.aej-footer-widget a:hover,
.aej-footer-widget a:focus {
	color: var(--aej-gold);
}

.aej-footer-col-text {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 1.7;
}

.aej-footer-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--aej-gold) !important;
	font-size: 11px !important;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.aej-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 46px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.aej-footer-copy,
.aej-footer-top-link {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
}

.aej-footer-top-link {
	text-decoration: none;
}

.aej-footer-top-link:hover,
.aej-footer-top-link:focus {
	color: var(--aej-gold);
}

/* Homepage post records shortcode */
.aej-home-shortcode {
	padding: 48px 0 58px;
}

.aej-home-featured-shortcode,
.aej-home-trending-shortcode {
	background: #ffffff;
	border-top: 1px solid var(--aej-line);
}

.aej-home-latest-shortcode,
.aej-home-editors-pick-shortcode {
	background: #f7f8fa;
	border-top: 1px solid var(--aej-line);
}

.aej-home-editor-media {
	position: relative;
}

.aej-home-editor-label {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 7px 10px;
	color: #ffffff;
	background: var(--aej-gold-deep);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: uppercase;
}

.aej-home-posts-top {
	padding: 52px 0 58px;
	background: #ffffff;
	border-top: 4px solid var(--aej-navy-deep);
}

.aej-home-posts-top-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(285px, 1fr);
	gap: 34px;
}

.aej-home-heading-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
}

.aej-home-heading-row h2 {
	margin: 0;
	color: var(--aej-navy);
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
}

.aej-home-heading-row span {
	display: block;
	width: 44px;
	height: 2px;
	background: var(--aej-gold);
}

.aej-home-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.aej-home-featured-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #d9e0e9;
	border-radius: 3px;
}

.aej-home-featured-media,
.aej-home-editor-media {
	display: block;
	overflow: hidden;
	background: var(--aej-navy-deep);
}

.aej-home-featured-image {
	display: block;
	width: 100%;
	aspect-ratio: 1.35 / 1;
	object-fit: cover;
	transition: transform 260ms ease;
}

.aej-home-featured-media:hover .aej-home-featured-image,
.aej-home-featured-media:focus .aej-home-featured-image,
.aej-home-editor-media:hover .aej-home-editor-image,
.aej-home-editor-media:focus .aej-home-editor-image {
	transform: scale(1.04);
}

.aej-home-featured-body {
	padding: 15px 14px 16px;
}

.aej-home-post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 10px;
	line-height: 1.4;
	text-transform: uppercase;
}

.aej-home-post-category {
	color: var(--aej-gold-deep);
	font-weight: 800;
	letter-spacing: 0.05em;
}

.aej-home-post-date {
	color: var(--aej-muted);
	font-size: 10px;
	text-transform: none;
}

.aej-home-featured-body h3,
.aej-home-latest-body h3,
.aej-home-editor-body h3 {
	margin: 0;
	color: var(--aej-navy);
	font-size: 18px;
	line-height: 1.3;
}

.aej-home-featured-body h3 a,
.aej-home-trending-body h3 a,
.aej-home-latest-body h3 a,
.aej-home-editor-body h3 a {
	text-decoration: none;
}

.aej-home-featured-body h3 a:hover,
.aej-home-featured-body h3 a:focus,
.aej-home-trending-body h3 a:hover,
.aej-home-trending-body h3 a:focus,
.aej-home-latest-body h3 a:hover,
.aej-home-latest-body h3 a:focus,
.aej-home-editor-body h3 a:hover,
.aej-home-editor-body h3 a:focus {
	color: var(--aej-gold-deep);
}

.aej-home-post-byline {
	margin: 16px 0 0;
	color: var(--aej-muted);
	font-size: 11px;
}

.aej-home-view-all,
.aej-home-trending-button {
	display: block;
	width: fit-content;
	margin: 22px auto 0;
	padding: 13px 36px;
	color: var(--aej-navy);
	border: 1px solid var(--aej-navy);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.aej-home-view-all:hover,
.aej-home-view-all:focus {
	color: #ffffff;
	background: var(--aej-navy);
}

.aej-home-trending-list {
	display: grid;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aej-home-trending-item {
	display: grid;
	grid-template-columns: 38px 84px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.aej-home-trending-number {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: #ffffff;
	background: var(--aej-gold-deep);
	font-size: 16px;
}

.aej-home-trending-media {
	display: block;
	overflow: hidden;
	background: var(--aej-navy-deep);
}

.aej-home-trending-image {
	display: block;
	width: 100%;
	height: 78px;
	object-fit: cover;
}

.aej-home-trending-body h3 {
	margin: 0;
	color: var(--aej-navy);
	font-size: 15px;
	line-height: 1.3;
}

.aej-home-trending-body time {
	display: block;
	margin-top: 8px;
	color: var(--aej-muted);
	font-size: 10px;
}

.aej-home-trending-button {
	width: 100%;
	margin-top: 22px;
	color: #ffffff;
	background: var(--aej-navy);
	border-color: var(--aej-navy);
	text-align: center;
}

.aej-home-trending-button:hover,
.aej-home-trending-button:focus {
	color: var(--aej-navy);
	background: #ffffff;
}

.aej-home-posts-bottom {
	padding: 48px 0 64px;
	background: #f7f8fa;
	border-top: 1px solid var(--aej-line);
}

.aej-home-posts-bottom-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: 58px;
}

.aej-home-latest-list {
	display: grid;
	gap: 20px;
}

.aej-home-latest-item {
	display: grid;
	grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--aej-line);
}

.aej-home-latest-media {
	display: block;
	overflow: hidden;
	background: var(--aej-navy-deep);
}

.aej-home-latest-image {
	display: block;
	width: 100%;
	height: 170px;
	object-fit: cover;
	transition: transform 260ms ease;
}

.aej-home-latest-media:hover .aej-home-latest-image,
.aej-home-latest-media:focus .aej-home-latest-image {
	transform: scale(1.04);
}

.aej-home-latest-body .aej-home-post-meta {
	margin-bottom: 14px;
}

.aej-home-latest-body p:not(.aej-home-post-byline) {
	margin: 12px 0 0;
	color: var(--aej-body);
	font-size: 13px;
	line-height: 1.6;
}

.aej-home-editor-pick {
	background: #ffffff;
	border: 1px solid var(--aej-line);
}

.aej-home-editor-image {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
	transition: transform 260ms ease;
}

.aej-home-editor-body {
	padding: 20px 22px 24px;
}

.aej-home-newsletter {
	margin-top: 25px;
	padding: 27px;
	color: #ffffff;
	background: #031b46;
}

.aej-home-newsletter h3 {
	margin: 0 0 9px;
	color: #ffffff;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 25px;
	font-weight: 500;
}

.aej-home-newsletter > p {
	margin: 0 0 18px;
	color: #d9deea;
	font-size: 13px;
	line-height: 1.6;
}

.aej-home-newsletter-form {
	display: flex;
	gap: 8px;
}

.aej-home-newsletter-form input {
	box-sizing: border-box;
	width: 100%;
	min-height: 45px;
	padding: 0 14px;
	border: 0;
	outline: none;
	font-size: 13px;
}

.aej-home-newsletter-form button {
	min-width: 115px;
	min-height: 45px;
	padding: 0 14px;
	color: #ffffff;
	background: var(--aej-gold-deep);
	border: 0;
	cursor: pointer;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.aej-home-newsletter-form button:hover,
.aej-home-newsletter-form button:focus {
	background: var(--aej-gold);
}

.aej-home-newsletter-message {
	margin-top: 12px;
	color: #ffffff;
	font-size: 12px;
}

.aej-home-posts-empty {
	max-width: 1240px;
	margin: 48px auto;
}

@media (max-width: 1120px) {
	.aej-header-inner {
		grid-template-columns: 230px minmax(0, 1fr) auto;
		gap: 18px;
	}

	.aej-menu {
		gap: 2px 14px;
	}

	.aej-menu a {
		font-size: 11px;
	}

	.aej-card-grid {
		gap: 20px;
	}

	.aej-home-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aej-archive-layout,
	.aej-article-shell {
		gap: 34px;
	}
}

@media (max-width: 920px) {
	.aej-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 82px;
	}

	.aej-primary-nav {
		display: none;
	}

	.aej-menu-toggle {
		display: inline-flex;
	}

	.aej-brand-logo {
		max-width: 210px;
		height: 60px;
	}

	.aej-home-hero-grid,
	.aej-about-intro,
	.aej-contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.aej-featured-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.aej-home-posts-top-grid,
	.aej-home-posts-bottom-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.aej-archive-layout,
	.aej-article-shell {
		grid-template-columns: 1fr;
	}

	.aej-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 32px;
	}

	.aej-sidebar-newsletter {
		align-self: start;
	}

	.aej-value-grid,
	.aej-dark-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.aej-dark-grid > div,
	.aej-dark-grid > div:first-child {
		padding: 0;
		border-left: 0;
	}

	.aej-footer-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}

	.aej-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.aej-topbar-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.aej-topbar-links {
		gap: 12px;
	}

	.aej-header-inner {
		min-height: 76px;
	}

	.aej-brand-logo {
		max-width: 175px;
		height: 52px;
	}

	.aej-header-actions {
		gap: 2px;
	}

	.aej-icon-button,
	.aej-menu-toggle {
		width: 34px;
		height: 34px;
	}

	.aej-home-hero,
	.aej-section {
		padding-top: 56px;
		padding-bottom: 64px;
	}

	.aej-home-hero h1 {
		font-size: clamp(40px, 13vw, 58px);
	}

	.aej-hero-media,
	.aej-hero-media img {
		min-height: 320px;
	}

	.aej-topic-grid,
	.aej-card-grid,
	.aej-value-grid,
	.aej-dark-grid,
	.aej-sidebar,
	.aej-form-row,
	.aej-footer-main {
		grid-template-columns: 1fr;
	}

	.aej-topic-card,
	.aej-topic-card:first-child {
		padding: 18px 0;
		border-top: 1px solid var(--aej-line);
		border-left: 0;
	}

	.aej-topic-card:first-child {
		padding-top: 0;
		border-top: 0;
	}

	.aej-featured-card {
		grid-template-columns: 1fr;
	}

	.aej-home-featured-grid {
		grid-template-columns: 1fr;
	}

	.aej-home-latest-item {
		grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1fr);
	}

	.aej-featured-media,
	.aej-featured-image {
		min-height: 240px;
	}

	.aej-featured-body {
		padding: 28px 24px 30px;
	}

	.aej-home-posts-top {
		padding-top: 42px;
		padding-bottom: 46px;
	}

	.aej-home-posts-bottom {
		padding-top: 42px;
	}

	.aej-home-latest-item {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.aej-home-latest-image {
		height: 220px;
	}

	.aej-home-newsletter-form {
		flex-direction: column;
	}

	.aej-home-newsletter-form button {
		width: 100%;
	}

	.aej-newsletter-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.aej-page-hero {
		padding-top: 48px;
		padding-bottom: 56px;
	}

	.aej-archive-intro {
		padding-top: 54px;
		padding-bottom: 42px;
	}

	.aej-archive-intro--image {
		min-height: 300px;
	}

	.aej-hero-breadcrumbs {
		margin-bottom: 34px;
	}

	.aej-archive-shell,
	.aej-article-shell {
		padding-top: 46px;
		padding-bottom: 64px;
	}

	.aej-about-media img {
		height: 320px;
	}

	.aej-contact-form-card {
		padding: 26px 20px 28px;
	}

	.aej-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-top: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
