:root {
	--aihub-primary: #ff6a21;
	--aihub-primary-strong: #ff4f0a;
	--aihub-ink: #201712;
	--aihub-text: #433a35;
	--aihub-muted: #8d837d;
	--aihub-line: #f1ded1;
	--aihub-soft: #fff4ec;
	--aihub-bg: #fffaf6;
	--aihub-card: #ffffff;
	--aihub-container: 1344px;
	--aihub-radius-pill: 999px;
	--aihub-shadow-soft: 0 18px 44px rgba(82, 45, 24, 0.08);
}

* {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	background:
		radial-gradient(circle at 84% 0, rgba(255, 111, 38, 0.08), transparent 31rem),
		linear-gradient(180deg, #fffaf6 0, #fff 34rem);
	color: var(--aihub-text);
	font-family: Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.aihub-container {
	width: min(calc(100% - 72px), var(--aihub-container));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 250, 246, 0.94);
	border-bottom: 1px solid var(--aihub-line);
	backdrop-filter: blur(18px);
}

.site-main {
	display: flex;
	flex-direction: column;
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 68px;
	gap: 0;
}

.site-header__brand {
	flex: 0 0 auto;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 168px;
}

.site-brand__mark {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
}

.site-brand__copy {
	display: grid;
	gap: 1px;
	line-height: 1.1;
}

.site-brand__name {
	color: var(--aihub-ink);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0;
}

.site-brand__tagline {
	color: #5f554f;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

.site-header__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	min-width: 0;
}

.site-header__nav {
	display: flex;
	justify-content: flex-start;
	flex: 0 0 auto;
	margin-left: clamp(72px, 5.8vw, 92px);
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(28px, 2.7vw, 44px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 68px;
	color: #19130f;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	transition: color 160ms ease;
}

.primary-menu a::after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 30px;
	height: 3px;
	content: "";
	background: var(--aihub-primary);
	border-radius: var(--aihub-radius-pill) var(--aihub-radius-pill) 0 0;
	opacity: 0;
	transform: translateX(-50%) scaleX(0.45);
	transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu .current_page_item > a {
	color: var(--aihub-primary-strong);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after,
.primary-menu .current_page_item > a::after {
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	gap: 18px;
	margin-left: auto;
}

.site-header__search {
	display: flex;
	align-items: center;
	width: 280px;
	height: 36px;
	padding: 0 5px 0 18px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid #ffd8c5;
	border-radius: var(--aihub-radius-pill);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.site-header__search input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0;
	color: var(--aihub-ink);
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 12px;
}

.site-header__search input::placeholder {
	color: #b3aaa3;
}

.site-header__search button,
.site-header__theme,
.site-header__toggle {
	display: inline-grid;
	place-items: center;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.site-header__search button {
	width: 30px;
	height: 30px;
	color: var(--aihub-primary-strong);
	border-radius: 50%;
}

.site-header__search svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.site-header__login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	min-width: 104px;
	padding: 0 19px;
	color: #fff;
	background: linear-gradient(180deg, #ff7b35 0%, #ff5c17 100%);
	border-radius: var(--aihub-radius-pill);
	box-shadow: 0 8px 18px rgba(255, 93, 23, 0.22);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.site-header__theme {
	width: 34px;
	height: 34px;
	color: #16110e;
	border-radius: 50%;
	transition: background 160ms ease, color 160ms ease;
}

.site-header__theme:hover {
	color: var(--aihub-primary-strong);
	background: #fff0e8;
}

.site-header__theme svg {
	width: 23px;
	height: 23px;
}

.site-header__toggle {
	display: none;
	width: 40px;
	height: 40px;
	margin-left: auto;
	color: var(--aihub-ink);
	border: 1px solid var(--aihub-line);
	border-radius: 50%;
}

.site-header__toggle svg {
	width: 22px;
	height: 22px;
}

.site-header__toggle-close {
	display: none;
}

.site-header.is-open .site-header__toggle-open {
	display: none;
}

.site-header.is-open .site-header__toggle-close {
	display: grid;
}

.aihub-stage {
	min-height: 42vh;
	padding: 92px 0;
}

.aihub-stage__eyebrow {
	margin: 0 0 8px;
	color: var(--aihub-primary-strong);
	font-weight: 800;
}

.aihub-stage h1 {
	margin: 0;
	color: var(--aihub-ink);
	font-size: clamp(38px, 7vw, 72px);
	line-height: 1.06;
	letter-spacing: 0;
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding: 66px 0 30px;
	background:
		radial-gradient(circle at 76% 40%, rgba(255, 118, 48, 0.14), transparent 21rem),
		linear-gradient(180deg, rgba(255, 248, 243, 0.88), rgba(255, 255, 255, 0));
}

.home-hero::before,
.home-hero::after {
	position: absolute;
	content: "";
	border-radius: 50%;
	pointer-events: none;
}

.home-hero::before {
	top: 38px;
	right: 21%;
	width: 9px;
	height: 9px;
	background: rgba(255, 126, 66, 0.36);
}

.home-hero::after {
	top: 225px;
	left: 47%;
	width: 11px;
	height: 11px;
	background: rgba(255, 126, 66, 0.32);
}

.home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
	gap: clamp(32px, 6vw, 86px);
	align-items: center;
}

.home-hero__content {
	min-width: 0;
}

.home-hero h1 {
	display: grid;
	gap: 4px;
	max-width: 620px;
	margin: 0;
	color: var(--aihub-ink);
	font-size: clamp(42px, 4.55vw, 64px);
	font-weight: 800;
	line-height: 1.13;
	letter-spacing: 0;
}

.home-hero h1 mark {
	padding: 0;
	color: var(--aihub-primary-strong);
	background: transparent;
}

.home-hero__content > p {
	margin: 22px 0 0;
	color: #746a64;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.8;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 31px;
}

.home-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 28px;
	border-radius: var(--aihub-radius-pill);
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
	transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, border-color 160ms ease;
}

.home-hero__button:hover {
	transform: translateY(-1px);
}

.home-hero__button svg {
	width: 18px;
	height: 18px;
	margin-left: 8px;
	fill: currentColor;
}

.home-hero__button--primary {
	color: #fff;
	background: linear-gradient(180deg, #ff7e39 0%, #ff5e18 100%);
	box-shadow: 0 13px 24px rgba(255, 94, 24, 0.22);
}

.home-hero__button--secondary {
	color: #4b3528;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid #f4d5c3;
	box-shadow: 0 10px 24px rgba(92, 55, 31, 0.06);
}

.home-hero__button--secondary:hover {
	color: var(--aihub-primary-strong);
	border-color: #ffb58f;
}

.home-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, max-content);
	gap: clamp(22px, 3vw, 42px);
	align-items: center;
	margin-top: 42px;
}

.home-hero__stat {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.home-hero__stat-icon {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: var(--aihub-primary);
	background: #fff;
	border: 1px solid #ffd8c5;
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(255, 102, 32, 0.12);
}

.home-hero__stat-icon svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.home-hero__stat-copy {
	display: grid;
	gap: 0;
	line-height: 1.2;
}

.home-hero__stat strong {
	color: var(--aihub-ink);
	font-size: 21px;
	font-weight: 850;
}

.home-hero__stat small {
	color: #827872;
	font-size: 12px;
	font-weight: 500;
}

.home-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 320px;
}

.home-hero__visual::before {
	position: absolute;
	inset: 8% 0 3% 8%;
	content: "";
	background: radial-gradient(ellipse at center, rgba(255, 226, 208, 0.92), rgba(255, 244, 237, 0.45) 48%, transparent 72%);
	border-radius: 50%;
	filter: blur(4px);
}

.home-hero__visual img {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	height: auto;
	border-radius: 0;
	mix-blend-mode: multiply;
}

.home-categories {
	margin-top: 18px;
}

.home-categories__panel {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
	padding: 28px 26px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--aihub-line);
	border-radius: 10px;
	box-shadow: 0 18px 42px rgba(95, 55, 32, 0.08);
}

.home-category {
	display: grid;
	place-items: center;
	gap: 8px;
	min-height: 96px;
	color: var(--aihub-ink);
	text-align: center;
}

.home-category span {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--aihub-primary);
	background: #fff3eb;
	border-radius: 50%;
}

