.ako-news-archive,
.ako-news-archive * {
	box-sizing: border-box;
}

.ako-news-archive {
	--ako-plum: #64106f;
	--ako-plum-dark: #3f1248;
	--ako-plum-deep: #2b1830;
	--ako-plum-soft: #f8f2fa;
	--ako-lilac: #f4e7f6;
	--ako-gold: #f2b84b;
	--ako-white: #ffffff;
	--ako-ink: #2b1830;
	--ako-muted: #5f5067;
	--ako-border: rgba(63, 18, 72, 0.18);
	--ako-border-strong: rgba(100, 16, 111, 0.34);
	--ako-focus: rgba(242, 184, 75, 0.78);
	--ako-card: #ffffff;
	--ako-shadow-soft: 0 12px 26px rgba(63, 18, 72, 0.06);
	--ako-shadow-card: 0 16px 36px rgba(63, 18, 72, 0.085);
	--ako-shadow-panel: 0 10px 22px rgba(63, 18, 72, 0.05);
	--ako-radius-xl: 26px;
	--ako-radius-lg: 22px;
	--ako-radius-md: 18px;
	--ako-radius-sm: 14px;
	--ako-page-width: min(1360px, calc(100% - 72px));

	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	color: var(--ako-ink);
	background:
		radial-gradient(circle at 88% 8%, rgba(100, 16, 111, 0.07), transparent 25%),
		linear-gradient(180deg, #ffffff 0%, #fbf7fc 48%, #ffffff 100%);
	overflow-x: clip;
}

.ako-news-archive :where(h1, h2, h3, p, a, span, time, strong, button, input, select) {
	letter-spacing: normal;
}

.ako-news-archive :where(img, svg) {
	max-width: 100%;
}

.ako-news-archive a {
	color: inherit;
	text-decoration: none;
}

.ako-news-archive a:focus-visible,
.ako-news-archive button:focus-visible,
.ako-news-archive input:focus-visible,
.ako-news-archive select:focus-visible {
	outline: 3px solid var(--ako-focus);
	outline-offset: 4px;
}

.ako-news-archive .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;
}

.ako-news-hero__inner,
.ako-news-topics,
.ako-news-layout,
.ako-news-stay-connected {
	width: var(--ako-page-width);
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

/* AJAX loading state */

.ako-news-archive--loading [data-ako-news-results] {
	opacity: 0.56;
	pointer-events: none;
}

[data-ako-news-results] {
	scroll-margin-top: clamp(18px, 3vw, 34px);
	transition: opacity 160ms ease;
}

/* Hero */

.ako-news-hero {
	position: relative;
	padding: clamp(34px, 4.2vw, 58px) 0 clamp(32px, 4vw, 54px);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82)),
		radial-gradient(circle at 82% 42%, rgba(100, 16, 111, 0.12), transparent 24%),
		linear-gradient(135deg, #ffffff 0%, #f8effa 100%);
	border-bottom: 1px solid var(--ako-border);
	overflow: hidden;
}

.ako-news-hero::before,
.ako-news-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-style: solid;
	border-radius: 52% 48% 55% 45%;
}

.ako-news-hero::before {
	width: 250px;
	height: 180px;
	right: 9%;
	top: 14px;
	border-width: 14px;
	border-color: rgba(100, 16, 111, 0.09);
	transform: rotate(-14deg);
}

.ako-news-hero::after {
	width: 86px;
	height: 66px;
	right: 3.5%;
	bottom: 22px;
	border-width: 12px;
	border-color: rgba(242, 184, 75, 0.24);
	transform: rotate(17deg);
}

.ako-news-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
	align-items: center;
	gap: clamp(24px, 4vw, 54px);
}

.ako-news-hero__copy {
	min-width: 0;
}

.ako-news-hero__eyebrow {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	margin: 0 0 10px;
	padding: 6px 12px;
	color: var(--ako-plum);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--ako-border);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.ako-news-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--ako-plum-dark);
	font-size: clamp(2.45rem, 5.1vw, 4.9rem);
	line-height: 0.94;
	letter-spacing: -0.055em;
	overflow-wrap: anywhere;
}

.ako-news-hero h1::after {
	content: "";
	display: block;
	width: 76px;
	height: 3px;
	margin: 18px 0 15px;
	background: var(--ako-gold);
	border-radius: 999px;
}

.ako-news-hero p:last-child {
	max-width: 590px;
	margin: 0;
	color: var(--ako-muted);
	font-size: clamp(0.98rem, 1.05vw, 1.08rem);
	line-height: 1.62;
}

