/**
 * blog.css  archive, cards, single article, author, pagination, states.
 */

/* ── Archive hero (Blog.dc.html) ── */
.avt-blog-archive-hero {
	background: var(--hero-bg);
	color: var(--hero-fg);
	border-bottom: 1px solid var(--hero-border);
}
.avt-blog-archive-hero__inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 52px 32px 46px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}
.avt-blog-archive-hero__eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #ffb169;
}
.avt-blog-archive-hero__title {
	margin: 12px 0 0;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--hero-fg);
}
.avt-blog-archive-hero__sub {
	margin: 14px 0 0;
	max-width: 520px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--hero-muted);
}
.avt-blog-search {
	position: relative;
	width: 280px;
	max-width: 100%;
}
.avt-blog-search__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hero-muted);
	font-size: 14px;
	pointer-events: none;
}
.avt-blog-search input {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--hero-border);
	border-radius: 999px;
	padding: 11px 16px 11px 34px;
	color: var(--hero-fg);
	font-size: 14px;
	font-family: Geist, system-ui, sans-serif;
	outline: none;
}
.avt-blog-search input::placeholder {
	color: var(--hero-muted);
}
.avt-blog-search input:focus {
	border-color: rgba(255, 255, 255, 0.28);
}

.avt-blog-archive-shell {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 32px 90px;
}

/* ── Featured ── */
.avt-blog-feature-wrap {
	padding-top: 40px;
}
.avt-blog-feature {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease;
}
.avt-blog-feature:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--fg) 18%, transparent);
}
.avt-blog-feature__media {
	position: relative;
	min-height: 300px;
	background: linear-gradient(135deg, #1b1030, #3a1230 45%, #5a1810);
	overflow: hidden;
}
.avt-blog-feature__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.avt-blog-feature__ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
}
.avt-blog-feature__badge {
	position: absolute;
	left: 26px;
	bottom: 26px;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	padding: 6px 11px;
	border-radius: 999px;
}
.avt-blog-feature__body {
	padding: 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.avt-blog-feature__title {
	margin: 0;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.18;
	color: var(--fg);
}
.avt-blog-feature__excerpt {
	margin: 14px 0 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--muted);
}
.avt-blog-feature__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
	font-size: 12.5px;
	color: var(--muted);
	flex-wrap: wrap;
}
.avt-blog-feature__avatar {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	object-fit: cover;
	background: rgba(232, 84, 58, 0.16);
}
.avt-blog-feature__avatar--ph {
	display: inline-block;
}
.avt-blog-feature__author {
	color: var(--fg);
	font-weight: 500;
}
.avt-blog-feature__sep {
	color: var(--muted-2);
}

