/**
 * Easy Author Box 1.1.0
 */
.jx-eab {
	--jx-eab-accent: #1819ed;
	--jx-eab-text: #0f172a;
	--jx-eab-muted: #64748b;
	--jx-eab-panel: #ffffff;
	--jx-eab-border: rgba(15, 23, 42, 0.12);
	--jx-eab-radius: 14px;
	--jx-eab-max: 100%;
	--jx-eab-photo: 96px;
	--jx-eab-thumb: 64px;
	box-sizing: border-box;
	width: 100%;
	max-width: var(--jx-eab-max);
	margin: 1.75rem 0;
	padding: 1.15rem 1.25rem;
	border: 1px solid var(--jx-eab-border);
	border-radius: var(--jx-eab-radius);
	background: var(--jx-eab-panel);
	color: var(--jx-eab-text);
	font: inherit;
}

.jx-eab *,
.jx-eab *::before,
.jx-eab *::after {
	box-sizing: border-box;
}

.jx-eab-shadow {
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.jx-eab-label {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--jx-eab-muted);
}

.jx-eab-inner {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.jx-eab-photo-wrap {
	flex: 0 0 var(--jx-eab-photo);
	width: var(--jx-eab-photo);
	height: var(--jx-eab-photo);
	overflow: hidden;
	background: color-mix(in srgb, var(--jx-eab-accent) 12%, #fff);
}

.jx-eab-shape-circle .jx-eab-photo-wrap {
	border-radius: 50%;
}

.jx-eab-shape-rounded .jx-eab-photo-wrap {
	border-radius: calc(var(--jx-eab-radius) * 0.75);
}

.jx-eab-shape-square .jx-eab-photo-wrap {
	border-radius: 0;
}

.jx-eab-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jx-eab-photo-fallback {
	display: grid;
	place-items: center;
	font-size: calc(var(--jx-eab-photo) * 0.38);
	font-weight: 700;
	color: var(--jx-eab-accent);
}

.jx-eab-body {
	min-width: 0;
	flex: 1 1 auto;
}

.jx-eab-name {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--jx-eab-text);
}

.jx-eab-role {
	margin: 0.2rem 0 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--jx-eab-accent);
}

.jx-eab-bio {
	margin: 0.65rem 0 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--jx-eab-text);
}

.jx-eab-bio p {
	margin: 0 0 0.5rem;
}

.jx-eab-bio p:last-child {
	margin-bottom: 0;
}

.jx-eab-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0.85rem 0 0;
	padding: 0;
	list-style: none;
}

.jx-eab-link {
	display: inline-grid;
	place-items: center;
	width: 2.05rem;
	height: 2.05rem;
	border-radius: 999px;
	border: 1px solid var(--jx-eab-border);
	background: color-mix(in srgb, var(--jx-eab-panel) 88%, #fff);
	color: var(--jx-eab-accent);
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.jx-eab-link:hover,
.jx-eab-link:focus-visible {
	background: var(--jx-eab-accent);
	border-color: var(--jx-eab-accent);
	color: #fff;
	outline: none;
}

.jx-eab-icon {
	font-size: 0.9rem;
	line-height: 1;
}

.jx-eab-layout-card .jx-eab-inner,
.jx-eab-layout-stacked .jx-eab-inner {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.jx-eab-layout-card .jx-eab-links,
.jx-eab-layout-stacked .jx-eab-links {
	justify-content: center;
}

.jx-eab-layout-compact {
	padding: 0.9rem 1rem;
}

.jx-eab-layout-compact .jx-eab-inner {
	align-items: center;
}

.jx-eab-layout-compact .jx-eab-bio {
	display: none;
}

.jx-eab-layout-minimal {
	border-left: 3px solid var(--jx-eab-accent);
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	padding-left: 1rem;
}

.jx-eab-layout-minimal.jx-eab-shadow {
	box-shadow: none;
}

.jx-eab-theme-soft {
	background: #f0f9ff;
	border-color: rgba(14, 165, 233, 0.22);
}

.jx-eab-theme-bold {
	border-width: 2px;
	border-color: var(--jx-eab-accent);
}

.jx-eab-theme-minimal {
	border: 0;
	border-left: 3px solid var(--jx-eab-accent);
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	padding-left: 1rem;
}

.jx-eab-theme-glass {
	background: color-mix(in srgb, var(--jx-eab-panel) 78%, transparent);
	backdrop-filter: blur(10px);
}

.jx-eab-name-link {
	color: inherit;
	text-decoration: none;
}

.jx-eab-name-link:hover,
.jx-eab-name-link:focus-visible {
	color: var(--jx-eab-accent);
	text-decoration: underline;
}

.jx-eab-more {
	--jx-eab-thumb: 96px;
	--jx-eab-more-cols: 1;
	margin-top: 1.15rem;
	padding-top: 1.05rem;
	border-top: 1px solid var(--jx-eab-border);
}

.jx-eab-more-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 0.85rem;
}

.jx-eab-more-heading {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jx-eab-text);
	white-space: nowrap;
}

.jx-eab-more-head::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--jx-eab-border);
}