/* Search */

.ako-news-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	width: 100%;
	max-width: 390px;
	justify-self: end;
	padding: 7px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--ako-border);
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(63, 18, 72, 0.07);
	backdrop-filter: blur(12px);
}

.ako-news-search input {
	width: 100%;
	min-width: 0;
	min-height: 42px;
	padding: 0 14px;
	color: var(--ako-ink);
	background: transparent;
	border: 0;
	border-radius: 999px;
	font-size: 0.96rem;
}

.ako-news-search input::placeholder {
	color: rgba(43, 24, 48, 0.68);
}

.ako-news-search button,
.ako-news-search button:visited,
.ako-news-search button:focus,
.ako-news-search button:active {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: #ffffff !important;
	background: var(--ako-plum) !important;
	border: 0 !important;
	border-radius: 50%;
	font-size: 1.08rem;
	font-weight: 850;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ako-news-search button:hover {
	color: #ffffff !important;
	background: var(--ako-plum-dark) !important;
	transform: translateY(-1px);
}

/* Topic chips */

.ako-news-topics {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 9px;
	padding: 20px 0 24px;
}

.ako-news-topic,
.ako-news-topic:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 39px;
	padding: 8px 15px;
	color: var(--ako-plum-dark) !important;
	background: #ffffff !important;
	border: 1px solid var(--ako-border);
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 850;
	line-height: 1;
	text-decoration: none !important;
	box-shadow: 0 7px 16px rgba(63, 18, 72, 0.04);
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ako-news-topic:hover {
	color: var(--ako-plum-dark) !important;
	background: var(--ako-plum-soft) !important;
	border-color: var(--ako-border-strong);
	text-decoration: none !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(63, 18, 72, 0.065);
}

.ako-news-topic.ako-news-topic--active,
.ako-news-topic.ako-news-topic--active:visited,
.ako-news-topic.ako-news-topic--active:focus,
.ako-news-topic.ako-news-topic--active:active {
	color: #ffffff !important;
	background: var(--ako-plum) !important;
	border-color: var(--ako-plum) !important;
	text-decoration: none !important;
	box-shadow: 0 12px 24px rgba(100, 16, 111, 0.18);
}

.ako-news-topic.ako-news-topic--active:hover {
	color: #ffffff !important;
	background: var(--ako-plum-dark) !important;
	border-color: var(--ako-plum-dark) !important;
	text-decoration: none !important;
}

.ako-news-topic__icon,
.ako-news-topic svg {
	width: 15px;
	height: 15px;
}

/* Icons */

.ako-news-topic svg,
.ako-news-card__category svg,
.ako-news-panel h2 svg,
.ako-news-featured__meta svg,
.ako-news-card__footer svg,
.ako-news-read-more svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Main layout */

.ako-news-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
	gap: 28px;
	align-items: start;
	padding: 0 0 54px;
}

.ako-news-main {
	min-width: 0;
}

/* Featured article */

.ako-news-featured {
	display: grid;
	grid-template-columns: minmax(390px, 1.06fr) minmax(340px, 0.94fr);
	min-height: 292px;
	margin-bottom: 22px;
	background: var(--ako-card);
	border: 1px solid var(--ako-border);
	border-radius: var(--ako-radius-xl);
	box-shadow: var(--ako-shadow-card);
	overflow: hidden;
}

.ako-news-featured__media,
.ako-news-card__media {
	position: relative;
	display: block;
	background: linear-gradient(135deg, var(--ako-lilac), #ffffff);
	overflow: hidden;
}

.ako-news-featured__media {
	min-height: 292px;
}

.ako-news-featured__media img,
.ako-news-card__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 220ms ease;
}

.ako-news-featured:hover img,
.ako-news-card:hover img {
	transform: scale(1.03);
}

.ako-news-featured__badge {
	position: absolute;
	z-index: 2;
	top: 16px;
	left: 16px;
	padding: 7px 11px;
	color: #ffffff;
	background: var(--ako-plum);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(63, 18, 72, 0.16);
}

.ako-news-featured__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 2.6vw, 36px);
}

.ako-news-featured h2,
.ako-news-card h2,
.ako-news-card--spotlight h3,
.ako-news-panel h2,
.ako-news-stay-connected h2,
.ako-news-empty h2 {
	color: var(--ako-plum-dark);
}