/* ── Filters ── */
.avt-blog-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-top: 34px;
}
.avt-blog-filters__groups {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 420px;
	min-width: 0;
}
.avt-blog-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.avt-blog-chip {
	font-size: 12.5px;
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 999px;
	border: 1px solid var(--chip-border, var(--border));
	background: var(--chip-bg, var(--card));
	color: var(--chip-color, var(--fg));
	font-family: Geist, system-ui, sans-serif;
	text-decoration: none;
	transition:
		background 0.18s,
		border-color 0.18s,
		color 0.18s;
}
.avt-blog-chip--tag {
	font-family: 'Geist Mono', ui-monospace, monospace;
	font-size: 10px;
	font-weight: 500;
	padding: 3px 8px;
	letter-spacing: 0.01em;
	line-height: 1.35;
}
.avt-blog-chip:hover {
	opacity: 0.92;
}
.avt-blog-filters__count {
	font-size: 11px;
	color: var(--muted-2);
	letter-spacing: 0.04em;
	flex-shrink: 0;
	padding-top: 6px;
	text-transform: uppercase;
}
.avt-blog-tag-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 6px 10px;
}
.avt-blog-tag-filter__head {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding-top: 4px;
}
.avt-blog-tag-filter__label {
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-2);
}
.avt-blog-tag-filter__clear {
	font-size: 10.5px;
	color: var(--muted-2);
	text-decoration: none;
}
.avt-blog-tag-filter__clear:hover {
	color: var(--accent);
}
.avt-blog-tag-filter__body {
	flex: 1 1 240px;
	min-width: 0;
}
.avt-blog-filters__chips--tags {
	gap: 4px 5px;
}
.avt-blog-tag-filter.is-collapsible:not(.is-expanded)
	.avt-blog-tag-filter__body {
	max-height: 24px;
	overflow: hidden;
}
.avt-blog-tag-filter.is-collapsible.is-expanded .avt-blog-tag-filter__body {
	max-height: none;
}
.avt-blog-tag-filter__toggle {
	flex: 0 0 auto;
	margin: 0;
	padding: 4px 0 0;
	border: 0;
	background: none;
	font-size: 10px;
	color: var(--muted-2);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.avt-blog-tag-filter__toggle:hover {
	color: var(--accent);
}

/* ── Grid + cards (Blog.dc.html) ── */
.avt-blog-archive-grid-wrap {
	padding-top: 26px;
}
.avt-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.avt-blog-card {
	display: flex;
	flex-direction: column;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease;
}
.avt-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--fg) 22%, transparent);
}
.avt-blog-card__media {
	position: relative;
	height: 150px;
	background: var(--card-2);
	overflow: hidden;
}
.avt-blog-card__media img,
.avt-blog-card__ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	display: block;
}
.avt-blog-card__ph {
	background: linear-gradient(135deg, var(--surface-2), var(--card-2));
}
.avt-blog-card__overlay-cat {
	position: absolute;
	left: 14px;
	top: 14px;
	font-size: 9.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	padding: 5px 10px;
	border-radius: 999px;
}
.avt-blog-card__body {
	padding: 20px 20px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.avt-blog-card__title {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.3;
	color: var(--fg);
}
.avt-blog-card__excerpt {
	margin: 9px 0 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
	flex: 1;
}
.avt-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
	font-size: 11.5px;
	color: var(--muted);
}
.avt-blog-card__author {
	color: var(--fg);
	font-weight: 500;
}
.avt-blog-card__sep {
	color: var(--muted-2);
}
.avt-blog-card__rt {
	margin-left: auto;
	letter-spacing: 0.04em;
	color: var(--muted-2);
	text-transform: uppercase;
}

.avt-blog-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--muted-2);
}
.avt-blog-empty__eyebrow {
	font-size: 10.5px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--muted-2);
	margin: 0 0 8px;
}
.avt-blog-empty__title {
	font-size: 15px;
	font-weight: 500;
	color: var(--muted);
	margin: 0;
}
.avt-blog-empty__sub {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.55;
}
.avt-blog-empty__clear {
	display: inline-block;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 500;
	color: #e8543a;
	text-decoration: none;
}
.avt-blog-empty--author .avt-btn {
	margin-top: 18px;
}

/* ── Breadcrumbs ── */
.avt-breadcrumbs {
	margin: 0 0 20px;
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
}
.avt-section--dark .avt-breadcrumbs {
	color: var(--section-contrast-muted-2);
}
.avt-article-header.avt-section--dark {
	background: var(--hero-bg);
	color: var(--hero-fg);
}
.avt-article-header .avt-breadcrumbs {
	color: var(--hero-muted-2);
}
.avt-breadcrumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.avt-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.avt-breadcrumbs a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.avt-breadcrumbs__sep {
	opacity: 0.5;
}

/* ── Pagination ── */
.avt-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 40px;
}
.avt-pagination__link {
	padding: 10px 18px;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 13.5px;
	text-decoration: none;
}
.avt-pagination__link:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.avt-pagination__status {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
}