.home-category svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.home-category strong {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
}

.home-category small {
	color: #8a7f78;
	font-size: 12px;
	line-height: 1.3;
}

.home-section {
	margin-top: 54px;
}

.home-section__head,
.home-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.home-section__head h2,
.home-card__head h2,
.home-partners h2 {
	margin: 0;
	color: var(--aihub-ink);
	font-size: 24px;
	font-weight: 850;
	line-height: 1.25;
}

.home-section__head a,
.home-card__head a {
	color: #8d837d;
	font-size: 13px;
	font-weight: 600;
}

.home-focus__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 314px;
	gap: 28px;
	align-items: start;
}

.home-focus__body {
	display: grid;
	grid-template-columns: minmax(330px, 0.95fr) minmax(300px, 1fr);
	gap: 24px;
}

.home-feature {
	position: relative;
	display: block;
	min-height: 344px;
	overflow: hidden;
	color: #fff;
	background: #111;
	border-radius: 8px;
	box-shadow: 0 14px 30px rgba(31, 22, 18, 0.14);
}

.home-feature img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-feature::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(8, 14, 24, 0.04) 26%, rgba(3, 8, 15, 0.82) 100%);
}

.home-feature__label,
.home-news-card__media em {
	position: absolute;
	z-index: 2;
	top: 16px;
	left: 16px;
	padding: 4px 8px;
	color: #fff;
	background: var(--aihub-primary);
	border-radius: 4px;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.2;
}

.home-feature__copy {
	position: absolute;
	z-index: 2;
	left: 22px;
	right: 22px;
	bottom: 22px;
	display: grid;
	gap: 10px;
}

.home-feature__copy strong {
	font-size: 24px;
	font-weight: 850;
	line-height: 1.28;
}

.home-feature__copy small,
.home-feature__copy em {
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-style: normal;
	line-height: 1.7;
}

.home-focus__list {
	display: grid;
	gap: 16px;
}

.home-mini-article,
.home-mini-row {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
}

.home-mini-article img,
.home-mini-row img {
	width: 92px;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 6px;
}