.ako-news-featured h2 {
	max-width: 540px;
	margin: 0;
	font-size: clamp(1.75rem, 2.05vw, 2.55rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.ako-news-featured h2 a:hover,
.ako-news-card h2 a:hover,
.ako-news-card--spotlight h3 a:hover {
	color: var(--ako-plum);
	text-decoration: underline;
	text-decoration-color: var(--ako-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.ako-news-featured p {
	display: -webkit-box;
	max-width: 540px;
	margin: 13px 0 0;
	color: var(--ako-muted);
	font-size: 0.95rem;
	line-height: 1.58;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ako-news-featured__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 22px;
}

.ako-news-featured__meta time,
.ako-news-card__footer time {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--ako-muted);
	font-size: 0.82rem;
	font-weight: 750;
	line-height: 1;
	white-space: nowrap;
}

.ako-news-featured__meta svg,
.ako-news-card__footer time svg {
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
}

.ako-news-read-more,
.ako-news-read-more:visited,
.ako-news-read-more:focus,
.ako-news-read-more:active,
.ako-news-featured:hover .ako-news-read-more,
.ako-news-featured:hover .ako-news-read-more:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 39px;
	padding: 8px 15px;
	color: #ffffff !important;
	background: var(--ako-plum) !important;
	border: 0 !important;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 900;
	text-decoration: none !important;
	box-shadow: 0 10px 22px rgba(100, 16, 111, 0.16);
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ako-news-read-more:hover,
.ako-news-featured:hover .ako-news-read-more:hover {
	color: #ffffff !important;
	background: var(--ako-plum-dark) !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(100, 16, 111, 0.2);
}

.ako-news-read-more svg,
.ako-news-read-more:hover svg {
	width: 16px;
	height: 16px;
	color: #ffffff !important;
	stroke: currentColor;
}

/* Topic spotlight sections */

.ako-news-spotlights {
	display: grid;
	gap: 22px;
	margin: 0 0 26px;
}

.ako-news-spotlight {
	position: relative;
	padding: clamp(18px, 1.8vw, 22px);
	padding-bottom: clamp(20px, 2vw, 26px);
	background: #ffffff;
	border: 1px solid rgba(63, 18, 72, 0.16);
	border-radius: var(--ako-radius-xl);
	box-shadow: 0 14px 30px rgba(63, 18, 72, 0.06);
	overflow: hidden;
}

.ako-news-spotlight::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0 auto 0 0;
	width: 6px;
	background: linear-gradient(180deg, var(--ako-plum), var(--ako-gold));
	border-radius: var(--ako-radius-xl) 0 0 var(--ako-radius-xl);
}

.ako-news-spotlight--autisms-got-talent::after,
.ako-news-spotlight--autism-hero-awards::after {
	content: "";
	position: absolute;
	z-index: 0;
	right: clamp(16px, 2.5vw, 30px);
	top: clamp(14px, 1.8vw, 22px);
	width: 74px;
	height: 74px;
	border: 12px solid rgba(100, 16, 111, 0.05);
	border-radius: 52% 48% 56% 44%;
	transform: rotate(-12deg);
	pointer-events: none;
}

.ako-news-spotlight--autism-hero-awards::after {
	border-color: rgba(242, 184, 75, 0.14);
	transform: rotate(12deg);
}

.ako-news-section-header {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.ako-news-section-header__kicker {
	width: fit-content;
	margin: 0 0 7px;
	padding: 5px 9px;
	color: var(--ako-plum);
	background: #ffffff;
	border: 1px solid rgba(100, 16, 111, 0.18);
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ako-news-section-header h2 {
	margin: 0;
	color: var(--ako-plum-dark);
	font-size: clamp(1.35rem, 1.55vw, 1.8rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.ako-news-section-header p:not(.ako-news-section-header__kicker) {
	max-width: 620px;
	margin: 8px 0 0;
	color: var(--ako-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.ako-news-section-header__link,
.ako-news-section-header__link:visited,
.ako-news-section-header__link:focus,
.ako-news-section-header__link:active {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 37px;
	padding: 8px 14px;
	color: #ffffff !important;
	background: var(--ako-plum) !important;
	border: 0 !important;
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(100, 16, 111, 0.16);
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ako-news-section-header__link:hover {
	color: #ffffff !important;
	background: var(--ako-plum-dark) !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(100, 16, 111, 0.2);
}

.ako-news-spotlight__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
	align-items: stretch;
}

.ako-news-card--spotlight {
	height: 100%;
	background: #ffffff;
	border-color: rgba(63, 18, 72, 0.15);
	box-shadow: 0 10px 22px rgba(63, 18, 72, 0.05);
}

.ako-news-card--spotlight .ako-news-card__media {
	aspect-ratio: 16 / 8.8;
}

.ako-news-card--spotlight .ako-news-card__media + .ako-news-card__body {
	border-top: 1px solid rgba(63, 18, 72, 0.08);
}

.ako-news-card--spotlight .ako-news-card__body,
.ako-news-card--spotlight .ako-news-card__footer {
	background: #ffffff;
}

.ako-news-card--spotlight .ako-news-card__body {
	padding: 16px 16px 14px;
}

.ako-news-card--spotlight h3 {
	display: -webkit-box;
	margin: 0;
	font-size: clamp(1rem, 0.9vw, 1.12rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ako-news-card--spotlight h3 a {
	color: inherit;
	text-decoration: none;
}

.ako-news-card--spotlight p {
	-webkit-line-clamp: 3;
	font-size: 0.88rem;
}

/* Latest / standard post grid */

.ako-news-latest {
	margin-top: 0;
}

.ako-news-latest__header {
	margin: 0 0 14px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.ako-news-latest__header > div {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 18px;
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(63, 18, 72, 0.14);
}

.ako-news-latest__header::before {
	display: none;
}

.ako-news-latest__header h2 {
	margin: 0;
	color: var(--ako-plum-dark);
	font-size: clamp(1.05rem, 1.25vw, 1.32rem);
	line-height: 1.15;
	letter-spacing: -0.018em;
}

.ako-news-latest__header p {
	max-width: none;
	margin: 0;
	color: var(--ako-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.ako-news-section-header--latest {
	margin: 0 0 16px;
	padding-top: 2px;
}

.ako-news-section-header--latest h2 {
	font-size: clamp(1.25rem, 1.45vw, 1.65rem);
}

.ako-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(250px, 1fr));
	gap: 18px;
	align-items: stretch;
}

.ako-news-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--ako-card);
	border: 1px solid var(--ako-border);
	border-radius: var(--ako-radius-lg);
	box-shadow: var(--ako-shadow-soft);
	overflow: hidden;
}

.ako-news-card__media {
	height: auto;
	min-height: 0;
	aspect-ratio: 16 / 8.8;
}

.ako-news-card__media img {
	aspect-ratio: 16 / 8.8;
	object-fit: cover;
}

.ako-news-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 17px 18px 15px;
}

.ako-news-card__category {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	margin-bottom: 10px;
	color: var(--ako-plum);
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.095em;
	text-transform: uppercase;
	cursor: pointer;
}

.ako-news-card__category svg {
	width: 14px;
	height: 14px;
}

.ako-news-card h2 {
	display: -webkit-box;
	margin: 0;
	font-size: clamp(1.05rem, 0.98vw, 1.22rem);
	line-height: 1.18;
	letter-spacing: -0.022em;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ako-news-card p {
	display: -webkit-box;
	margin: 11px 0 15px;
	color: var(--ako-muted);
	font-size: 0.88rem;
	line-height: 1.48;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ako-news-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 13px;
	border-top: 1px solid rgba(100, 16, 111, 0.1);
}

.ako-news-card__link,
.ako-news-card__link:visited,
.ako-news-card__link:focus,
.ako-news-card__link:active {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 6px;
	color: var(--ako-plum) !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none !important;
}

.ako-news-card__link:hover {
	color: var(--ako-plum-dark) !important;
	background: transparent !important;
	text-decoration: underline !important;
	text-decoration-color: var(--ako-gold) !important;
	text-decoration-thickness: 2px !important;
	text-underline-offset: 4px !important;
}

/* Image fallback */

.ako-news-image-fallback {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: 16 / 8.8;
	place-items: center;
	color: var(--ako-plum);
	background:
		radial-gradient(circle at 30% 20%, rgba(242, 184, 75, 0.2), transparent 28%),
		linear-gradient(135deg, #ffffff, var(--ako-lilac));
}

.ako-news-image-fallback span {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid rgba(100, 16, 111, 0.2);
	border-radius: 50%;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.ako-news-featured .ako-news-image-fallback {
	min-height: 292px;
	aspect-ratio: auto;
	background:
		radial-gradient(circle at 28% 24%, rgba(242, 184, 75, 0.18), transparent 30%),
		radial-gradient(circle at 76% 78%, rgba(100, 16, 111, 0.11), transparent 34%),
		linear-gradient(135deg, #ffffff 0%, #f8effa 100%);
}

.ako-news-featured .ako-news-image-fallback span {
	width: 84px;
	height: 84px;
}

/* Sidebar */

.ako-news-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.ako-news-panel {
	padding: 18px;
	background: #ffffff;
	border: 1px solid rgba(63, 18, 72, 0.18);
	border-radius: var(--ako-radius-lg);
	box-shadow: var(--ako-shadow-panel);
}

.ako-news-panel h2 {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 13px;
	color: var(--ako-plum-dark);
	font-size: 1.12rem;
	line-height: 1.2;
	letter-spacing: -0.016em;
}

.ako-news-panel h2 svg {
	width: 16px;
	height: 16px;
}

.ako-news-topic-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ako-news-topic-list a,
.ako-news-topic-list a:visited,
.ako-news-topic-list a:focus,
.ako-news-topic-list a:active {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 38px;
	padding: 8px 10px 8px 13px;
	color: var(--ako-ink) !important;
	background: #ffffff !important;
	border: 1px solid rgba(63, 18, 72, 0.16);
	border-radius: 13px;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.1;
	text-decoration: none !important;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ako-news-topic-list a:hover {
	color: var(--ako-ink) !important;
	background: #f8f2fa !important;
	border-color: rgba(100, 16, 111, 0.34);
	text-decoration: none !important;
}

.ako-news-topic-list a[aria-current="page"],
.ako-news-topic-list a[aria-current="page"]:visited,
.ako-news-topic-list a[aria-current="page"]:focus,
.ako-news-topic-list a[aria-current="page"]:active,
.ako-news-topic-list a[aria-current="page"]:hover {
	color: #ffffff !important;
	background: var(--ako-plum) !important;
	border-color: var(--ako-plum) !important;
	text-decoration: none !important;
	box-shadow: 0 10px 22px rgba(100, 16, 111, 0.14);
}

.ako-news-topic-list a[aria-current="page"]:hover {
	background: var(--ako-plum-dark) !important;
	border-color: var(--ako-plum-dark) !important;
}

.ako-news-topic-list strong {
	display: inline-grid;
	min-width: 34px;
	height: 25px;
	place-items: center;
	padding: 0 7px;
	color: var(--ako-plum);
	background: #f3e7f6;
	border: 1px solid rgba(100, 16, 111, 0.12);
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 900;
}

.ako-news-topic-list a[aria-current="page"] strong,
.ako-news-topic-list a[aria-current="page"]:hover strong {
	color: var(--ako-plum) !important;
	background: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.7);
}

.ako-news-year-select {
	width: 100%;
	min-height: 42px;
	padding: 0 13px;
	color: var(--ako-plum-dark);
	background: #ffffff;
	border: 2px solid rgba(100, 16, 111, 0.18);
	border-radius: 13px;
	box-shadow: none;
	font-size: 0.9rem;
	font-weight: 750;
}

.ako-news-year-select:hover {
	border-color: rgba(100, 16, 111, 0.34);
}

.ako-news-year-select:focus,
.ako-news-year-select:focus-visible {
	border-color: var(--ako-plum);
	outline: 3px solid var(--ako-focus);
	outline-offset: 3px;
}

.ako-news-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.ako-news-tags a,
.ako-news-tags a:visited,
.ako-news-tags a:focus,
.ako-news-tags a:active {
	display: inline-flex;
	padding: 7px 9px;
	color: var(--ako-plum) !important;
	background: #ffffff !important;
	border: 2px solid rgba(100, 16, 111, 0.18);
	border-radius: 999px;
	box-shadow: none;
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1;
	text-decoration: none !important;
}

.ako-news-tags a:hover {
	color: var(--ako-plum-dark) !important;
	background: #f8f2fa !important;
	border-color: rgba(100, 16, 111, 0.38);
	text-decoration: none !important;
}

.ako-news-tags a:focus-visible {
	color: var(--ako-plum-dark) !important;
	background: #ffffff !important;
	border-color: var(--ako-plum);
}

/* Pagination */

.ako-news-pagination {
	margin-top: 24px;
}

.ako-news-pagination ul,
.ako-news-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ako-news-pagination ul.page-numbers > li,
.ako-news-pagination ul > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ako-news-pagination ul.page-numbers > li > a.page-numbers,
.ako-news-pagination ul.page-numbers > li > span.page-numbers {
	display: inline-grid;
	min-width: 36px;
	height: 36px;
	place-items: center;
	padding: 0 11px;
	color: var(--ako-plum-dark);
	background: #ffffff;
	border: 1px solid var(--ako-border);
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(63, 18, 72, 0.055);
}

.ako-news-pagination ul.page-numbers > li > a.page-numbers:hover {
	color: #ffffff;
	background: var(--ako-plum-dark);
	border-color: var(--ako-plum-dark);
	text-decoration: none;
}

.ako-news-pagination ul.page-numbers > li > span.page-numbers.current {
	color: #ffffff;
	background: var(--ako-plum);
	border-color: var(--ako-plum);
}

.ako-news-pagination a.page-numbers > span[aria-hidden="true"] {
	display: inline;
	width: auto;
	min-width: 0;
	height: auto;
	padding: 0;
	margin: 0;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	line-height: 1;
}

.ako-news-pagination a.page-numbers .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;
}

/* Empty state */

.ako-news-empty {
	padding: 30px;
	background: #ffffff;
	border: 1px solid var(--ako-border);
	border-radius: var(--ako-radius-lg);
	box-shadow: var(--ako-shadow-card);
}

.ako-news-empty h2 {
	margin: 0 0 9px;
	font-size: 1.35rem;
	line-height: 1.2;
}

.ako-news-empty p {
	margin: 0;
	color: var(--ako-muted);
	line-height: 1.6;
}

/* Stay connected */

.ako-news-stay-connected {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	margin-top: 0;
	margin-bottom: 50px;
	padding: 20px;
	color: var(--ako-plum-dark);
	background:
		radial-gradient(circle at 6% 50%, rgba(100, 16, 111, 0.1), transparent 24%),
		linear-gradient(135deg, #ffffff, var(--ako-plum-soft));
	border: 1px solid var(--ako-border);
	border-radius: var(--ako-radius-xl);
	box-shadow: var(--ako-shadow-card);
}

.ako-news-stay-connected__icon {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	color: #ffffff;
	background: var(--ako-plum);
	border-radius: 50%;
	font-size: 1.38rem;
	box-shadow: 0 12px 24px rgba(100, 16, 111, 0.18);
}

.ako-news-stay-connected h2 {
	margin: 0 0 4px;
	font-size: 1.22rem;
	line-height: 1.2;
}

.ako-news-stay-connected p {
	margin: 0;
	color: var(--ako-muted);
	font-size: 0.94rem;
	line-height: 1.5;
}

.ako-news-stay-connected > a,
.ako-news-stay-connected > a:visited,
.ako-news-stay-connected > a:focus,
.ako-news-stay-connected > a:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 9px 15px;
	color: #ffffff !important;
	background: var(--ako-plum) !important;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 900;
	white-space: nowrap;
	text-decoration: none !important;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ako-news-stay-connected > a:hover {
	color: #ffffff !important;
	background: var(--ako-plum-dark) !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(100, 16, 111, 0.2);
}

/* Large tablets / smaller laptops */

@media (max-width: 1320px) {
	.ako-news-archive {
		--ako-page-width: min(1140px, calc(100% - 44px));
	}

	.ako-news-layout {
		grid-template-columns: minmax(0, 1fr) 290px;
		gap: 22px;
	}

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

	.ako-news-spotlight__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.ako-news-card__body {
		padding: 16px;
	}
}

/* Tablet */

@media (max-width: 1120px) {
	.ako-news-layout {
		grid-template-columns: 1fr;
	}

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

	.ako-news-sidebar {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ako-news-featured {
		grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
	}

	.ako-news-panel {
		min-width: 0;
	}
}

/* Small tablet */

@media (max-width: 900px) {
	.ako-news-archive {
		--ako-page-width: min(100% - 36px, 860px);
	}

	.ako-news-hero__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.ako-news-search {
		justify-self: start;
		max-width: 520px;
	}

	.ako-news-featured {
		grid-template-columns: 1fr;
	}

	.ako-news-featured__media {
		min-height: 260px;
		aspect-ratio: 16 / 8.8;
	}

	.ako-news-section-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.ako-news-section-header__link {
		align-self: flex-start;
	}

	.ako-news-spotlight__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.ako-news-stay-connected {
		grid-template-columns: 1fr;
	}
}

/* Mobile landscape / large phone */

@media (max-width: 760px) {
	.ako-news-archive {
		--ako-page-width: min(100% - 28px, 680px);
	}

	.ako-news-layout {
		gap: 22px;
		padding-bottom: 42px;
	}

	.ako-news-grid,
	.ako-news-spotlight__grid {
		grid-template-columns: 1fr;
	}

	.ako-news-sidebar {
		display: flex;
	}

	.ako-news-featured {
		border-radius: 22px;
	}

	.ako-news-card,
	.ako-news-card--spotlight {
		border-radius: 20px;
	}

	.ako-news-card__media,
	.ako-news-card__media img,
	.ako-news-image-fallback {
		aspect-ratio: 16 / 9;
	}
}

/* Mobile */

@media (max-width: 640px) {
	.ako-news-archive {
		--ako-page-width: min(100% - 24px, 560px);
	}

	.ako-news-hero {
		padding-top: 30px;
		padding-bottom: 32px;
	}

	.ako-news-hero::before,
	.ako-news-hero::after {
		opacity: 0.32;
	}

	.ako-news-hero h1 {
		font-size: clamp(2.45rem, 13vw, 3.75rem);
		line-height: 0.96;
		letter-spacing: -0.048em;
	}

	.ako-news-hero h1::after {
		margin-top: 15px;
		margin-bottom: 13px;
	}

	.ako-news-hero p:last-child {
		font-size: 0.96rem;
		line-height: 1.58;
	}

	.ako-news-search {
		max-width: 100%;
		border-radius: 18px;
	}

	.ako-news-search input {
		min-height: 44px;
	}

	.ako-news-search button {
		width: 44px;
		height: 44px;
	}

	.ako-news-topics {
		flex-wrap: nowrap;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 16px 12px 18px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-padding-inline: 12px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.ako-news-topic {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.ako-news-featured__media {
		min-height: 220px;
	}

	.ako-news-featured__content {
		padding: 20px;
	}

	.ako-news-featured h2 {
		font-size: clamp(1.35rem, 7vw, 1.9rem);
		line-height: 1.12;
	}

	.ako-news-featured p {
		font-size: 0.92rem;
		-webkit-line-clamp: 4;
	}

	.ako-news-featured__meta,
	.ako-news-card__footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.ako-news-read-more,
	.ako-news-card__link {
		width: fit-content;
	}

	.ako-news-spotlights {
		gap: 20px;
		margin-bottom: 24px;
	}

	.ako-news-spotlight {
		padding: 17px;
		border-radius: 22px;
	}

	.ako-news-spotlight::before {
		width: 5px;
	}

	.ako-news-spotlight::after {
		display: none;
	}

	.ako-news-section-header {
		margin-bottom: 15px;
	}

	.ako-news-section-header h2 {
		font-size: clamp(1.25rem, 6.5vw, 1.65rem);
	}

	.ako-news-section-header p:not(.ako-news-section-header__kicker) {
		font-size: 0.9rem;
	}

	.ako-news-section-header__link {
		min-height: 39px;
	}

	.ako-news-latest__header {
		margin-bottom: 14px;
	}

	.ako-news-latest__header > div {
		display: block;
		padding-bottom: 11px;
	}

	.ako-news-latest__header h2 {
		font-size: 1.12rem;
		line-height: 1.2;
	}

	.ako-news-latest__header p {
		margin-top: 4px;
		font-size: 0.86rem;
	}

	.ako-news-card__body,
	.ako-news-card--spotlight .ako-news-card__body {
		padding: 16px;
	}

	.ako-news-card h2 {
		font-size: 1.08rem;
		-webkit-line-clamp: 4;
	}

	.ako-news-card--spotlight h3 {
		font-size: 1.05rem;
		-webkit-line-clamp: 4;
	}

	.ako-news-card p {
		font-size: 0.88rem;
		-webkit-line-clamp: 4;
	}

	.ako-news-panel {
		padding: 16px;
		border-radius: 18px;
	}

	.ako-news-topic-list a {
		min-height: 42px;
	}

	.ako-news-stay-connected {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 36px;
		border-radius: 22px;
	}

	.ako-news-stay-connected > a {
		width: fit-content;
	}
}

/* Small mobile */

@media (max-width: 420px) {
	.ako-news-archive {
		--ako-page-width: min(100% - 20px, 400px);
	}

	.ako-news-hero h1 {
		font-size: clamp(2.15rem, 13vw, 3.1rem);
	}

	.ako-news-hero__eyebrow {
		font-size: 0.74rem;
	}

	.ako-news-search {
		grid-template-columns: minmax(0, 1fr) 42px;
		gap: 6px;
		padding: 6px;
	}

	.ako-news-search button {
		width: 42px;
		height: 42px;
	}

	.ako-news-topic {
		min-height: 37px;
		padding: 8px 13px;
		font-size: 0.82rem;
	}

	.ako-news-featured__media {
		min-height: 190px;
	}

	.ako-news-featured__content {
		padding: 18px;
	}

	.ako-news-card__body,
	.ako-news-card--spotlight .ako-news-card__body {
		padding: 15px;
	}

	.ako-news-card__footer {
		gap: 9px;
	}

	.ako-news-card__footer time,
	.ako-news-card__link {
		font-size: 0.8rem;
	}

	.ako-news-panel h2 {
		font-size: 1rem;
	}

	.ako-news-topic-list a {
		font-size: 0.84rem;
	}

	.ako-news-topic-list strong {
		min-width: 30px;
		height: 23px;
		font-size: 0.7rem;
	}

	.ako-news-stay-connected {
		padding: 18px;
	}

	.ako-news-stay-connected__icon {
		width: 48px;
		height: 48px;
		font-size: 1.2rem;
	}
}

/* Motion accessibility */

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

	.ako-news-topic:hover,
	.ako-news-search button:hover,
	.ako-news-featured:hover img,
	.ako-news-card:hover img,
	.ako-news-read-more:hover,
	.ako-news-section-header__link:hover,
	.ako-news-stay-connected > a:hover {
		transform: none !important;
	}
}

.ako-news-mobile-topic-filter {
	display: none;
	width: var(--ako-page-width);
	max-width: none;
	margin: 0 auto 24px;
	padding: 14px;
	background: #ffffff;
	border: 1px solid var(--ako-border);
	border-radius: 20px;
	box-shadow: var(--ako-shadow-soft);
}

.ako-news-mobile-topic-filter label {
	display: block;
	margin: 0 0 8px;
	color: var(--ako-plum-dark);
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1.2;
}

.ako-news-mobile-topic-filter select {
	appearance: none;
	width: 100%;
	min-height: 48px;
	padding: 0 46px 0 15px;
	color: var(--ako-plum-dark);
	background-color: #ffffff;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--ako-plum) 50%),
		linear-gradient(135deg, var(--ako-plum) 50%, transparent 50%),
		linear-gradient(to right, rgba(100, 16, 111, 0.12), rgba(100, 16, 111, 0.12));
	background-position:
		calc(100% - 24px) 50%,
		calc(100% - 18px) 50%,
		calc(100% - 42px) 50%;
	background-size:
		6px 6px,
		6px 6px,
		1px 24px;
	background-repeat: no-repeat;
	border: 2px solid rgba(100, 16, 111, 0.18);
	border-radius: 15px;
	box-shadow: none;
	font-size: 0.96rem;
	font-weight: 850;
	line-height: 1.2;
	cursor: pointer;
}

.ako-news-mobile-topic-filter select:hover {
	border-color: rgba(100, 16, 111, 0.36);
	background-color: var(--ako-plum-soft);
}

.ako-news-mobile-topic-filter select:focus,
.ako-news-mobile-topic-filter select:focus-visible {
	border-color: var(--ako-plum);
	outline: 3px solid var(--ako-focus);
	outline-offset: 3px;
	background-color: #ffffff;
}

.ako-news-mobile-topic-filter select:disabled {
	cursor: not-allowed;
	opacity: 0.68;
}

.ako-news-archive--loading .ako-news-mobile-topic-filter select {
	cursor: progress;
}

/* Switch from topic pills to dropdown on mobile/tablet */
@media (max-width: 760px) {
	.ako-news-topics {
		display: none !important;
	}

	.ako-news-mobile-topic-filter {
		display: block;
	}
}

@media (max-width: 420px) {
	.ako-news-mobile-topic-filter {
		margin-bottom: 20px;
		padding: 12px;
		border-radius: 18px;
	}

	.ako-news-mobile-topic-filter select {
		min-height: 46px;
		padding-left: 13px;
		font-size: 0.92rem;
	}
}
@media (max-width: 760px) {
	.ako-news-mobile-topic-filter {
		margin-top: 14px;
		margin-bottom: 24px;
	}
}

@media (max-width: 420px) {
	.ako-news-mobile-topic-filter {
		margin-top: 12px;
		margin-bottom: 22px;
	}
}

.ako-news-search button {
	padding: 0 !important;
	line-height: 1;
}

.ako-news-search__icon {
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	color: #ffffff;
	line-height: 1;
}

.ako-news-search__icon svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.15;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ako-news-search button:hover .ako-news-search__icon,
.ako-news-search button:focus-visible .ako-news-search__icon {
	color: #ffffff;
}