.jx-eab-more-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(var(--jx-eab-more-cols, 1), minmax(0, 1fr));
	gap: 0.45rem 0.85rem;
}

.jx-eab-more-item {
	min-width: 0;
}

.jx-eab-more-link {
	display: flex;
	gap: 0.9rem;
	align-items: center;
	min-width: 0;
	padding: 0.55rem 0.6rem;
	border-radius: calc(var(--jx-eab-radius) * 0.7);
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.jx-eab-more-link:hover,
.jx-eab-more-link:focus-visible {
	background: color-mix(in srgb, var(--jx-eab-accent) 8%, var(--jx-eab-panel));
	outline: none;
}

.jx-eab-more-link:focus-visible {
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--jx-eab-accent) 45%, transparent);
}

.jx-eab-more-index {
	flex: 0 0 auto;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--jx-eab-accent);
	opacity: 0.7;
	font-variant-numeric: tabular-nums;
}

.jx-eab-more-thumb {
	flex: 0 0 var(--jx-eab-thumb);
	width: var(--jx-eab-thumb);
	height: var(--jx-eab-thumb);
	overflow: hidden;
	border-radius: calc(var(--jx-eab-radius) * 0.55);
	background: color-mix(in srgb, var(--jx-eab-accent) 14%, var(--jx-eab-panel));
	display: block;
}

.jx-eab-more-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.jx-eab-more-link:hover .jx-eab-more-thumb img,
.jx-eab-more-link:focus-visible .jx-eab-more-thumb img {
	transform: scale(1.06);
}

.jx-eab-more-thumb-empty {
	background:
		linear-gradient(135deg,
			color-mix(in srgb, var(--jx-eab-accent) 22%, var(--jx-eab-panel)),
			color-mix(in srgb, var(--jx-eab-accent) 8%, var(--jx-eab-panel)));
}

.jx-eab-more-copy {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.jx-eab-more-title {
	display: block;
	color: var(--jx-eab-text);
	font-weight: 600;
	font-size: 0.98rem;
	line-height: 1.35;
	text-wrap: pretty;
}

.jx-eab-more-link:hover .jx-eab-more-title,
.jx-eab-more-link:focus-visible .jx-eab-more-title {
	color: var(--jx-eab-accent);
}

.jx-eab-more-meta {
	display: block;
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--jx-eab-muted);
}

.jx-eab-more-cat {
	color: var(--jx-eab-accent);
	font-weight: 600;
}

.jx-eab-more-intro {
	display: block;
	margin: 0.15rem 0 0;
	font-size: 0.84rem;
	line-height: 1.45;
	color: var(--jx-eab-muted);
}

.jx-eab-more-all {
	margin: 0.85rem 0 0;
}

.jx-eab-more-all a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--jx-eab-accent) 10%, var(--jx-eab-panel));
	color: var(--jx-eab-accent);
	font-weight: 600;
	font-size: 0.82rem;
	text-decoration: none;
}

.jx-eab-more-all a:hover,
.jx-eab-more-all a:focus-visible {
	background: var(--jx-eab-accent);
	color: #fff;
	outline: none;
}