.home-mini-article span,
.home-mini-row span {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.home-mini-article em {
	width: fit-content;
	padding: 3px 7px;
	color: var(--aihub-primary-strong);
	background: #fff0e8;
	border-radius: 4px;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
}

.home-mini-article strong,
.home-mini-row strong {
	color: var(--aihub-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
}

.home-mini-article small,
.home-mini-row small {
	color: #948982;
	font-size: 12px;
	line-height: 1.4;
}

.home-sidebar {
	display: grid;
	gap: 22px;
}

.home-card {
	padding: 22px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--aihub-line);
	border-radius: 10px;
	box-shadow: 0 14px 36px rgba(79, 45, 25, 0.06);
}

.home-card__head {
	margin-bottom: 14px;
}

.home-card__head h2 {
	font-size: 20px;
}

.home-hot ol {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: hot;
}

.home-hot li {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
}

.home-hot li span {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	color: #fff;
	background: var(--aihub-primary);
	border-radius: 4px;
	font-size: 11px;
	font-weight: 800;
}

.home-hot li:nth-child(n+4) span {
	background: #cfc7c1;
}

.home-hot li a {
	color: var(--aihub-ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
}

.home-hot li small {
	grid-column: 2;
	color: #9a908a;
	font-size: 12px;
}

.home-newsletter {
	position: relative;
	overflow: hidden;
	padding: 25px 22px;
	color: #fff;
	background: linear-gradient(135deg, #ff7b35 0%, #ff9b68 100%);
	border-radius: 10px;
	box-shadow: 0 16px 38px rgba(255, 105, 35, 0.22);
}

.home-newsletter::after {
	position: absolute;
	right: -12px;
	bottom: -18px;
	width: 118px;
	height: 118px;
	content: "";
	background: rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	transform: rotate(18deg);
}

.home-newsletter h2,
.home-newsletter p,
.home-newsletter form {
	position: relative;
	z-index: 1;
}

.home-newsletter h2 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.25;
}

.home-newsletter p {
	max-width: 220px;
	margin: 0 0 20px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	line-height: 1.7;
}

.home-newsletter form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	height: 42px;
	overflow: hidden;
	background: #fff;
	border-radius: 6px;
}

.home-newsletter input {
	min-width: 0;
	padding: 0 14px;
	border: 0;
	outline: 0;
	font-size: 12px;
}

.home-newsletter button {
	padding: 0 17px;
	color: #fff;
	background: var(--aihub-primary);
	border: 0;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.home-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.home-filter span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 18px;
	color: #6f645e;
	background: #fff7f1;
	border: 1px solid #f3dfd2;
	border-radius: var(--aihub-radius-pill);
	font-size: 13px;
	font-weight: 700;
}

.home-filter .is-active {
	color: #fff;
	background: var(--aihub-primary);
	border-color: var(--aihub-primary);
}

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

.home-news-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--aihub-line);
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(71, 42, 25, 0.06);
}

.home-news-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1.55 / 1;
	overflow: hidden;
}

.home-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.home-news-card:hover img {
	transform: scale(1.03);
}

.home-news-card__body {
	display: grid;
	gap: 10px;
	padding: 16px 16px 14px;
}

.home-news-card__body strong {
	color: var(--aihub-ink);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.45;
}

.home-news-card__body small {
	color: #706761;
	font-size: 13px;
	line-height: 1.7;
}

.home-news-card__body span {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	color: #9a908a;
	font-size: 12px;
}

.home-news-card__body b {
	color: #7d726c;
	font-weight: 600;
	white-space: nowrap;
}

.home-compact__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.home-depth,
.home-tools,
.home-events {
	display: grid;
	gap: 14px;
}

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

.home-tool > span {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: #fff;
	background: linear-gradient(135deg, #0fb77a, #153b54);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 900;
}

.home-tool strong,
.home-event strong {
	display: grid;
	gap: 2px;
	color: var(--aihub-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.home-tool small,
.home-event small {
	color: #8a7f78;
	font-size: 12px;
	font-weight: 500;
}

.home-tool em,
.home-event em {
	padding: 6px 10px;
	color: var(--aihub-primary-strong);
	border: 1px solid #ffc6a7;
	border-radius: 6px;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	white-space: nowrap;
}

.home-event > span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--aihub-primary-strong);
	background: #fff1e9;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 850;
}

.home-partners {
	margin-top: 42px;
}

.home-partners h2 {
	margin-bottom: 16px;
	text-align: center;
	font-size: 18px;
}

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

.home-partners__grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	color: #2f2722;
	background: #fff;
	border: 1px solid var(--aihub-line);
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(71, 42, 25, 0.04);
	font-size: 16px;
	font-weight: 850;
}

.aihub-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	color: #928780;
	font-size: 13px;
}

.aihub-breadcrumb a:hover {
	color: var(--aihub-primary-strong);
}

.archive-hero {
	padding: 34px 0 26px;
	background:
		radial-gradient(circle at 80% 20%, rgba(255, 106, 33, 0.1), transparent 24rem),
		linear-gradient(180deg, rgba(255, 249, 245, 0.92), rgba(255, 255, 255, 0.96));
}

.archive-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 130px;
}

.archive-hero h1 {
	margin: 22px 0 10px;
	color: var(--aihub-ink);
	font-size: 42px;
	line-height: 1.2;
	letter-spacing: 0;
}

.archive-hero p {
	margin: 0;
	color: #7c716b;
	font-size: 16px;
}

.archive-shell {
	padding: 20px 0 54px;
}

.archive-shell__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 318px;
	gap: 30px;
	align-items: start;
}

.archive-main {
	padding: 20px 24px 24px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--aihub-line);
	border-radius: 10px;
}

.archive-tabs {
	display: flex;
	align-items: center;
	gap: 34px;
	padding-bottom: 18px;
	margin-bottom: 14px;
	border-bottom: 1px solid #f3dfd2;
}

.archive-tabs a {
	position: relative;
	color: #6c625c;
	font-size: 14px;
	font-weight: 800;
}

.archive-tabs .is-active {
	color: var(--aihub-primary-strong);
}

.archive-tabs .is-active::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -19px;
	height: 2px;
	content: "";
	background: var(--aihub-primary);
	border-radius: 2px;
}

.archive-list {
	display: grid;
	gap: 0;
}

.archive-article {
	display: grid;
	grid-template-columns: 258px minmax(0, 1fr);
	gap: 22px;
	padding: 22px 0;
	border-bottom: 1px solid #f2e2d8;
}

.archive-article:last-child {
	border-bottom: 0;
}

.archive-article__image {
	display: block;
	overflow: hidden;
	border-radius: 7px;
	aspect-ratio: 1.76 / 1;
	background: #f8eee7;
}