/* ── Article ── */
.avt-article-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 60;
	background: transparent;
	pointer-events: none;
}
.avt-article-progress > i {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #ff7a45, var(--accent), #c43a8e);
	transition: width 0.08s linear;
}
.avt-article-cat {
	display: inline-block;
	font-size: 10.5px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #c13a22;
	background: rgba(232, 84, 58, 0.1);
	border: 1px solid rgba(232, 84, 58, 0.22);
	padding: 6px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
	text-decoration: none;
}
.avt-article-title {
	font-size: clamp(28px, 4.6vw, 46px);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.12;
	color: var(--hero-fg);
	margin: 0;
}
.avt-article-lede {
	font-size: 17px;
	line-height: 1.6;
	color: var(--hero-muted);
	margin: 16px 0 0;
	max-width: 60ch;
}
.avt-article-meta {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-top: 20px;
	font-size: 13px;
	color: var(--hero-muted-2);
	flex-wrap: wrap;
}
.avt-article-author {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--hero-fg);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.avt-article-author__avatar {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	object-fit: cover;
	background: #2a2a30;
}

.avt-article-hero {
	margin: 0 auto;
	max-width: 1160px;
	padding: 28px 32px 0;
}
.avt-article-hero__frame {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--card-2);
	line-height: 0;
}
.avt-article-hero__frame img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
}
.avt-article-hero__cap {
	margin: 12px 2px 0;
	font-size: 12.5px;
	color: var(--muted);
	text-align: center;
}

.avt-article-body {
	max-width: 760px;
	margin: 0 auto;
}

/* Prose */
.avt-prose {
	font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
	font-size: 18.5px;
	line-height: 1.75;
	color: var(--fg);
}
.avt-prose > *:first-child {
	margin-top: 0;
}
.avt-prose a:not(.avt-article-tag) {
	color: #c13a22;
	text-decoration: underline;
	text-decoration-color: rgba(193, 58, 34, 0.32);
	text-underline-offset: 3px;
}
.avt-prose a:not(.avt-article-tag):hover {
	color: #e8543a;
}
.avt-prose p {
	margin: 0 0 22px;
}
.avt-prose h2,
.avt-prose h3 {
	font-family: Geist, system-ui, sans-serif;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--fg);
	scroll-margin-top: 96px;
}
.avt-prose h2 {
	font-size: clamp(24px, 3vw, 29px);
	line-height: 1.25;
	margin: 44px 0 16px;
}
.avt-prose h3 {
	font-size: clamp(20px, 2.4vw, 22px);
	line-height: 1.3;
	margin: 36px 0 14px;
}
.avt-prose ul,
.avt-prose ol {
	margin: 0 0 22px;
	padding-left: 22px;
}
.avt-prose li {
	margin: 0 0 9px;
}
.avt-prose blockquote {
	margin: 30px 0;
	padding: 6px 0 6px 26px;
	border-left: 3px solid var(--accent);
	font-size: 22px;
	line-height: 1.5;
	font-style: italic;
	color: var(--fg);
}
.avt-prose code {
	font-family: 'Geist Mono', ui-monospace, monospace;
	font-size: 0.86em;
	background: var(--card-2);
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 1.5px 6px;
	color: #b4381f;
}
.avt-prose pre {
	margin: 0 0 24px;
	background: #0c0c11;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 18px 20px;
	overflow: auto;
	font-family: 'Geist Mono', ui-monospace, monospace;
	font-size: 13px;
	line-height: 1.65;
	color: #e6e6ec;
}
.avt-prose pre code {
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
}
.avt-prose hr {
	border: none;
	border-top: 1px solid var(--border);
	margin: 36px 0;
}
.avt-prose table {
	width: 100%;
	border-collapse: collapse;
	font-family: Geist, system-ui, sans-serif;
	font-size: 14px;
	margin: 0 0 26px;
}
.avt-prose th,
.avt-prose td {
	padding: 11px 12px;
	text-align: left;
	border-bottom: 1px solid var(--border);
}
.avt-prose th {
	font-weight: 600;
	border-bottom: 2px solid var(--fg);
}
.avt-prose .avt-article-figure,
.avt-prose figure.wp-block-image {
	margin: 26px 0;
	height: auto !important;
	aspect-ratio: auto !important;
	overflow: visible;
}
.avt-prose .avt-article-figure img,
.avt-prose figure.wp-block-image img {
	display: block;
	width: 100%;
	height: auto !important;
	max-width: 100%;
	aspect-ratio: auto !important;
	object-fit: contain;
	object-position: center;
	border-radius: 14px;
	border: 1px solid var(--border);
}
.avt-prose figure.wp-block-image > div,
.avt-prose .avt-article-figure > div {
	height: auto !important;
	aspect-ratio: auto !important;
	overflow: visible !important;
}
.avt-prose figcaption {
	margin: 12px 2px 0;
	font-family: Geist, system-ui, sans-serif;
	font-size: 12.5px;
	color: var(--muted-2);
	text-align: center;
}