.jx-eab-more-media .jx-eab-more-thumb {
	width: var(--jx-eab-thumb);
	height: calc(var(--jx-eab-thumb) * 0.72);
	flex-basis: var(--jx-eab-thumb);
}

.jx-eab-more-cards .jx-eab-more-list {
	gap: 0.75rem;
}

.jx-eab-more-cards .jx-eab-more-link {
	flex-direction: column;
	align-items: stretch;
	gap: 0.65rem;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--jx-eab-border);
	background: color-mix(in srgb, var(--jx-eab-panel) 94%, var(--jx-eab-accent) 6%);
}

.jx-eab-more-cards .jx-eab-more-link:hover,
.jx-eab-more-cards .jx-eab-more-link:focus-visible {
	background: color-mix(in srgb, var(--jx-eab-panel) 88%, var(--jx-eab-accent) 12%);
	transform: translateY(-2px);
}

.jx-eab-more-cards .jx-eab-more-thumb {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	flex: none;
	border-radius: 0;
}

.jx-eab-more-cards .jx-eab-more-copy {
	padding: 0 0.8rem 0.85rem;
}

.jx-eab-more-cards .jx-eab-more-title {
	font-size: 0.92rem;
}

.jx-eab-more-compact .jx-eab-more-list {
	gap: 0.35rem 0.75rem;
}

.jx-eab-more-compact .jx-eab-more-thumb {
	width: 56px;
	height: 56px;
	flex-basis: 56px;
}

.jx-eab-more-compact .jx-eab-more-title {
	font-size: 0.9rem;
}

.jx-eab-more-compact .jx-eab-more-intro {
	display: none;
}

.jx-eab-more-spotlight .jx-eab-more-list {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 0.75rem 1.1rem;
	align-items: start;
}

.jx-eab-more-spotlight .jx-eab-more-item-lead {
	grid-column: 1;
	grid-row: 1 / span 8;
}

.jx-eab-more-spotlight .jx-eab-more-item-lead .jx-eab-more-link {
	flex-direction: column;
	align-items: stretch;
	gap: 0.7rem;
	padding: 0;
	height: 100%;
}

.jx-eab-more-spotlight .jx-eab-more-item-lead .jx-eab-more-thumb {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	flex: none;
}

.jx-eab-more-spotlight .jx-eab-more-item-lead .jx-eab-more-copy {
	padding: 0 0.15rem 0.35rem;
}

.jx-eab-more-spotlight .jx-eab-more-item-lead .jx-eab-more-title {
	font-size: 1.12rem;
}

.jx-eab-more-spotlight .jx-eab-more-item:not(.jx-eab-more-item-lead) .jx-eab-more-intro {
	display: none;
}

.jx-eab-more-spotlight .jx-eab-more-item:not(.jx-eab-more-item-lead) .jx-eab-more-thumb {
	width: 64px;
	height: 48px;
	flex-basis: 64px;
}

.jx-eab-theme-minimal .jx-eab-more {
	border-top-color: color-mix(in srgb, var(--jx-eab-accent) 28%, var(--jx-eab-border));
}

@media (max-width: 991.98px) {
	.jx-eab-more-cols-3:not(.jx-eab-more-spotlight) .jx-eab-more-list,
	.jx-eab-more-cols-4:not(.jx-eab-more-spotlight) .jx-eab-more-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.jx-eab-layout-horizontal .jx-eab-inner,
	.jx-eab-layout-compact .jx-eab-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.jx-eab-layout-horizontal .jx-eab-links,
	.jx-eab-layout-compact .jx-eab-links {
		justify-content: center;
	}

	.jx-eab-more-compact .jx-eab-more-list,
	.jx-eab-more-spotlight .jx-eab-more-list,
	.jx-eab-more-cards .jx-eab-more-list,
	.jx-eab-more-list {
		grid-template-columns: 1fr;
	}

	.jx-eab-more-spotlight .jx-eab-more-item-lead {
		grid-row: auto;
	}

	.jx-eab-more-link {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jx-eab-more-link,
	.jx-eab-more-thumb img {
		transition: none;
	}
}