.archive-article__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.archive-article:hover .archive-article__image img {
	transform: scale(1.03);
}

.archive-article__body {
	display: grid;
	align-content: center;
	gap: 8px;
	min-width: 0;
}

.archive-article__tag {
	width: fit-content;
	padding: 4px 8px;
	color: var(--aihub-primary-strong);
	background: #fff0e8;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
}

.archive-article h2 {
	margin: 0;
	color: var(--aihub-ink);
	font-size: 22px;
	font-weight: 850;
	line-height: 1.35;
}

.archive-article p {
	margin: 0;
	color: #756b65;
	font-size: 14px;
	line-height: 1.72;
}

.archive-article__meta,
.single-content__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 18px;
	color: #968b84;
	font-size: 13px;
}

.archive-sidebar {
	display: grid;
	gap: 22px;
}

.archive-tags div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.archive-tags a,
.single-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	color: #746a64;
	background: #fff7f2;
	border: 1px solid #f1ded1;
	border-radius: var(--aihub-radius-pill);
	font-size: 12px !important;
	text-decoration: none;
}

.archive-empty {
	padding: 42px 0;
	color: #7d726c;
	text-align: center;
}

.navigation.pagination {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

.nav-links {
	display: flex;
	gap: 8px;
}

.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	color: #746a64;
	background: #fff;
	border: 1px solid #f1ded1;
	border-radius: 6px;
	font-size: 13px;
}

.page-numbers.current {
	color: #fff;
	background: var(--aihub-primary);
	border-color: var(--aihub-primary);
}

.single-article {
	padding: 34px 0 58px;
}

.single-article__grid {
	display: grid;
	grid-template-columns: 178px minmax(0, 790px) 318px;
	gap: 28px;
	align-items: start;
	margin-top: 28px;
}

.single-toc {
	position: sticky;
	top: 96px;
	padding: 18px 16px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--aihub-line);
	border-radius: 8px;
}

.single-toc h2 {
	margin: 0 0 12px;
	color: var(--aihub-ink);
	font-size: 15px;
	font-weight: 850;
}

.single-toc ol {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.single-toc a {
	color: #746a64;
	font-size: 13px;
	line-height: 1.45;
}

.single-toc a:hover {
	color: var(--aihub-primary-strong);
}

.single-toc .is-level-3 {
	padding-left: 10px;
}

.single-content {
	min-width: 0;
}

.single-content__header {
	display: grid;
	gap: 14px;
	margin-bottom: 24px;
}

.single-content__header h1 {
	margin: 0;
	color: var(--aihub-ink);
	font-size: 42px;
	font-weight: 850;
	line-height: 1.28;
	letter-spacing: 0;
}

.single-content__header p {
	margin: 0;
	color: #756b65;
	font-size: 16px;
	line-height: 1.85;
}

.single-content__cover {
	width: 100%;
	aspect-ratio: 2.2 / 1;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 14px 32px rgba(31, 22, 18, 0.12);
}

.single-tldr,
.single-block,
.single-author-card {
	margin-top: 28px;
	padding: 22px;
	background: #fffaf6;
	border: 1px solid #f1d8c8;
	border-radius: 8px;
}

.single-tldr h2,
.single-block__head h2,
.single-author-card h2 {
	margin: 0 0 12px;
	color: var(--aihub-primary-strong);
	font-size: 16px;
	font-weight: 850;
}

.single-tldr p,
.single-block p {
	margin: 0;
	color: #6d635d;
	font-size: 14px;
	line-height: 1.85;
}

.entry-content {
	margin-top: 30px;
	color: #3d342f;
	font-size: 16px;
	line-height: 1.95;
}

.entry-content h2,
.entry-content h3 {
	scroll-margin-top: 98px;
	color: var(--aihub-ink);
	line-height: 1.35;
}

.entry-content h2 {
	margin: 34px 0 14px;
	font-size: 25px;
}

.entry-content h3 {
	margin: 28px 0 12px;
	font-size: 20px;
}

.entry-content p {
	margin: 0 0 18px;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 22px 0;
	overflow: hidden;
	border: 1px solid #f1ded1;
	border-radius: 8px;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border-bottom: 1px solid #f1ded1;
	font-size: 14px;
	text-align: left;
}

.single-faq {
	display: grid;
	gap: 10px;
}

.single-faq details {
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #f1ded1;
	border-radius: 8px;
}

.single-faq summary {
	color: var(--aihub-ink);
	font-weight: 800;
	cursor: pointer;
}

.single-sources ul {
	display: grid;
	gap: 8px;
	padding-left: 18px;
	margin: 0;
}

.single-sources a {
	color: var(--aihub-primary-strong);
}

.single-content__footer {
	margin-top: 28px;
}

.single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.single-related__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.single-related__item {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px;
	background: #fff;
	border: 1px solid #f1ded1;
	border-radius: 8px;
}

.single-related__item img {
	width: 88px;
	aspect-ratio: 1.25 / 1;
	object-fit: cover;
	border-radius: 6px;
}

.single-related__item strong {
	color: var(--aihub-ink);
	font-size: 14px;
	line-height: 1.45;
}

.single-related__item span {
	color: #948982;
	font-size: 12px;
}

.single-sidebar {
	display: grid;
	gap: 22px;
}

.single-author-card {
	margin-top: 0;
	background: #fff;
}

.single-author-card__body {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.single-author-card img {
	border-radius: 50%;
}

.single-author-card strong {
	color: var(--aihub-ink);
	font-size: 16px;
	font-weight: 850;
}

.single-author-card p {
	margin: 8px 0 14px;
	color: #7d726c;
	font-size: 13px;
	line-height: 1.7;
}

.single-author-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	min-width: 96px;
	color: var(--aihub-primary-strong);
	border: 1px solid #ffc6a7;
	border-radius: var(--aihub-radius-pill);
	font-size: 13px;
	font-weight: 850;
}

.topic-page {
	padding: 34px 0 58px;
}

.topic-hero {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	min-height: 328px;
	margin-top: 24px;
	padding: 38px;
	overflow: hidden;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(18, 11, 7, 0.92) 0%, rgba(18, 11, 7, 0.66) 45%, rgba(18, 11, 7, 0.08) 100%),
		var(--topic-image) center / cover no-repeat;
	border-radius: 10px;
	box-shadow: 0 18px 44px rgba(58, 32, 20, 0.16);
}