.avt-article-takeaways {
	margin: 34px 0 0;
	background: var(--card-2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	color: var(--fg);
	font-family: Geist, system-ui, sans-serif;
}
.avt-article-takeaways__label {
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffb169;
	margin-bottom: 14px;
}
.avt-article-takeaways ul {
	margin: 0;
	padding-left: 20px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--muted);
}
.avt-article-disclaimer {
	margin: 24px 0 0;
	padding: 16px 18px;
	border: 1px solid var(--border);
	border-left: 3px solid var(--accent);
	border-radius: 12px;
	font-family: Geist, system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.55;
	background: var(--card);
}
.avt-article-product-cta {
	margin: 28px 0 0;
	font-family: Geist, system-ui, sans-serif;
}

.avt-article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 30px;
	font-family: Geist, system-ui, sans-serif;
}
.avt-article-tags__label {
	font-size: 11px;
	color: var(--muted-2);
	margin-right: 4px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.avt-article-tag {
	font-size: 11.5px;
	color: var(--fg) !important;
	background: var(--card-2);
	border: 1px solid var(--border);
	padding: 6px 11px;
	border-radius: 999px;
	text-decoration: none !important;
	text-transform: lowercase;
}
.avt-article-tag:hover {
	color: var(--accent) !important;
	border-color: rgba(232, 84, 58, 0.35);
}

.avt-share {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	font-size: 13px;
	font-family: Geist, system-ui, sans-serif;
}
.avt-share .avt-mono {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 11px;
	color: var(--fg);
}
.avt-share a {
	color: var(--fg);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.avt-share a:hover {
	color: var(--accent);
}

.avt-article-authorcard {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-top: 40px;
	padding: 24px 26px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	font-family: Geist, system-ui, sans-serif;
}
.avt-article-authorcard__avatar {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	object-fit: cover;
	background: var(--card-2);
}
.avt-article-authorcard .avt-mono {
	font-size: 10px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--muted-2);
}
.avt-article-authorname {
	font-size: 16px;
	font-weight: 600;
	color: var(--fg);
	display: block;
	margin-top: 5px;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.avt-article-authorname:hover {
	color: var(--accent);
}
.avt-article-authorcard__role {
	font-weight: 400;
	color: var(--muted-2);
	text-decoration: none;
}
.avt-article-authorcard__bio {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
}
.avt-article-authorcard .avt-author-connect {
	display: flex;
	gap: 12px;
	margin-top: 14px;
	flex-wrap: wrap;
}
.avt-article-authorcard .avt-author-connect a {
	font-size: 13px;
	color: #c13a22;
	text-decoration: none;
	font-weight: 500;
}
.avt-article-authorcard .avt-author-connect a:last-child {
	color: var(--muted-2);
	font-weight: 400;
}

/* ── Author page ── */
.avt-author-banner {
	background: var(--hero-bg);
	color: var(--hero-fg);
	border-bottom: 1px solid var(--hero-border);
	position: relative;
	overflow: hidden;
}
.avt-author-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 18% 20%,
			rgba(46, 157, 104, 0.22),
			transparent 46%
		),
		radial-gradient(circle at 82% 70%, rgba(123, 91, 230, 0.2), transparent 50%);
	pointer-events: none;
}
.avt-author-banner__inner {
	position: relative;
	max-width: 1160px;
	margin: 0 auto;
	padding: 44px 32px;
}
.avt-author-banner__crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--hero-muted);
	text-transform: uppercase;
}
.avt-author-banner__crumb a {
	color: var(--hero-muted);
	text-decoration: none;
}
.avt-author-banner__crumb a:hover {
	color: #e8543a;
}
.avt-author-banner__crumb .is-current {
	color: var(--hero-fg);
}
.avt-author-banner__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 26px;
	margin-top: 26px;
}
.avt-author-banner__avatar {
	width: 112px;
	height: 112px;
	border-radius: 20px;
	object-fit: cover;
	border: 1px solid var(--hero-border);
	background: #1a1a1f;
	flex-shrink: 0;
}
.avt-author-banner__avatar--ph {
	display: block;
}
.avt-author-banner__intro {
	flex: 1;
	min-width: 0;
}
.avt-author-banner__role {
	display: block;
	font-size: 10.5px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #7be6a6;
}
.avt-author-banner__name {
	margin: 9px 0 0;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 600;
	letter-spacing: -0.03em;
	color: var(--hero-fg);
}
.avt-author-banner__lede {
	margin: 11px 0 0;
	max-width: 560px;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--hero-muted);
}
.avt-author-banner__cta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.avt-author-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border-radius: 999px;
	padding: 9px 15px;
	font-size: 13px;
	text-decoration: none;
}
.avt-author-banner__btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--hero-border);
	color: var(--hero-fg);
}
.avt-author-banner__btn--solid {
	background: var(--hero-cta-bg);
	border: 1px solid var(--hero-cta-bg);
	color: var(--hero-cta-fg);
	font-weight: 500;
}