.topic-hero > div {
	position: relative;
	z-index: 1;
	max-width: 620px;
}

.topic-hero span {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	color: var(--aihub-primary);
	border: 1px solid rgba(255, 106, 33, 0.68);
	border-radius: 5px;
	font-size: 12px;
	font-weight: 850;
}

.topic-hero h1 {
	margin: 24px 0 12px;
	font-size: 44px;
	line-height: 1.15;
	letter-spacing: 0;
}

.topic-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
}

.topic-hero > a,
.topic-follow {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 24px;
	color: #fff;
	background: var(--aihub-primary);
	border-radius: var(--aihub-radius-pill);
	font-size: 14px;
	font-weight: 850;
}

.topic-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, max-content);
	gap: 34px;
	margin-top: 34px;
}

.topic-hero__stats strong {
	display: grid;
	gap: 2px;
	color: #fff;
	font-size: 18px;
}

.topic-hero__stats small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 500;
}

.topic-tabs {
	display: flex;
	align-items: center;
	gap: 44px;
	margin-top: 24px;
	padding: 0 22px;
	background: #fff;
	border: 1px solid var(--aihub-line);
	border-radius: 8px;
}

.topic-tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 60px;
	color: #6f645e;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

.topic-tabs .is-active {
	color: var(--aihub-primary-strong);
}

.topic-tabs .is-active::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	content: "";
	background: var(--aihub-primary);
}

.topic-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 318px;
	gap: 28px;
	align-items: start;
	margin-top: 28px;
}

.topic-main {
	padding: 22px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--aihub-line);
	border-radius: 10px;
}

.topic-list .archive-article:first-child {
	padding-top: 0;
}

.topic-side {
	display: grid;
	gap: 22px;
}

.topic-side .home-card p {
	margin: 0 0 18px;
	color: #756b65;
	font-size: 14px;
	line-height: 1.8;
}

.topic-follow {
	width: 100%;
}

.search-hero__form {
	display: flex;
	align-items: center;
	width: min(100%, 380px);
	height: 46px;
	padding: 0 6px 0 18px;
	background: #fff;
	border: 1px solid #ffd8c5;
	border-radius: var(--aihub-radius-pill);
	box-shadow: 0 12px 28px rgba(84, 47, 28, 0.06);
}

.search-hero__form input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0;
	color: var(--aihub-ink);
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 14px;
}

.search-hero__form button {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	color: #fff;
	background: var(--aihub-primary);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.search-hero__form svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.search-empty {
	padding: 56px 20px;
	text-align: center;
}

.search-empty h2 {
	margin: 0 0 10px;
	color: var(--aihub-ink);
	font-size: 24px;
}

.search-empty p {
	margin: 0;
	color: #7d726c;
}

.author-page {
	padding: 34px 0 0;
}

.author-hero {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	margin-top: 24px;
	padding: 30px;
	background: #fff;
	border: 1px solid var(--aihub-line);
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(74, 43, 25, 0.06);
}

.author-hero img {
	border-radius: 50%;
}

.author-hero span {
	color: var(--aihub-primary-strong);
	font-size: 13px;
	font-weight: 850;
}

.author-hero h1 {
	margin: 4px 0 8px;
	color: var(--aihub-ink);
	font-size: 34px;
	line-height: 1.2;
}

.author-hero p {
	max-width: 680px;
	margin: 0;
	color: #756b65;
	font-size: 15px;
	line-height: 1.75;
}

.author-hero > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	min-width: 104px;
	color: var(--aihub-primary-strong);
	border: 1px solid #ffc6a7;
	border-radius: var(--aihub-radius-pill);
	font-size: 14px;
	font-weight: 850;
}

.page-hub-hero {
	position: relative;
	overflow: hidden;
	padding: 36px 0 34px;
}

.page-hub-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, #f1d7c6, transparent);
}

.page-hub-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
	gap: 48px;
	align-items: stretch;
	min-height: 292px;
}

.page-hub-hero__copy {
	align-self: center;
	max-width: 760px;
}

.page-hub-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 11px;
	color: var(--aihub-primary-strong);
	background: #fff1e9;
	border: 1px solid #ffd4bf;
	border-radius: var(--aihub-radius-pill);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.page-hub-hero h1 {
	margin-top: 20px;
	font-size: clamp(42px, 5vw, 64px);
	line-height: 1.04;
}

.page-hub-hero p {
	max-width: 720px;
	color: #665c56;
	font-size: 17px;
	line-height: 1.9;
}

.page-hub-hero__chips,
.page-hub-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.page-hub-hero__chips a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	color: #4b4039;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #f1dccf;
	border-radius: var(--aihub-radius-pill);
	font-size: 13px;
	font-weight: 800;
}

.page-hub-hero__chips a:hover {
	color: var(--aihub-primary-strong);
	border-color: #ffc4a6;
}

.page-hub-hero__actions {
	margin-top: 26px;
	gap: 16px;
}

.page-hub-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	color: #fff;
	background: var(--aihub-primary);
	border-radius: var(--aihub-radius-pill);
	box-shadow: 0 14px 26px rgba(255, 106, 33, 0.2);
	font-size: 14px;
	font-weight: 900;
}

.page-hub-hero__link {
	color: var(--aihub-primary-strong);
	font-size: 14px;
	font-weight: 900;
}

.page-hub-hero__panel {
	position: relative;
	display: grid;
	align-content: end;
	overflow: hidden;
	min-height: 292px;
	padding: 18px;
	background: #201712;
	border: 1px solid rgba(255, 214, 190, 0.9);
	border-radius: 14px;
	box-shadow: 0 28px 58px rgba(74, 43, 25, 0.16);
}

.page-hub-hero__panel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.76;
}

.page-hub-hero__panel::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(32, 23, 18, 0.06), rgba(32, 23, 18, 0.82)),
		linear-gradient(90deg, rgba(255, 106, 33, 0.22), transparent 58%);
}

.page-hub-hero__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.page-hub-hero__stats span {
	min-width: 0;
	padding: 13px 10px;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 10px;
	backdrop-filter: blur(12px);
}

.page-hub-hero__stats strong,
.page-hub-hero__stats small {
	display: block;
	color: #fff;
}

.page-hub-hero__stats strong {
	font-size: 24px;
	font-weight: 950;
	line-height: 1.05;
}

.page-hub-hero__stats small {
	margin-top: 6px;
	opacity: 0.78;
	font-size: 12px;
	font-weight: 750;
}

.page-hub {
	padding: 34px 0 64px;
}

.page-hub__layout {
	display: grid;
	grid-template-columns: minmax(290px, 0.36fr) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.page-hub-feature {
	position: sticky;
	top: 92px;
	display: grid;
	min-height: 346px;
	padding: 28px;
	color: #fff;
	background:
		radial-gradient(circle at 100% 0, rgba(255, 106, 33, 0.34), transparent 17rem),
		linear-gradient(135deg, #241812 0%, #413126 100%);
	border: 1px solid rgba(255, 195, 163, 0.36);
	border-radius: 14px;
	box-shadow: 0 22px 48px rgba(74, 43, 25, 0.18);
}

.page-hub-feature__label {
	justify-self: start;
	height: 28px;
	padding: 6px 11px;
	color: #ffd7c4;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--aihub-radius-pill);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.page-hub-feature h2 {
	align-self: end;
	margin: 72px 0 12px;
	color: #fff;
	font-size: 30px;
	line-height: 1.25;
	letter-spacing: 0;
}

.page-hub-feature p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.85;
}

.page-hub-feature__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 28px;
}

.page-hub-feature small,
.page-hub-feature em {
	color: #ffd4bf;
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
}

.page-hub__content {
	min-width: 0;
}

.page-hub__toolbar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	padding: 0 2px 18px;
}

.page-hub__toolbar span {
	display: block;
	margin-bottom: 5px;
	color: var(--aihub-primary-strong);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.page-hub__toolbar h2 {
	margin: 0;
	color: var(--aihub-ink);
	font-size: 26px;
	line-height: 1.25;
}

.page-hub__toolbar small {
	flex: 0 0 auto;
	color: #7c716b;
	font-size: 13px;
	font-weight: 800;
}

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

.page-hub-card {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	min-height: 184px;
	padding: 23px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--aihub-line);
	border-radius: 12px;
	box-shadow: 0 14px 34px rgba(74, 43, 25, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-hub-card:hover {
	border-color: #ffc5a6;
	box-shadow: 0 22px 44px rgba(74, 43, 25, 0.11);
	transform: translateY(-2px);
}

.page-hub-card__icon {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	color: var(--aihub-primary-strong);
	background: #fff1e9;
	border: 1px solid #ffd8c5;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
}

.page-hub-card__body {
	display: grid;
	min-width: 0;
	min-height: 138px;
}

.page-hub-card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--aihub-ink);
	font-size: 19px;
	font-weight: 850;
	line-height: 1.35;
}

.page-hub-card p {
	margin: 0;
	color: #706761;
	font-size: 14px;
	line-height: 1.75;
}

.page-hub-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	align-self: end;
	margin-top: 16px;
}

.page-hub-card small {
	display: inline-flex;
	padding: 5px 10px;
	color: var(--aihub-primary-strong);
	background: #fff7f2;
	border: 1px solid #f1ded1;
	border-radius: var(--aihub-radius-pill);
	font-size: 12px;
	font-weight: 800;
}

.page-hub-card em {
	flex: 0 0 auto;
	color: var(--aihub-primary-strong);
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
}

.page-default {
	padding: 32px 0 64px;
}

.page-default__content {
	max-width: 920px;
	padding: 34px;
	margin-inline: auto;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--aihub-line);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(82, 45, 24, 0.07);
}

.page-default__cover {
	width: 100%;
	margin-bottom: 28px;
	border-radius: 10px;
	aspect-ratio: 1.9 / 1;
	object-fit: cover;
}

.page-default__content .entry-content {
	color: #4f453f;
	font-size: 16px;
	line-height: 1.9;
}

.page-default__content .entry-content > *:first-child {
	margin-top: 0;
}

.page-default__content .entry-content > *:last-child {
	margin-bottom: 0;
}