.avt-author-layout {
	max-width: 1160px;
	margin: 0 auto;
	padding: 44px 32px 90px;
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
.avt-author-aside {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}
.avt-author-panel {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 22px;
}
.avt-author-panel__label {
	font-size: 10.5px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--muted-2);
	margin-bottom: 14px;
}
.avt-author-facts {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
}
.avt-author-facts__row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}
.avt-author-facts__row dt {
	font-size: 12.5px;
	color: var(--muted-2);
	flex: none;
	margin: 0;
}
.avt-author-facts__row dd {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--fg);
	text-align: right;
	overflow-wrap: anywhere;
}

.avt-author-connect-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.avt-author-connect-item {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 12px;
	border: 1px solid var(--border);
	border-radius: 11px;
	font-size: 13.5px;
	color: var(--fg);
	text-decoration: none;
	transition:
		border-color 0.18s,
		background 0.18s;
}
.avt-author-connect-item:hover {
	border-color: rgba(232, 84, 58, 0.4);
	background: var(--surface-2);
}
.avt-author-connect-item__icon {
	width: 28px;
	height: 28px;
	flex: none;
	border-radius: 7px;
	background: var(--fg);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.avt-author-connect-item__icon svg {
	display: block;
}
.avt-author-connect-item.is-linkedin .avt-author-connect-item__icon {
	background: #2a6fdb;
}
.avt-author-connect-item.is-x .avt-author-connect-item__icon {
	background: #121215;
}
.avt-author-connect-item.is-github .avt-author-connect-item__icon {
	background: #3c3c43;
}
.avt-author-connect-item.is-email .avt-author-connect-item__icon {
	background: #e8543a;
}
.avt-author-connect-item.is-web .avt-author-connect-item__icon {
	background: #2e9d68;
}
.avt-author-connect-item__meta {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.avt-author-connect-item__label {
	font-weight: 500;
}
.avt-author-connect-item__handle {
	color: var(--muted-2);
	font-size: 12px;
	overflow-wrap: anywhere;
}

.avt-author-focus {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}
.avt-author-focus__pill {
	font-size: 11.5px;
	color: var(--fg);
	background: var(--card-2);
	border: 1px solid var(--border);
	padding: 5px 10px;
	border-radius: 999px;
	text-transform: uppercase;
}
.avt-author-top-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.avt-author-top-tags__pill {
	font-size: 11px;
	color: var(--fg);
	background: var(--card-2);
	border: 1px solid var(--border);
	padding: 4px 9px;
	border-radius: 999px;
	text-decoration: none;
	text-transform: lowercase;
}
.avt-author-top-tags__pill:hover {
	color: var(--accent);
	border-color: rgba(232, 84, 58, 0.35);
}

.avt-author-main {
	min-width: 0;
}
.avt-author-bio-section h2,
.avt-author-details-section h2,
.avt-author-articles__head h2 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--fg);
}
.avt-author-bio-section {
	margin: 0;
}
.avt-author-bio {
	margin-top: 14px;
	font-size: 17.5px;
	line-height: 1.72;
	color: var(--fg);
}
.avt-author-details-section {
	margin-top: 34px;
}
.avt-author-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}
.avt-author-details__item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 13px;
	padding: 16px 18px;
	min-width: 0;
}
.avt-author-details__key {
	font-size: 10px;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--muted-2);
}
.avt-author-details__value {
	margin-top: 6px;
	font-size: 14.5px;
	color: var(--fg);
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.avt-author-articles {
	margin-top: 38px;
}
.avt-author-articles__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.avt-author-articles__head .avt-mono {
	font-size: 11px;
	color: var(--muted-2);
	text-transform: uppercase;
}
.avt-author-post-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.avt-author-post {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 0;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
.avt-author-post:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px -22px color-mix(in srgb, var(--fg) 22%, transparent);
}
.avt-author-post__thumb {
	position: relative;
	min-height: 96px;
	background: var(--card-2);
	overflow: hidden;
}
.avt-author-post__thumb img,
.avt-author-post__ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.avt-author-post__ph {
	background: linear-gradient(135deg, var(--surface-2), var(--card-2));
}
.avt-author-post__cat {
	position: absolute;
	left: 10px;
	top: 10px;
	font-size: 9px;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	padding: 4px 8px;
	border-radius: 999px;
}
.avt-author-post__body {
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}
.avt-author-post__body h3 {
	margin: 0;
	font-size: 16.5px;
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.3;
	color: var(--fg);
	overflow-wrap: anywhere;
}
.avt-author-post__body p {
	margin: 7px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--muted);
}
.avt-author-post__meta {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 12px;
	font-size: 11.5px;
	color: var(--muted);
}
.avt-author-post__rt {
	margin-left: auto;
	color: var(--muted-2);
}

/* States */
.avt-state {
	text-align: center;
	max-width: 520px;
	margin: 40px auto;
	padding: 40px 24px;
}
.avt-state__title {
	font-size: 24px;
	margin: 8px 0 12px;
}
.avt-state__body {
	color: var(--muted);
	margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 960px) {
	.avt-blog-feature {
		grid-template-columns: 1fr;
	}
	.avt-blog-grid {
		grid-template-columns: 1fr 1fr;
	}
	.avt-author-layout {
		grid-template-columns: 1fr;
	}
	.avt-author-aside {
		position: static;
	}
}
@media (max-width: 640px) {
	.avt-blog-archive-hero__inner,
	.avt-blog-archive-shell,
	.avt-author-banner__inner,
	.avt-author-layout {
		padding-left: 16px;
		padding-right: 16px;
	}
	.avt-blog-grid {
		grid-template-columns: 1fr;
	}
	.avt-author-details {
		grid-template-columns: 1fr;
	}
	.avt-author-post {
		grid-template-columns: 1fr;
	}
	.avt-author-post__thumb {
		min-height: 132px;
	}
}