.site-footer {
	margin-top: 56px;
	padding: 42px 0 26px;
	background:
		radial-gradient(circle at 90% 0, rgba(255, 106, 33, 0.1), transparent 28rem),
		linear-gradient(180deg, #fff4ed 0%, #fff8f4 100%);
	border-top: 1px solid #f3dfd2;
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(230px, 1.18fr) minmax(520px, 2.7fr) minmax(238px, 1.08fr);
	gap: 54px;
	align-items: start;
}

.site-footer__brand .site-brand {
	margin-bottom: 18px;
}

.site-footer__brand p,
.site-footer__newsletter p {
	margin: 0;
	color: #7f746d;
	font-size: 13px;
	line-height: 1.9;
}

.site-footer__brand p {
	max-width: 292px;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.site-footer__socials a {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	color: #231813;
	background: rgba(32, 23, 18, 0.08);
	border-radius: 50%;
	transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-footer__socials a:hover {
	color: #fff;
	background: var(--aihub-primary);
	transform: translateY(-1px);
}

.site-footer__socials svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: repeat(6, minmax(70px, 1fr));
	gap: 26px;
}

.site-footer__column h2,
.site-footer__newsletter h2 {
	margin: 0 0 14px;
	color: var(--aihub-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.site-footer__column ul {
	display: grid;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__column a {
	color: #7d726c;
	font-size: 13px;
	line-height: 1.5;
	transition: color 160ms ease;
}

.site-footer__column a:hover {
	color: var(--aihub-primary-strong);
}

.site-footer__newsletter {
	min-width: 0;
}

.site-footer__newsletter p {
	margin-bottom: 17px;
}

.site-footer__form {
	display: flex;
	align-items: center;
	width: 100%;
	height: 38px;
	padding: 0 3px 0 17px;
	background: #fff;
	border: 1px solid #f4ddcf;
	border-radius: var(--aihub-radius-pill);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-footer__form input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0;
	color: var(--aihub-ink);
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 12px;
}

.site-footer__form input::placeholder {
	color: #b7aca6;
}

.site-footer__form button {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 0;
	color: #fff;
	background: linear-gradient(180deg, #ff7b35 0%, #ff5c17 100%);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(255, 93, 23, 0.2);
	cursor: pointer;
}

.site-footer__form svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px 26px;
	margin-top: 38px;
	padding-top: 22px;
	color: #8c817b;
	border-top: 1px solid rgba(237, 211, 196, 0.76);
	font-size: 12px;
}

.site-footer__bottom a {
	color: inherit;
}

.site-footer__bottom a:hover {
	color: var(--aihub-primary-strong);
}

@media (max-width: 1180px) {
	.primary-menu {
		gap: 16px;
	}

	.site-header__nav {
		margin-left: 28px;
	}

	.site-header__search {
		width: 188px;
	}

	.site-header__actions {
		gap: 10px;
	}

	.site-header__login {
		min-width: 86px;
		padding-inline: 14px;
	}

	.site-footer__main {
		grid-template-columns: minmax(220px, 0.9fr) minmax(420px, 1.8fr);
		gap: 38px;
	}

	.site-footer__newsletter {
		grid-column: 1 / -1;
		max-width: 360px;
	}

	.site-footer__columns {
		grid-template-columns: repeat(3, minmax(100px, 1fr));
	}

	.home-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
		gap: 34px;
	}

	.home-hero__stats {
		grid-template-columns: repeat(2, max-content);
	}

	.home-categories__panel {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.home-focus__body {
		grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1fr);
	}

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

	.home-latest__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-partners__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.archive-shell__grid,
	.single-article__grid,
	.topic-layout {
		grid-template-columns: 1fr;
	}

	.single-toc {
		position: static;
	}

	.archive-sidebar,
	.single-sidebar,
	.topic-side {
		grid-template-columns: 1fr 1fr;
	}

	.topic-hero__stats {
		grid-template-columns: repeat(2, max-content);
	}

	.page-hub-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
		gap: 32px;
	}

	.page-hub__layout {
		grid-template-columns: 1fr;
	}

	.page-hub-feature {
		position: static;
		min-height: 270px;
	}

	.page-hub-feature h2 {
		margin-top: 52px;
	}
}

@media (max-width: 980px) {
	.aihub-container {
		width: min(calc(100% - 40px), var(--aihub-container));
	}

	.site-header__inner {
		min-height: 68px;
	}

	.site-brand {
		min-width: 0;
	}

	.site-brand__mark {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.site-brand__name {
		font-size: 24px;
	}

	.site-header__toggle {
		display: inline-grid;
	}

	.site-header__panel {
		position: absolute;
		top: calc(100% + 1px);
		left: 20px;
		right: 20px;
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: stretch;
		gap: 18px;
		padding: 18px;
		background: rgba(255, 250, 246, 0.98);
		border: 1px solid var(--aihub-line);
		border-radius: 18px;
		box-shadow: var(--aihub-shadow-soft);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease;
	}

	.site-header.is-open .site-header__panel {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-header__nav,
	.primary-menu,
	.site-header__actions {
		width: 100%;
	}

	.site-header__nav {
		margin-left: 0;
	}

	.primary-menu {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.primary-menu .menu-item,
	.primary-menu a {
		width: 100%;
	}

	.primary-menu a {
		min-height: 42px;
		background: #fff;
		border: 1px solid #f3dfd2;
		border-radius: 14px;
		font-size: 14px;
	}

	.primary-menu a::after {
		display: none;
	}

	.site-header__actions {
		display: grid;
		grid-template-columns: 1fr auto auto;
		gap: 10px;
		justify-content: stretch;
	}

	.site-header__search {
		width: 100%;
	}

	.site-footer {
		margin-top: 42px;
		padding-top: 34px;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.site-footer__brand p {
		max-width: 520px;
	}

	.site-footer__newsletter {
		max-width: none;
	}

	.home-hero {
		padding: 46px 0 28px;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.home-hero h1 {
		max-width: 720px;
		font-size: clamp(38px, 8vw, 58px);
	}

	.home-hero__visual {
		justify-content: center;
		min-height: 0;
	}

	.home-hero__visual img {
		width: min(100%, 520px);
	}

	.home-focus__body,
	.home-sidebar,
	.home-compact__grid {
		grid-template-columns: 1fr;
	}

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

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

	.archive-sidebar,
	.single-sidebar,
	.topic-side {
		grid-template-columns: 1fr;
	}

	.archive-article {
		grid-template-columns: 210px minmax(0, 1fr);
	}

	.single-content__header h1 {
		font-size: 34px;
	}

	.topic-tabs {
		overflow-x: auto;
		gap: 28px;
	}

	.archive-hero__inner {
		display: grid;
		gap: 22px;
	}

	.page-hub-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.page-hub-hero__panel {
		min-height: 260px;
	}

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

@media (max-width: 560px) {
	.aihub-container {
		width: min(calc(100% - 28px), var(--aihub-container));
	}

	.site-header__inner {
		min-height: 64px;
	}

	.site-brand__tagline {
		display: none;
	}

	.site-brand__name {
		font-size: 22px;
	}

	.site-header__panel {
		left: 14px;
		right: 14px;
		padding: 14px;
		border-radius: 16px;
	}

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

	.site-header__actions {
		grid-template-columns: 1fr;
	}

	.site-header__login,
	.site-header__search,
	.site-header__theme {
		width: 100%;
	}

	.site-header__theme {
		border: 1px solid #f3dfd2;
	}

	.site-footer {
		padding: 30px 0 22px;
	}

	.site-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 18px;
	}

	.site-footer__bottom {
		justify-content: flex-start;
		gap: 10px 18px;
		margin-top: 30px;
	}

	.home-hero {
		padding-top: 38px;
	}

	.home-hero h1 {
		font-size: 38px;
	}

	.home-hero__content > p {
		margin-top: 16px;
		font-size: 15px;
	}

	.home-hero__actions {
		display: grid;
		gap: 12px;
		margin-top: 24px;
	}

	.home-hero__button {
		width: 100%;
		height: 46px;
	}

	.home-hero__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 14px;
		margin-top: 28px;
	}

	.home-hero__stat {
		gap: 10px;
	}

	.home-hero__stat strong {
		font-size: 18px;
	}

	.home-categories {
		margin-top: 8px;
	}

	.home-categories__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 16px;
	}

	.home-category {
		min-height: 104px;
	}

	.home-section {
		margin-top: 38px;
	}

	.home-section__head h2,
	.home-card__head h2 {
		font-size: 20px;
	}

	.home-feature {
		min-height: 330px;
	}

	.home-feature__copy strong {
		font-size: 20px;
	}

	.home-mini-article,
	.home-mini-row {
		grid-template-columns: 86px minmax(0, 1fr);
	}

	.home-mini-article img,
	.home-mini-row img {
		width: 86px;
	}

	.home-card {
		padding: 18px;
	}

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

	.home-tool,
	.home-event {
		grid-template-columns: 38px minmax(0, 1fr);
	}

	.home-tool em,
	.home-event em {
		grid-column: 2;
		width: fit-content;
	}

	.archive-hero {
		padding-top: 24px;
	}

	.archive-hero__inner {
		min-height: 92px;
	}

	.archive-hero h1 {
		font-size: 32px;
	}

	.archive-main {
		padding: 16px;
	}

	.archive-tabs {
		gap: 22px;
		overflow-x: auto;
		white-space: nowrap;
	}

	.archive-article {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.archive-article h2 {
		font-size: 19px;
	}

	.single-article {
		padding-top: 24px;
	}

	.single-content__header h1 {
		font-size: 29px;
	}

	.single-related__grid,
	.single-related__item,
	.single-author-card__body {
		grid-template-columns: 1fr;
	}

	.single-related__item img {
		width: 100%;
		aspect-ratio: 1.6 / 1;
	}

	.topic-hero {
		display: grid;
		min-height: 360px;
		padding: 26px;
	}

	.topic-hero h1 {
		font-size: 34px;
	}

	.topic-hero__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.topic-tabs {
		padding-inline: 16px;
	}

	.topic-main {
		padding: 16px;
	}

	.author-hero {
		grid-template-columns: 72px minmax(0, 1fr);
		padding: 22px;
	}

	.author-hero img {
		width: 72px;
		height: 72px;
	}

	.author-hero > a {
		grid-column: 2;
		width: fit-content;
	}

	.page-hub {
		padding-top: 24px;
	}

	.page-hub-hero {
		padding-top: 24px;
	}

	.page-hub-hero h1 {
		font-size: 38px;
	}

	.page-hub-hero p {
		font-size: 15px;
	}

	.page-hub-hero__actions {
		align-items: stretch;
		gap: 12px;
	}

	.page-hub-hero__button,
	.page-hub-hero__link {
		width: 100%;
		justify-content: center;
	}

	.page-hub-hero__panel {
		min-height: 232px;
		padding: 12px;
		border-radius: 12px;
	}

	.page-hub-hero__stats {
		gap: 7px;
	}

	.page-hub-hero__stats span {
		padding: 10px 7px;
	}

	.page-hub-hero__stats strong {
		font-size: 20px;
	}

	.page-hub-feature {
		min-height: 0;
		padding: 22px;
	}

	.page-hub-feature h2 {
		margin-top: 48px;
		font-size: 25px;
	}

	.page-hub__toolbar {
		display: grid;
		align-items: start;
	}

	.page-hub__grid,
	.page-hub-card {
		grid-template-columns: 1fr;
	}

	.page-hub-card {
		min-height: 0;
		padding: 20px;
	}

	.page-hub-card__body {
		min-height: 0;
	}

	.page-hub-card__foot {
		align-items: flex-start;
		flex-direction: column;
	}

	.page-default {
		padding-top: 24px;
	}

	.page-default__content {
		padding: 20px;
		border-radius: 10px;
	}
}
