:root {
	--color-ink: #111d2d;
	--color-ink-soft: #2f3d4f;
	--color-muted: #667386;
	--color-line: #d8dee7;
	--color-line-dark: #263649;
	--color-paper: #ffffff;
	--color-canvas: #f4f6f8;
	--color-navy: #061221;
	--color-navy-2: #0c1b2d;
	--color-slate: #eaf0f5;
	--color-gold: #f4c84a;
	--color-gold-dark: #6d5200;
	--color-link: #174e70;
	--shell: 1440px;
	--article-shell: 1160px;
	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-soft: 0 18px 48px rgba(8, 21, 37, 0.10);
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open {
	overflow: hidden;
}

img,
svg,
video,
iframe {
	max-width: 100%;
}

img {
	display: block;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: var(--color-link);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--color-ink);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-ink);
	font-weight: 760;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.shell {
	width: min(calc(100% - 48px), var(--shell));
	margin-inline: auto;
}

.article-shell {
	width: min(calc(100% - 48px), var(--article-shell));
}

.site-main {
	min-height: 55vh;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	position: fixed !important;
	z-index: 99999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	padding: 10px 16px;
	background: var(--color-paper);
	color: var(--color-ink);
	border-radius: 6px;
	box-shadow: var(--shadow-soft);
}

:focus-visible {
	outline: 3px solid var(--color-gold);
	outline-offset: 3px;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: rgba(6, 18, 33, 0.98);
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(14px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr) 46px;
	align-items: center;
	min-height: 78px;
	gap: 28px;
}

.site-brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.site-brand__link,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-brand__image,
.custom-logo {
	width: auto;
	height: 42px;
	max-width: 210px;
	object-fit: contain;
}

.primary-navigation {
	justify-self: center;
	min-width: 0;
}

.primary-menu,
.primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.2vw, 36px);
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 28px 0 25px;
	color: #edf2f8;
	font-size: 0.86rem;
	font-weight: 720;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.primary-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 17px;
	left: 0;
	height: 2px;
	background: var(--color-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

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

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -18px;
	width: 230px;
	padding: 10px 0;
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 150ms ease, transform 150ms ease;
}

.primary-menu .sub-menu a {
	padding: 10px 18px;
	color: var(--color-ink);
	font-size: 0.85rem;
	letter-spacing: 0;
	text-transform: none;
	white-space: normal;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.search-toggle,
.nav-toggle,
.search-panel__close {
	display: inline-grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	cursor: pointer;
}

.search-toggle svg,
.nav-toggle svg,
.search-panel__close svg,
.search-form__submit svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.search-toggle:hover,
.nav-toggle:hover,
.search-panel__close:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.45);
}

.nav-toggle {
	display: none;
}

.nav-toggle__close {
	display: none;
}

.search-panel {
	position: absolute;
	z-index: 10;
	top: 100%;
	right: 0;
	left: 0;
	background: var(--color-navy-2);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 26px 50px rgba(0, 0, 0, 0.26);
}

.search-panel__inner {
	position: relative;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 28px;
	min-height: 128px;
}

.search-panel__label {
	margin: 0;
	color: #c2cedb;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.search-form {
	display: flex;
	width: 100%;
	gap: 10px;
}

.search-form__field {
	width: 100%;
	min-width: 0;
	height: 54px;
	padding: 0 18px;
	background: #fff;
	color: var(--color-ink);
	border: 1px solid transparent;
	border-radius: 8px;
}

.search-form__submit {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 54px;
	padding: 0 20px;
	background: var(--color-gold);
	color: #171406;
	font-weight: 760;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
}

.search-form__submit:hover {
	background: #ffda66;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	color: var(--color-muted);
	font-size: 0.8rem;
	font-weight: 620;
}

.breadcrumbs a {
	color: var(--color-muted);
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--color-ink);
}

.eyebrow,
.section-kicker,
.source-box__kicker,
.kozmos-author-card__kicker,
.support-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--color-gold-dark);
	font-size: 0.72rem;
	font-weight: 820;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 7px;
	height: 7px;
	background: var(--color-gold);
	border-radius: 50%;
}

.eyebrow--on-dark {
	color: var(--color-gold);
}

.eyebrow:hover {
	color: var(--color-ink);
}

.eyebrow--on-dark:hover {
	color: #fff;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 18px;
	font-size: 0.9rem;
	font-weight: 780;
	text-decoration: none;
	border-radius: 8px;
	transition: transform 150ms ease, background 150ms ease;
}

.button svg,
.text-link svg,
.support-cta .button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

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

.button--gold {
	background: var(--color-gold);
	color: #171406;
}

.button--gold:hover {
	background: #ffda66;
	color: #171406;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-ink);
	font-size: 0.86rem;
	font-weight: 760;
	text-decoration: none;
}

.text-link:hover {
	color: var(--color-link);
}

.home-main {
	padding-top: 34px;
	padding-bottom: 100px;
}

.home-lead {
	display: grid;
	grid-template-columns: minmax(0, 1.95fr) minmax(330px, 1fr);
	gap: 18px;
}

.home-lead__secondary {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 18px;
}

.story-overlay {
	position: relative;
	isolation: isolate;
	min-height: 290px;
	overflow: hidden;
	background: var(--color-navy);
	border-radius: var(--radius);
}

.story-overlay--lead {
	min-height: 598px;
}

.story-overlay--secondary {
	min-height: 290px;
}

.story-overlay__link {
	position: absolute;
	z-index: 4;
	inset: 0;
}

.story-overlay__media,
.story-overlay__shade {
	position: absolute;
	inset: 0;
}

.story-overlay__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.story-overlay__shade {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(3, 10, 19, 0.02) 18%, rgba(3, 10, 19, 0.28) 50%, rgba(3, 10, 19, 0.94) 100%);
}

.story-overlay__content {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 28px;
	pointer-events: none;
}

.story-overlay--lead .story-overlay__content {
	padding: 44px;
}

.story-overlay:hover .story-overlay__image {
	transform: scale(1.025);
}

.story-overlay__title {
	max-width: 920px;
	margin: 12px 0 14px;
	color: #fff;
	font-size: clamp(1.45rem, 2vw, 2.15rem);
	line-height: 1.08;
	text-wrap: balance;
}

.story-overlay--lead .story-overlay__title {
	font-size: clamp(2.25rem, 3.45vw, 4rem);
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.story-overlay__date {
	color: rgba(255, 255, 255, 0.70);
	font-size: 0.78rem;
}

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

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--color-line);
}

.section-heading h2 {
	margin: 6px 0 0;
	font-size: clamp(2rem, 3vw, 3rem);
}

.home-latest__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.75fr);
	gap: 64px;
	align-items: start;
}

.home-latest__feed {
	display: grid;
	gap: 0;
}

.latest-card {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 26px;
	padding: 0 0 28px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--color-line);
}

.latest-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--color-slate);
	border-radius: var(--radius-sm);
}

.latest-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.latest-card__media:hover .latest-card__image {
	transform: scale(1.025);
}

.latest-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.latest-card__title {
	margin: 10px 0 10px;
	font-size: clamp(1.25rem, 1.8vw, 1.72rem);
	line-height: 1.16;
}

.latest-card__title a,
.story-card__title a,
.sidebar-news h3 a,
.focus-list h3 a {
	color: inherit;
	text-decoration: none;
}

.latest-card__title a:hover,
.story-card__title a:hover,
.sidebar-news h3 a:hover,
.focus-list h3 a:hover {
	color: var(--color-link);
}

.latest-card__excerpt {
	margin-bottom: 16px;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.latest-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--color-muted);
	font-size: 0.77rem;
}

.home-latest__aside {
	position: sticky;
	top: 112px;
}

.focus-panel {
	padding: 30px 30px 18px;
	background: var(--color-navy);
	color: #fff;
	border-radius: var(--radius);
}

.focus-panel > h2 {
	margin: 8px 0 24px;
	color: #fff;
	font-size: 1.65rem;
}

.focus-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.focus-list li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.focus-list__number {
	color: var(--color-gold);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.focus-list__category,
.sidebar-news__category {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold-dark);
	font-size: 0.64rem;
	font-weight: 820;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.focus-list__category {
	color: var(--color-gold);
}

.focus-list h3 {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	line-height: 1.42;
}

.focus-list h3 a:hover {
	color: var(--color-gold);
}

.home-support {
	margin-top: 82px;
}

.support-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 26px 30px;
	background: #fff8de;
	border: 1px solid #ead68a;
	border-radius: var(--radius);
}

.support-cta__copy {
	min-width: 0;
}

.support-cta__title {
	margin: 5px 0 0;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.support-cta__text {
	margin: 7px 0 0;
	color: #5e563d;
	font-size: 0.92rem;
}

.support-cta--article {
	margin: 48px 0;
}

.support-cta--home {
	padding: 34px 40px;
}

.support-cta--footer {
	display: block;
	padding: 0;
	margin-top: 24px;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.support-cta--footer .support-cta__eyebrow,
.support-cta--footer .support-cta__title {
	color: #fff;
}

.support-cta--footer .support-cta__title {
	margin-bottom: 14px;
	font-size: 1rem;
	letter-spacing: 0;
}

.support-cta--footer .button {
	min-height: 42px;
	padding: 0 15px;
}

.category-section__grid,
.archive-grid,
.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.story-card {
	min-width: 0;
}

.story-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin-bottom: 18px;
	background: var(--color-slate);
	border-radius: var(--radius-sm);
}

.story-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.story-card__media:hover .story-card__image {
	transform: scale(1.025);
}

.story-card__title {
	margin: 10px 0 10px;
	font-size: 1.18rem;
	line-height: 1.25;
}

.story-card__excerpt {
	margin: 0 0 14px;
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.58;
}

.story-card__date {
	color: var(--color-muted);
	font-size: 0.74rem;
}

.article {
	padding-bottom: 110px;
}

.article-header {
	padding-top: 48px;
	padding-bottom: 34px;
}

.article-header__category {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.exclusive-badge {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 0 10px;
	background: #fff4c2;
	color: var(--color-gold-dark);
	font-size: 0.67rem;
	font-weight: 820;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 999px;
}

.article-title {
	max-width: 1080px;
	margin: 16px 0 18px;
	font-size: clamp(2.35rem, 4vw, 4rem);
	letter-spacing: -0.05em;
	line-height: 1.04;
	text-wrap: balance;
}

.article-dek {
	max-width: 840px;
	margin: 0 0 24px;
	color: var(--color-ink-soft);
	font-family: var(--font-serif);
	font-size: clamp(1.18rem, 1.7vw, 1.45rem);
	line-height: 1.52;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	color: var(--color-muted);
	font-size: 0.8rem;
	font-weight: 620;
}

.article-meta__author {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--color-ink);
	text-decoration: none;
}

.article-meta__avatar {
	width: 36px;
	height: 36px;
	object-fit: cover;
	border-radius: 50%;
}

.article-meta__reading {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.article-meta__reading svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.article-hero {
	margin-top: 0;
	margin-bottom: 56px;
}

.article-hero__image {
	width: 100%;
	max-height: min(74vh, 840px);
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.featured-caption {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 20px;
	padding: 10px 2px 0;
	color: var(--color-muted);
	font-size: 0.74rem;
	line-height: 1.45;
}

.featured-caption a {
	color: inherit;
}

.article-layout {
	display: grid;
	grid-template-columns: 58px minmax(0, 780px) minmax(270px, 340px);
	justify-content: center;
	gap: 34px;
	align-items: start;
}

.article-column {
	min-width: 0;
}

.article-content {
	color: #1d2939;
	font-family: var(--font-serif);
	font-size: 1.16rem;
	line-height: 1.78;
}

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

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure,
.article-content table,
.article-content pre {
	margin-top: 0;
	margin-bottom: 1.45em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin-top: 1.7em;
	margin-bottom: 0.65em;
	font-family: var(--font-sans);
}

.article-content h2 {
	font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.article-content h3 {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.article-content a {
	color: var(--color-link);
	text-decoration-thickness: 1px;
}

.article-content blockquote {
	padding: 6px 0 6px 24px;
	color: var(--color-ink);
	font-size: 1.16em;
	font-style: italic;
	border-left: 4px solid var(--color-gold);
}

.article-content figure {
	max-width: 100%;
}

.article-content figcaption {
	margin-top: 8px;
	color: var(--color-muted);
	font-family: var(--font-sans);
	font-size: 0.72rem;
}

.article-content table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	font-family: var(--font-sans);
	font-size: 0.9rem;
}

.article-content th,
.article-content td {
	padding: 10px 12px;
	border: 1px solid var(--color-line);
}

.article-content pre {
	max-width: 100%;
	overflow-x: auto;
	padding: 18px;
	background: var(--color-navy);
	color: #eef4fa;
	border-radius: var(--radius-sm);
}

.article-content iframe {
	width: 100%;
	border: 0;
}

.share-rail {
	position: sticky;
	top: 122px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	padding: 10px 8px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(216, 222, 231, 0.92);
	border-radius: 999px;
	box-shadow: 0 18px 38px rgba(8, 21, 37, 0.10);
	backdrop-filter: blur(12px);
}

.share-rail__label {
	margin-bottom: 5px;
	color: #5e6b7d;
	font-size: 0.6rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.share-rail a {
	--share-color: var(--color-ink);
	position: relative;
	display: grid;
	width: 44px;
	height: 44px;
	overflow: hidden;
	place-items: center;
	background: #fff;
	color: var(--share-color);
	text-decoration: none;
	border: 1px solid #dbe2ec;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(8, 21, 37, 0.04);
	transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.share-rail a::before {
	position: absolute;
	inset: 0;
	background: var(--share-color);
	border-radius: inherit;
	content: "";
	opacity: 0;
	transform: scale(0.62);
	transition: opacity 180ms ease, transform 180ms ease;
}

.share-rail a:hover,
.share-rail a:focus-visible {
	color: #fff;
	border-color: var(--share-color);
	box-shadow: 0 12px 24px rgba(8, 21, 37, 0.16);
	transform: translateY(-2px) scale(1.04);
}

.share-rail a:hover::before,
.share-rail a:focus-visible::before {
	opacity: 1;
	transform: scale(1);
}

.share-rail__button--facebook {
	--share-color: #1877f2;
}

.share-rail__button--x {
	--share-color: #111d2d;
}

.share-rail__button--linkedin {
	--share-color: #0a66c2;
}

.share-rail__button--mail {
	--share-color: #d89000;
}

.share-rail svg {
	position: relative;
	z-index: 1;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.source-box {
	padding: 26px 28px;
	margin: 48px 0 0;
	background: var(--color-slate);
	border-left: 4px solid var(--color-gold);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.source-box__title {
	margin: 7px 0 12px;
	font-size: 1.42rem;
}

.source-box__citation {
	margin: 0 0 14px;
	color: var(--color-ink-soft);
	font-size: 0.9rem;
	line-height: 1.62;
}

.source-box__details {
	display: grid;
	gap: 8px;
	margin: 0;
	font-size: 0.84rem;
}

.source-box__details > div {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 10px;
}

.source-box__details dt {
	font-weight: 760;
}

.source-box__details dd {
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

.article-topics {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 24px 0;
	margin-top: 32px;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.article-topics__label {
	padding-top: 7px;
	color: var(--color-muted);
	font-size: 0.68rem;
	font-weight: 820;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.article-topics ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-topics a {
	display: inline-flex;
	padding: 7px 11px;
	background: var(--color-canvas);
	color: var(--color-ink);
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid var(--color-line);
	border-radius: 999px;
}

.article-topics a:hover {
	background: var(--color-navy);
	color: #fff;
	border-color: var(--color-navy);
}

.kozmos-author-card {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding: 28px;
	margin-top: 42px;
	background: var(--color-canvas);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.kozmos-author-card__avatar {
	width: 104px;
	height: 104px;
	object-fit: cover;
	border-radius: 50%;
}

.kozmos-author-card__name {
	margin: 6px 0 8px;
	font-size: 1.55rem;
}

.kozmos-author-card__bio {
	margin: 0 0 14px;
	color: var(--color-ink-soft);
	font-size: 0.9rem;
	line-height: 1.62;
}

.editorial-sidebar {
	position: sticky;
	top: 112px;
	max-height: calc(100vh - 140px);
	overflow: auto;
	padding: 24px 22px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 16px 34px rgba(8, 21, 37, 0.08);
	scrollbar-width: thin;
}

.editorial-sidebar__heading {
	position: relative;
	padding-bottom: 17px;
	margin-bottom: 4px;
	border-bottom: 1px solid var(--color-line);
}

.editorial-sidebar__heading::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 68px;
	height: 2px;
	background: var(--color-gold);
	content: "";
}

.editorial-sidebar__heading .section-kicker {
	color: #8b6900;
}

.editorial-sidebar__heading h2 {
	margin: 5px 0 0;
	font-size: 1.45rem;
}

.sidebar-news {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-news__item {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 14px;
	padding: 17px 0;
	border-bottom: 1px solid rgba(216, 222, 231, 0.9);
	transition: transform 170ms ease;
}

.sidebar-news__item:hover {
	transform: translateX(3px);
}

.sidebar-news__thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--color-slate);
	border-radius: 10px;
}

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

.sidebar-news__item:hover .sidebar-news__thumb img {
	transform: scale(1.04);
}

.sidebar-news__category {
	color: #8b6900;
	font-size: 0.61rem;
	letter-spacing: 0.13em;
}

.sidebar-news h3 {
	margin: 0 0 8px;
	font-size: 0.98rem;
	line-height: 1.36;
	letter-spacing: -0.018em;
}

.sidebar-news time {
	color: var(--color-muted);
	font-size: 0.72rem;
}

.editorial-sidebar__more {
	margin-top: 18px;
}

.related-posts {
	padding-top: 54px;
	margin-top: 54px;
	border-top: 1px solid var(--color-line);
}

.related-posts .section-heading {
	margin-bottom: 24px;
}

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

.story-card--compact .story-card__excerpt {
	display: none;
}

.story-card--compact .story-card__title {
	font-size: 1rem;
}

.archive-main,
.page-main {
	padding-top: 58px;
	padding-bottom: 110px;
}

.archive-header {
	max-width: 920px;
	margin-bottom: 44px;
}

.archive-header .breadcrumbs {
	margin-bottom: 36px;
}

.archive-header h1,
.page-header h1 {
	margin: 8px 0 16px;
	font-size: clamp(2.8rem, 5vw, 5rem);
}

.archive-description,
.page-header > p {
	max-width: 760px;
	color: var(--color-ink-soft);
	font-size: 1.08rem;
	line-height: 1.65;
}

.archive-lead {
	margin-bottom: 42px;
}

.story-overlay--archive-lead {
	min-height: 540px;
}

.archive-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 44px;
}

.archive-grid--after-lead {
	padding-top: 40px;
	border-top: 1px solid var(--color-line);
}

.pagination {
	margin-top: 64px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.page-numbers {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	place-items: center;
	color: var(--color-ink);
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid var(--color-line);
	border-radius: 6px;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--color-navy);
	color: #fff;
	border-color: var(--color-navy);
}

.page-article {
	max-width: 980px;
	margin: 0 auto;
}

.page-header {
	margin-bottom: 36px;
}

.page-hero {
	margin: 0 0 46px;
}

.page-hero img {
	width: 100%;
	border-radius: var(--radius);
}

.page-content {
	max-width: 780px;
	margin: 0 auto;
}

.author-archive-header {
	display: grid;
	grid-template-columns: 144px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	max-width: 980px;
}

.author-archive-header__avatar {
	width: 144px;
	height: 144px;
	object-fit: cover;
	border-radius: 50%;
}

.content-none {
	max-width: 720px;
	padding: 48px;
	background: var(--color-canvas);
	border-radius: var(--radius);
}

.content-none h2 {
	font-size: 2rem;
}

.content-none .search-form {
	margin-top: 24px;
}

.not-found {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
	align-items: center;
	gap: 60px;
	min-height: 660px;
	padding-top: 50px;
	padding-bottom: 80px;
}

.not-found__visual {
	padding: 20px;
	background: var(--color-navy);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

.not-found__copy h1 {
	margin: 8px 0 18px;
	font-size: clamp(2.4rem, 4.2vw, 4.5rem);
}

.not-found__copy > p:not(.section-kicker) {
	color: var(--color-muted);
	font-size: 1.08rem;
}

.not-found__copy .search-form {
	margin: 28px 0 18px;
}

.site-footer {
	background:
		radial-gradient(circle at 10% 0%, rgba(244, 200, 74, 0.10), transparent 28%),
		radial-gradient(circle at 90% 8%, rgba(34, 128, 196, 0.12), transparent 30%),
		#050d18;
	color: #aebaca;
	border-top: 1px solid rgba(244, 200, 74, 0.24);
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(300px, 1.25fr) minmax(160px, 0.55fr) minmax(230px, 0.75fr) minmax(280px, 0.95fr);
	gap: 56px;
	padding-top: 72px;
	padding-bottom: 58px;
}

.site-footer__brand > p {
	max-width: 480px;
	margin: 18px 0 0;
	color: #c3cedb;
	font-size: 0.94rem;
	line-height: 1.75;
}

.footer-social {
	margin-top: 22px;
}

.footer-social__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social__menu a,
.footer-social__link {
	--footer-social-color: var(--color-gold);
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	background: rgba(255, 255, 255, 0.06);
	color: #dce5ef;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	transition: background 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.footer-social__link--facebook {
	--footer-social-color: #1877f2;
}

.footer-social__link--x {
	--footer-social-color: #ffffff;
}

.footer-social__link--instagram {
	--footer-social-color: #f56040;
}

.footer-social__link--telegram {
	--footer-social-color: #2aabee;
}

.footer-social__menu a:hover,
.footer-social__menu a:focus-visible,
.footer-social__link:hover,
.footer-social__link:focus-visible {
	background: var(--footer-social-color);
	color: #07101c;
	border-color: var(--footer-social-color);
	transform: translateY(-2px);
}

.footer-social__link--facebook:hover,
.footer-social__link--facebook:focus-visible,
.footer-social__link--instagram:hover,
.footer-social__link--instagram:focus-visible,
.footer-social__link--telegram:hover,
.footer-social__link--telegram:focus-visible {
	color: #fff;
}

.footer-social svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.footer-column h2 {
	margin: 4px 0 20px;
	color: #fff;
	font-size: 0.78rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-menu {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu--columns {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
}

.footer-menu a {
	color: #b7c3d1;
	font-size: 0.9rem;
	line-height: 1.4;
	text-decoration: none;
}

.footer-menu a:hover {
	color: var(--color-gold);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 22px;
	padding-bottom: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__bottom p {
	margin: 0;
	color: #8f9daf;
	font-size: 0.76rem;
}

/*
 * Last-resort hiding for common legacy wrappers that may be printed by an
 * active old plugin outside the_content. The current theme's components use
 * unique kozmos-* classes and are not affected.
 */
.single-post .td-post-author,
.single-post .jeg_authorbox,
.single-post .mkdf-author-description,
.single-post .legacy-author-box,
.single-post .legacy-membership-box,
.single-post .old-membership-box,
.single-post .old-buy-me-a-coffee,
.single-post .legacy-source-box {
	display: none !important;
}

@media (max-width: 1220px) {
	.site-header__inner {
		grid-template-columns: 188px minmax(0, 1fr) 44px;
		gap: 20px;
	}

	.primary-menu {
		gap: 20px;
	}

	.primary-menu a {
		font-size: 0.78rem;
	}

	.home-lead {
		grid-template-columns: minmax(0, 1.6fr) minmax(310px, 0.9fr);
	}

	.article-layout {
		grid-template-columns: 50px minmax(0, 740px) minmax(250px, 310px);
		gap: 26px;
	}

	.category-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 40px;
	}
}

@media (max-width: 1040px) {
	.admin-bar .site-header {
		top: 32px;
	}

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

	.nav-toggle {
		display: inline-grid;
		grid-column: 2;
	}

	.search-toggle {
		grid-column: 3;
	}

	.primary-navigation {
		position: fixed;
		z-index: 98;
		top: 78px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 20px 24px 50px;
		overflow-y: auto;
		background: var(--color-navy);
	}

	.admin-bar .primary-navigation {
		top: 110px;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		display: block;
		max-width: 760px;
		margin: 0 auto;
	}

	.primary-menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.primary-menu a {
		padding: 16px 0;
		font-size: 1rem;
	}

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

	.primary-menu .sub-menu {
		position: static;
		display: block;
		width: auto;
		padding: 0 0 12px 18px;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.primary-menu .sub-menu a {
		color: #bfcbd8;
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle__open {
		display: none;
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle__close {
		display: block;
	}

	.search-panel__inner {
		grid-template-columns: 1fr 44px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.search-panel__label {
		display: none;
	}

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

	.story-overlay--lead {
		min-height: 540px;
	}

	.home-lead__secondary {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
	}

	.home-latest__layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.home-latest__aside {
		position: static;
	}

	.article-layout {
		grid-template-columns: 48px minmax(0, 1fr);
		max-width: 900px;
	}

	.site-footer__main {
		grid-template-columns: minmax(280px, 1fr) minmax(190px, 0.75fr);
	}

	.footer-column--wide {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .primary-navigation {
		top: 124px;
	}

	.shell,
	.article-shell {
		width: min(calc(100% - 32px), var(--shell));
	}

	.home-main {
		padding-top: 18px;
	}

	.story-overlay--lead {
		min-height: 480px;
	}

	.story-overlay--lead .story-overlay__content {
		padding: 26px;
	}

	.story-overlay--lead .story-overlay__title {
		font-size: clamp(2rem, 8vw, 3.1rem);
	}

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

	.story-overlay--secondary {
		min-height: 320px;
	}

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

	.latest-card {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 20px;
	}

	.support-cta,
	.support-cta--home {
		align-items: flex-start;
		padding: 24px;
	}

	.category-section__grid,
	.archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.article-header {
		padding-top: 34px;
	}

	.article-title {
		font-size: clamp(2.25rem, 8.5vw, 3.3rem);
	}

	.article-hero {
		margin-bottom: 38px;
	}

	.article-layout {
		display: block;
	}

	.article-content {
		font-size: 1.08rem;
	}

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

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.footer-column--wide {
		grid-column: 1 / -1;
	}

	.not-found {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.not-found__visual {
		order: 2;
	}
}

@media (max-width: 600px) {
	.site-header__inner {
		min-height: 68px;
	}

	.site-brand__image,
	.custom-logo {
		height: 36px;
		max-width: 170px;
	}

	.primary-navigation {
		top: 68px;
	}

	.admin-bar .primary-navigation {
		top: 114px;
	}

	.search-panel__inner {
		display: block;
		padding: 18px 56px 18px 16px;
	}

	.search-panel__close {
		position: absolute;
		top: 23px;
		right: 16px;
	}

	.search-form {
		display: grid;
	}

	.search-form__submit {
		width: 100%;
	}

	.story-overlay--lead {
		min-height: 430px;
	}

	.story-overlay__content,
	.story-overlay--lead .story-overlay__content {
		padding: 22px;
	}

	.story-overlay__title,
	.story-overlay--lead .story-overlay__title {
		font-size: 2rem;
	}

	.story-overlay--secondary {
		min-height: 280px;
	}

	.section-heading {
		align-items: flex-start;
	}

	.section-heading h2 {
		font-size: 2.1rem;
	}

	.latest-card {
		display: block;
	}

	.latest-card__media {
		margin-bottom: 18px;
	}

	.latest-card__excerpt {
		display: none;
	}

	.support-cta,
	.support-cta--home {
		display: block;
	}

	.support-cta .button {
		width: 100%;
		margin-top: 18px;
	}

	.category-section__grid,
	.archive-grid,
	.related-posts__grid {
		grid-template-columns: 1fr;
	}

	.article-title {
		font-size: 2.35rem;
		letter-spacing: -0.042em;
	}

	.article-dek {
		font-size: 1.12rem;
	}

	.article-meta {
		gap: 11px 14px;
	}

	.article-meta__date {
		order: 3;
		width: 100%;
		padding-left: 45px;
	}

	.article-hero__image {
		border-radius: var(--radius-sm);
	}

	.featured-caption {
		display: block;
	}

	.featured-caption__credit {
		display: block;
		margin-top: 4px;
	}

	.source-box {
		padding: 22px 20px;
	}

	.source-box__details > div {
		display: block;
	}

	.source-box__details dt {
		margin-bottom: 2px;
	}

	.article-topics {
		display: block;
	}

	.article-topics__label {
		display: block;
		margin-bottom: 10px;
	}

	.kozmos-author-card {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 18px;
		padding: 22px;
	}

	.kozmos-author-card__avatar {
		width: 76px;
		height: 76px;
	}

	.kozmos-author-card__bio {
		grid-column: 1 / -1;
	}

	.archive-header h1,
	.page-header h1 {
		font-size: 2.65rem;
	}

	.story-overlay--archive-lead {
		min-height: 430px;
	}

	.author-archive-header {
		grid-template-columns: 90px minmax(0, 1fr);
		gap: 18px;
	}

	.author-archive-header__avatar {
		width: 90px;
		height: 90px;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		padding-top: 56px;
	}

	.site-footer__brand,
	.footer-column--wide {
		grid-column: 1 / -1;
	}

	.footer-menu--columns {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		display: block;
	}

	.site-footer__bottom p + p {
		margin-top: 8px;
	}
}

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

/* Kozmos 1.3.4 single-theme cleanup pass */
.article {
	padding-bottom: 84px;
}

.article-shell {
	width: min(calc(100% - 48px), 1010px);
}

.article-header {
	padding-top: 38px;
	padding-bottom: 28px;
}

.article-title {
	max-width: 880px;
	margin: 13px 0 14px;
	font-size: clamp(2rem, 2.85vw, 3.05rem);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.article-dek {
	max-width: 760px;
	margin-bottom: 18px;
	font-size: clamp(1.02rem, 1.24vw, 1.18rem);
	line-height: 1.56;
}

.article-meta {
	gap: 13px;
	font-size: 0.77rem;
}

.article-meta__avatar {
	width: 31px;
	height: 31px;
}

.article-hero.shell {
	width: min(calc(100% - 48px), 1080px);
}

.article-hero {
	margin-bottom: 38px;
}

.article-hero__image {
	height: clamp(300px, 39vw, 500px);
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 14px 36px rgba(8, 21, 37, 0.10);
}

.featured-caption {
	max-width: 980px;
	padding-top: 9px;
	font-size: 0.72rem;
}

.article-layout {
	width: min(calc(100% - 48px), 1180px);
	display: grid;
	grid-template-columns: 50px minmax(0, 740px) minmax(250px, 286px);
	gap: 30px;
	align-items: start;
	justify-content: center;
}

.article-column {
	min-width: 0;
}

.article-content {
	font-size: 1.08rem;
	line-height: 1.76;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure,
.article-content table,
.article-content pre {
	margin-bottom: 1.3em;
}

.article-end {
	margin-top: 40px;
}

.article-widget-area {
	display: none !important;
}

.source-box {
	padding: 22px 24px;
	margin: 0;
	background: #eef3f8;
	border: 1px solid #d7e0ea;
	border-left: 4px solid var(--color-gold);
	border-radius: 0 12px 12px 0;
}

.source-box__kicker,
.google-news-cta__eyebrow,
.support-cta__eyebrow,
.kozmos-author-card__kicker,
.section-kicker {
	letter-spacing: 0.15em;
}

.source-box__title {
	margin: 5px 0 10px;
	font-size: 1.22rem;
}

.source-box__citation {
	font-size: 0.84rem;
	line-height: 1.55;
}

.source-box__details {
	font-size: 0.8rem;
}

.article-action-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 26px;
}

.support-cta--article-small,
.google-news-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 20px 22px;
	border-radius: 14px;
}

.support-cta--article-small {
	background: #fff6d6;
	border: 1px solid #edcf70;
}

.support-cta--article-small .support-cta__title,
.google-news-cta h2 {
	margin: 4px 0 0;
	font-size: 1.13rem;
}

.support-cta--article-small .support-cta__text,
.google-news-cta p:not(.google-news-cta__eyebrow) {
	margin: 6px 0 0;
	font-size: 0.84rem;
	line-height: 1.48;
}

.support-cta--article-small .button {
	min-height: 42px;
	padding-inline: 16px;
	white-space: nowrap;
}

.google-news-cta {
	background: #f5f8fc;
	border: 1px solid #d7e0ea;
}

.google-news-cta__eyebrow {
	margin: 0;
	color: #7a5a00;
	font-size: 0.64rem;
	font-weight: 830;
	text-transform: uppercase;
}

.article-topics {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 0;
	margin-top: 30px;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.article-topics a {
	padding: 7px 12px;
	font-size: 0.74rem;
}

.kozmos-author-card {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 20px;
	padding: 22px;
	margin-top: 30px;
	background: #f7f9fc;
	border: 1px solid #d7e0ea;
	border-radius: 14px;
}

.kozmos-author-card__avatar {
	width: 82px;
	height: 82px;
}

.kozmos-author-card__name {
	margin: 4px 0 6px;
	font-size: 1.32rem;
}

.kozmos-author-card__bio {
	font-size: 0.86rem;
	line-height: 1.58;
}

.related-posts {
	padding-top: 44px;
	margin-top: 44px;
	border-top: 1px solid var(--color-line);
}

.related-posts .section-heading {
	align-items: flex-start;
	margin-bottom: 22px;
}

.related-posts .section-heading h2 {
	font-size: clamp(1.9rem, 2.55vw, 2.45rem);
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.story-card {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.story-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.story-card__media {
	margin-bottom: 14px;
}

.story-card--compact .story-card__excerpt {
	display: none;
}

.story-card--compact .story-card__title {
	font-size: 1rem;
	line-height: 1.3;
}

.story-card__date {
	margin-top: auto;
	padding-top: 10px;
}

.site-footer {
	position: relative;
	padding: 0;
	background: #1f2026;
	color: #f5f7fb;
}

.site-footer::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #e8136a 0 16%, #e57715 16% 32%, #e5ae15 32% 48%, #17e2b1 48% 64%, #22d7ef 64% 82%, #6c2de8 82% 100%);
	content: "";
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(220px, 1.3fr) minmax(170px, 0.85fr) minmax(420px, 2fr);
	gap: 56px;
	align-items: start;
	padding-top: 58px;
	padding-bottom: 54px;
}

.site-footer__brand .site-brand__image,
.site-footer__brand .custom-logo {
	width: 180px;
	height: auto;
}

.footer-social__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
}

.footer-social__link {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: #fff;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
	color: var(--color-gold);
	transform: translateY(-2px);
}

.footer-social svg,
.site-footer__newsletter svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
}

.site-footer__newsletter-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.site-footer__newsletter-link:hover,
.site-footer__newsletter-link:focus-visible {
	color: var(--color-gold);
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(160px, 1fr));
	gap: 52px;
}

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

.site-footer__links a {
	color: #fff;
	font-size: 0.9rem;
	line-height: 1.35;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	color: var(--color-gold);
}

.site-footer__bottom {
	background: #000;
}

.site-footer__bottom .shell {
	padding-top: 22px;
	padding-bottom: 22px;
	text-align: center;
}

.site-footer__bottom p {
	margin: 0;
	color: #e7ebf2;
	font-size: 0.88rem;
}

.legacy-kozmos-icon {
	display: inline-flex;
	vertical-align: middle;
}

.legacy-kozmos-icon svg {
	width: 1em;
	height: 1em;
}

@media (max-width: 1220px) {
	.article-layout {
		grid-template-columns: 48px minmax(0, 1fr) 270px;
		gap: 24px;
	}
}

@media (max-width: 1040px) {
	.article-layout {
		grid-template-columns: 46px minmax(0, 1fr);
		max-width: 900px;
	}

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

	.site-footer__links {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	.article-shell,
	.article-layout,
	.article-hero.shell {
		width: min(calc(100% - 32px), 100%);
	}

	.article-title {
		font-size: clamp(2rem, 8vw, 2.85rem);
	}

	.article-hero__image {
		height: auto;
		max-height: none;
	}

	.article-layout {
		grid-template-columns: 1fr;
	}

	.support-cta--article-small,
	.google-news-cta {
		grid-template-columns: 1fr;
	}

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

	.kozmos-author-card__avatar {
		width: 72px;
		height: 72px;
	}

	.related-posts__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 34px;
		padding-top: 48px;
		padding-bottom: 42px;
	}

	.site-footer__links {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 600px) {

	.article-topics {
		display: block;
	}

	.article-topics__label {
		display: block;
		margin-bottom: 12px;
	}
}

/* Kozmos 1.3.5 design pass: category system, related cards, sidebar, footer, rocket top button */
.category-color-bar {
	display: flex;
	width: 100%;
	height: 4px;
	background: var(--color-navy);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.category-color-bar span {
	flex: 1 1 0;
	background: var(--cat-color, var(--color-gold));
}

.eyebrow {
	color: color-mix(in srgb, var(--cat-color, var(--color-gold)) 64%, #111d2d 36%);
}

.eyebrow > span {
	background: var(--cat-color, var(--color-gold));
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cat-color, var(--color-gold)) 18%, transparent);
}

.eyebrow--on-dark,
.story-overlay .eyebrow {
	color: color-mix(in srgb, var(--cat-color, var(--color-gold)) 82%, #fff 18%);
}

.related-posts__grid {
	align-items: stretch;
	gap: 28px;
}

.related-posts .story-card {
	display: flex;
	height: 100%;
	min-height: 100%;
	flex-direction: column;
}

.related-posts .story-card__media {
	aspect-ratio: 16 / 9;
	margin-bottom: 15px;
	border-radius: 10px;
}

.related-posts .story-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.related-posts .story-card__body {
	display: flex;
	flex: 1 1 auto;
	min-height: 152px;
	flex-direction: column;
}

.related-posts .story-card--compact .story-card__title {
	margin: 9px 0 14px;
	font-size: 1.02rem;
	line-height: 1.32;
}

.related-posts .story-card__date {
	margin-top: auto;
	padding-top: 12px;
}

.site-footer {
	background: #1f2026;
	color: #d9dde5;
	border-top: 0;
}

.site-footer::before {
	background: linear-gradient(90deg, #e8136a 0 9.09%, #19a7ff 9.09% 18.18%, #f4c84a 18.18% 27.27%, #6c4cff 27.27% 36.36%, #17d4a2 36.36% 45.45%, #ff7a18 45.45% 54.54%, #d88a2d 54.54% 63.63%, #62c96f 63.63% 72.72%, #aeb9c7 72.72% 81.81%, #37b865 81.81% 90.9%, #00bcd4 90.9% 100%);
}

.site-footer__main {
	padding-bottom: 44px;
}

.site-footer__bottom {
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom .shell {
	padding-top: 22px;
	padding-bottom: 24px;
	text-align: center;
}

.site-footer__bottom p {
	color: #d9dde5;
}

.back-to-top {
	position: fixed;
	z-index: 90;
	right: 22px;
	bottom: 24px;
	display: grid;
	width: 48px;
	height: 48px;
	padding: 0;
	place-items: center;
	cursor: pointer;
	background: #071221;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	box-shadow: 0 14px 34px rgba(8, 21, 37, 0.26);
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px) scale(0.92);
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: #0c1b2d;
	transform: translateY(-3px) scale(1.03);
}

.back-to-top__rocket {
	position: relative;
	z-index: 2;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	transform: translateY(-2px) rotate(-36deg);
}

.back-to-top__rocket svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.back-to-top__flame {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 8px;
	height: 12px;
	background: linear-gradient(180deg, #fff3a2 0%, #f4c84a 35%, #ff7a18 100%);
	border-radius: 50% 50% 60% 60%;
	filter: drop-shadow(0 0 7px rgba(255, 122, 24, 0.55));
	transform: rotate(-36deg);
	animation: kozmos-flame 620ms ease-in-out infinite alternate;
}

.back-to-top__smoke {
	position: absolute;
	right: 6px;
	bottom: 4px;
	width: 6px;
	height: 6px;
	background: rgba(198, 207, 218, 0.72);
	border-radius: 50%;
	animation: kozmos-smoke 1500ms ease-out infinite;
}

.back-to-top__smoke--two {
	right: 15px;
	bottom: 3px;
	animation-delay: 520ms;
}

@keyframes kozmos-flame {
	from {
		transform: rotate(-36deg) scaleY(0.8);
		opacity: 0.78;
	}
	to {
		transform: rotate(-36deg) scaleY(1.15);
		opacity: 1;
	}
}

@keyframes kozmos-smoke {
	0% {
		opacity: 0.55;
		transform: translate(0, 0) scale(0.65);
	}
	100% {
		opacity: 0;
		transform: translate(-14px, 12px) scale(1.7);
	}
}





@media (max-width: 782px) {
	.related-posts .story-card__body {
		min-height: 0;
	}

	.back-to-top {
		right: 16px;
		bottom: 18px;
		width: 44px;
		height: 44px;
	}
}



/* Kozmos 1.3.6 article polish: tighter header, cleaner share rail, stronger sidebar, no source kicker */
@media (min-width: 1041px) {
	.article-header.article-shell {
		width: min(calc(100% - 64px), 1320px);
	}

	.article-title {
		max-width: 1320px;
		font-size: clamp(2.25rem, 3.05vw, 3.05rem);
		line-height: 1.075;
		letter-spacing: -0.048em;
	}

	.article-dek {
		max-width: 920px;
		font-size: clamp(1.05rem, 1.25vw, 1.24rem);
	}

	.article-hero.shell {
		width: min(calc(100% - 64px), 1200px);
	}

	.article-hero__image {
		max-height: min(60vh, 620px);
	}
}

.article-header {
	padding-top: 38px;
	padding-bottom: 26px;
}

.article-title {
	margin-top: 14px;
	margin-bottom: 16px;
}

.article-hero {
	margin-bottom: 44px;
}

.source-box {
	padding: 24px 26px;
	margin-top: 44px;
	border-left-width: 3px;
}

.source-box__title {
	margin-top: 0;
}

.related-posts__grid {
	align-items: stretch;
}

.related-posts .story-card__body {
	min-height: 166px;
}

.related-posts .story-card__date {
	margin-top: auto;
	padding-top: 14px;
}





@media (max-width: 782px) {
	.article-header {
		padding-top: 28px;
		padding-bottom: 22px;
	}

	.article-title {
		font-size: clamp(2rem, 8vw, 2.65rem);
		line-height: 1.06;
	}

	.article-hero {
		margin-bottom: 34px;
	}

	.related-posts .story-card__body {
		min-height: 0;
	}
}

@media (min-width: 1041px) {
	.article-header.article-shell {
		width: min(calc(100% - 64px), 1400px);
	}

	.article-title {
		max-width: 1400px;
		font-size: clamp(2.1rem, 2.65vw, 3.05rem);
		line-height: 1.06;
	}
}

.kozmos-author-card + .article-topics {
	margin-top: 30px;
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.related-posts .story-card {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.related-posts .story-card__media {
	aspect-ratio: 16 / 9;
	margin-bottom: 15px;
	border-radius: 8px;
}

.related-posts .story-card__body {
	display: flex;
	min-height: 184px;
	flex: 1;
	flex-direction: column;
}

.related-posts .story-card--compact .story-card__title,
.related-posts .story-card__title {
	margin-bottom: 0;
	font-size: 1.03rem;
	line-height: 1.28;
}

.related-posts .story-card__date {
	margin-top: auto;
	padding-top: 18px;
}

@media (max-width: 1040px) {

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

	.related-posts .story-card__body {
		min-height: 0;
	}
}

@media (max-width: 700px) {

	.related-posts__grid {
		grid-template-columns: 1fr;
	}
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin-top: 1.38em;
	margin-bottom: 0.34em;
}

.article-content h2 + p,
.article-content h3 + p,
.article-content h4 + p {
	margin-top: 0;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure,
.article-content table,
.article-content pre {
	margin-bottom: 1.22em;
}

@media (min-width: 1041px) {
	.article-layout {
		grid-template-columns: 52px minmax(0, 780px) minmax(260px, 300px);
		gap: 30px;
	}
}

.related-posts {
	padding-top: 36px;
	margin-top: 48px;
	border-top: 0;
}

.related-posts .section-heading {
	padding-bottom: 0;
	margin-bottom: 24px;
	border-bottom: 0;
}

.related-posts__grid {
	gap: 26px;
	align-items: start;
}

.related-posts .story-card {
	display: block;
	height: auto;
}

.related-posts .story-card__media {
	aspect-ratio: 16 / 9;
	margin-bottom: 14px;
}

.related-posts .story-card__body {
	display: grid;
	grid-template-rows: auto minmax(3.85em, auto) auto;
	min-height: 0;
}

.related-posts .story-card--compact .story-card__title,
.related-posts .story-card__title {
	margin: 8px 0 12px;
	font-size: 1rem;
	line-height: 1.28;
}

.related-posts .story-card__date {
	margin-top: 0;
	padding-top: 0;
	align-self: end;
}



@media (max-width: 700px) {

	.related-posts .story-card__body {
		display: block;
	}

	.related-posts .story-card__date {
		margin-top: 12px;
	}
}

.article-layout {
	grid-template-columns: 44px minmax(0, 780px) minmax(240px, 286px);
	gap: 28px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin-top: 1.12em;
	margin-bottom: 0.20em;
}

.article-content h2 + p,
.article-content h3 + p,
.article-content h4 + p {
	margin-top: 0;
}

.related-posts {
	padding-top: 32px;
	margin-top: 42px;
}

.related-posts .section-heading {
	margin-bottom: 22px;
}

.related-posts__grid {
	align-items: start;
}

.related-posts .story-card__body {
	display: block;
	min-height: 0;
}

.related-posts .story-card__date {
	display: block;
	margin-top: 10px;
	padding-top: 0;
}
.footer-social__link--instagram { --social-color: #e4405f; }
.footer-social__link--telegram { --social-color: #229ed9; }

.footer-social__link {
	color: var(--social-color, #ffffff);
	transition: color 160ms ease, transform 160ms ease, filter 160ms ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
	color: var(--social-color, var(--color-gold));
	filter: drop-shadow(0 0 10px color-mix(in srgb, var(--social-color, var(--color-gold)) 45%, transparent));
	outline: 0;
	transform: translateY(-3px) scale(1.06);
}

@media (max-width: 1180px) {
	.article-layout {
		grid-template-columns: minmax(0, 760px) minmax(240px, 284px);
	}
}

@media (max-width: 1040px) {

	.article-layout {
		grid-template-columns: 1fr;
	}
}



/* Kozmos 1.4.0: architecture polish, working explore rail, Google News top card, real social colors, animated footer */
.breadcrumbs {
	display: none !important;
}

.article-header {
	padding-top: clamp(34px, 5vw, 64px);
}

.google-news-top-card {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	max-width: 680px;
	margin-top: 20px;
	padding: 10px 12px;
	background: linear-gradient(135deg, #f8fbff, #eef5ff);
	border: 1px solid #d7e5f7;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(27, 88, 160, 0.08);
	color: var(--color-ink);
}

.google-news-top-card__icon {
	display: grid;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	place-items: center;
	background: #fff;
	color: #4285f4;
	border: 1px solid #dbe7fb;
	border-radius: 50%;
	font-weight: 900;
	font-family: Arial, sans-serif;
	box-shadow: 0 6px 14px rgba(66, 133, 244, 0.12);
}

.google-news-top-card__copy {
	display: grid;
	gap: 1px;
	text-align: left;
}

.google-news-top-card__copy span {
	color: #33506f;
	font-size: 0.70rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.google-news-top-card__copy strong {
	font-size: 0.88rem;
	line-height: 1.2;
}

.google-news-top-card a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	padding: 8px 12px;
	background: #101a2a;
	color: #fff;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.google-news-top-card a:hover,
.google-news-top-card a:focus-visible {
	background: #0b5bd3;
	box-shadow: 0 10px 22px rgba(11, 91, 211, 0.18);
	outline: 0;
	transform: translateY(-1px);
}

.google-news-top-card a svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

/* Share rail: clean position and actual brand colours. */
.article-layout {
	overflow: visible;
}

/* Footer: professional dark-grey block with subtle space motion, no black copyright slab. */
.site-footer {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #22242b 0%, #1d2027 55%, #1a1d23 100%) !important;
	color: #dbe3ee;
	border-top: 0;
}

.site-footer::before {
	height: 3px !important;
	background: linear-gradient(90deg, #e8136a 0 14%, #f4c84a 14% 28%, #6c4cff 28% 42%, #17d4a2 42% 56%, #ff7a18 56% 70%, #37b865 70% 84%, #19a7ff 84% 100%) !important;
}

.site-footer__space {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.site-footer__space::before,
.site-footer__space::after {
	position: absolute;
	inset: -20%;
	background-image:
		radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.5px),
		radial-gradient(circle, rgba(255,255,255,.35) 0 1px, transparent 1.4px);
	background-size: 110px 90px, 170px 140px;
	opacity: .22;
	content: "";
	animation: kozmos-star-drift 38s linear infinite;
}

.site-footer__space::after {
	opacity: .13;
	animation-duration: 62s;
	animation-direction: reverse;
}

.site-footer__main,
.site-footer__bottom {
	position: relative;
	z-index: 1;
}

.site-footer__main {
	padding-top: 64px !important;
	padding-bottom: 52px !important;
}

.site-footer__bottom {
	background: transparent !important;
	border-top: 1px solid rgba(222, 231, 242, 0.13);
}

.site-footer__bottom .shell {
	padding-top: 22px !important;
	padding-bottom: 26px !important;
	text-align: center;
}

.site-footer__bottom p {
	color: #c6d0de !important;
}

.shooting-star {
	position: absolute;
	top: 28%;
	left: -14%;
	width: 140px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
	transform: rotate(-18deg);
	opacity: 0;
	animation: kozmos-shooting-star 9s ease-in-out infinite;
}

.footer-satellite {
	position: absolute;
	right: 12%;
	top: 30%;
	width: 30px;
	height: 12px;
	border: 1px solid rgba(255,255,255,.34);
	border-radius: 8px;
	transform: rotate(-18deg);
	opacity: .28;
	animation: kozmos-satellite 12s ease-in-out infinite;
}

.footer-satellite::before,
.footer-satellite::after {
	position: absolute;
	top: 2px;
	width: 14px;
	height: 8px;
	background: rgba(25, 167, 255, .28);
	border: 1px solid rgba(255,255,255,.24);
	content: "";
}

.footer-satellite::before { left: -18px; }
.footer-satellite::after { right: -18px; }

.footer-astronaut {
	position: absolute;
	right: 4%;
	bottom: 18%;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,255,255,.34);
	border-radius: 50%;
	opacity: .17;
	animation: kozmos-astronaut-float 14s ease-in-out infinite;
}

.footer-astronaut::after {
	position: absolute;
	left: 4px;
	top: 17px;
	width: 6px;
	height: 12px;
	background: rgba(255,255,255,.25);
	border-radius: 4px;
	content: "";
}

.footer-social__menu {
	gap: 12px !important;
}

.footer-social__link {
	width: 40px !important;
	height: 40px !important;
	border-radius: 50%;
	color: #fff !important;
	background: var(--brand-bg, rgba(255,255,255,.08)) !important;
	border: 1px solid color-mix(in srgb, var(--brand-bg, #fff) 76%, #ffffff 24%) !important;
	box-shadow: 0 12px 26px color-mix(in srgb, var(--brand-bg, #000) 20%, transparent);
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.footer-social__link--facebook { --brand-bg: #1877f2; }
.footer-social__link--x,
.footer-social__link--twitter { --brand-bg: #000000; }
.footer-social__link--telegram { --brand-bg: #229ed9; }
.footer-social__link--instagram {
	background: radial-gradient(circle at 30% 110%, #ffdc80 0 18%, #f77737 32%, #e1306c 55%, #833ab4 82%, #5851db 100%) !important;
	border-color: rgba(255,255,255,.22) !important;
	box-shadow: 0 12px 26px rgba(225, 48, 108, .24) !important;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
	color: #fff !important;
	filter: saturate(1.12) brightness(1.05);
	outline: 0;
	transform: translateY(-4px) scale(1.07) rotate(-2deg) !important;
}

.footer-social__link svg {
	width: 19px !important;
	height: 19px !important;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

@keyframes kozmos-star-drift {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(90px, -70px, 0); }
}

@keyframes kozmos-shooting-star {
	0%, 63%, 100% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-18deg); }
	68% { opacity: .78; }
	78% { opacity: 0; transform: translate3d(125vw, 34vh, 0) rotate(-18deg); }
}

@keyframes kozmos-satellite {
	0%, 100% { transform: translateY(0) rotate(-18deg); }
	50% { transform: translateY(-8px) rotate(-14deg); }
}

@keyframes kozmos-astronaut-float {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
	50% { transform: translate3d(-8px, -12px, 0) rotate(8deg); }
}



@media (max-width: 760px) {
	.google-news-top-card {
		align-items: flex-start;
		border-radius: 18px;
	}

	.google-news-top-card a {
		align-self: center;
	}

	.site-footer__main {
		grid-template-columns: 1fr !important;
		gap: 34px !important;
	}
}

.google-news-top-card {
	display: none !important;
}

@keyframes kozmos-social-pop {
	0% { transform: translateY(0) scale(1); }
	55% { transform: translateY(-4px) scale(1.09); }
	100% { transform: translateY(-3px) scale(1.05); }
}

/* Related cards: date follows the text naturally, not halfway down the page. */
.related-posts {
	padding-top: 34px !important;
	margin-top: 34px !important;
}

.related-posts .story-card__body {
	min-height: 0 !important;
}

.related-posts .story-card__date {
	margin-top: 12px !important;
	padding-top: 0 !important;
}

.related-posts .story-card--compact .story-card__title,
.related-posts .story-card__title {
	min-height: 0 !important;
}

/* Footer: structured, professional, no category dump, no black slab. */
.site-footer {
	background:
		radial-gradient(circle at 14% 18%, rgba(25, 167, 255, 0.10), transparent 27%),
		radial-gradient(circle at 88% 18%, rgba(244, 200, 74, 0.10), transparent 25%),
		linear-gradient(180deg, #23262d 0%, #20232a 58%, #1d2026 100%) !important;
	border-top: 0 !important;
	color: #dce4ee !important;
}

.site-footer__space::before,
.site-footer__space::after {
	opacity: 0.12 !important;
}

.site-footer__main {
	grid-template-columns: minmax(240px, 1.15fr) minmax(170px, 0.65fr) minmax(340px, 1.25fr) !important;
	gap: clamp(32px, 6vw, 92px) !important;
	align-items: start !important;
	padding-top: 58px !important;
	padding-bottom: 46px !important;
}

.site-footer__brand .site-brand__image,
.site-footer__brand .custom-logo {
	width: 220px !important;
	height: auto !important;
}

.site-footer__brand::after {
	display: block;
	max-width: 290px;
	margin-top: 16px;
	color: #aeb9c7;
	font-size: 0.92rem;
	line-height: 1.6;
	content: "Neovisno novinarstvo o znanosti, svemiru i tehnologiji.";
}

.site-footer__newsletter-link {
	justify-content: flex-start !important;
	min-height: 42px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #eef4fa !important;
	font-weight: 780 !important;
	letter-spacing: 0.02em !important;
}

.site-footer__newsletter-link:hover,
.site-footer__newsletter-link:focus-visible {
	color: var(--color-gold) !important;
	transform: none !important;
}

.site-footer__links {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 18px 58px !important;
}

.site-footer__links a {
	color: #dfe7f1 !important;
	font-size: 0.92rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em !important;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	color: var(--color-gold) !important;
}

.site-footer__bottom {
	background: transparent !important;
	border-top: 1px solid rgba(226, 234, 245, 0.13) !important;
}

.footer-social__menu {
	gap: 12px !important;
	margin-top: 20px !important;
}

.footer-social__link {
	width: 38px !important;
	height: 38px !important;
	color: #fff !important;
	border: 0 !important;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18) !important;
	transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease !important;
}

.footer-social__link--facebook {
	background: #1877f2 !important;
}

.footer-social__link--x,
.footer-social__link--twitter {
	background: #000 !important;
}

.footer-social__link--instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0 12%, #fd5949 38%, #d6249f 62%, #285aeb 100%) !important;
}

.footer-social__link--telegram {
	background: #229ed9 !important;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
	filter: saturate(1.15) brightness(1.08) !important;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25) !important;
	transform: translateY(-4px) scale(1.06) !important;
}

.footer-social__link svg {
	width: 18px !important;
	height: 18px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	stroke-width: 2 !important;
}





@media (max-width: 760px) {

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

	.site-footer__links {
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}
}
.admin-bar .explore-rail { top: calc(var(--header-offset, 72px) + 32px); }
.explore-rail__inner {
	display: grid !important;
	grid-template-columns: auto 34px minmax(0, 1fr) 34px !important;
	gap: 12px !important;
	align-items: center !important;
	min-height: 52px !important;
	overflow: hidden !important;
	width: min(calc(100% - 28px), var(--shell, 1320px)) !important;
}
.explore-rail__label {
	grid-column: 1 !important;
	padding-right: 8px !important;	
}
.explore-rail__arrow--prev { grid-column: 2 !important; }
.explore-rail__viewport {
	grid-column: 3 !important;
	min-width: 0 !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch !important;
	touch-action: pan-x !important;
	scrollbar-width: none !important;
	mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%) !important;
	cursor: auto !important;
}
.explore-rail__arrow--next { grid-column: 4 !important; }
.explore-rail__viewport::-webkit-scrollbar { display: none !important; }
.explore-rail ul {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 24px !important;
	width: max-content !important;
	min-width: max-content !important;
	padding: 0 22px !important;
	margin: 0 !important;
}
.explore-rail li { flex: 0 0 auto !important; }
.explore-rail a {
	position: relative !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	min-height: 36px !important;
	padding: 0 0 3px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: rgba(232,239,247,0.84) !important;
	font-size: 0.82rem !important;
	font-weight: 780 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	text-decoration: none !important;
	pointer-events: auto !important;
	transition: color 160ms ease, transform 160ms ease !important;
}
.explore-rail a span {
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	background: var(--cat-color, #f4c84a) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cat-color, #f4c84a) 22%, transparent) !important;
	flex: 0 0 auto !important;
}
.explore-rail a::after {
	position: absolute;
	left: 18px;
	right: 0;
	bottom: -3px;
	height: 2px;
	background: var(--cat-color, #f4c84a);
	border-radius: 999px;
	content: "";
	opacity: 0;
	transform: scaleX(0.45);
	transform-origin: left center;
	transition: opacity 160ms ease, transform 160ms ease;
}
.explore-rail a:hover,
.explore-rail a:focus-visible,
.explore-rail a.is-current {
	color: #fff !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
	transform: translateY(-1px) !important;
}
.explore-rail a:hover::after,
.explore-rail a:focus-visible::after,
.explore-rail a.is-current::after {
	opacity: 1 !important;
	transform: scaleX(1) !important;
}
.explore-rail__arrow {
	position: relative !important;
	display: grid !important;
	place-items: center !important;
	width: 34px !important;
	height: 34px !important;
	border: 1px solid rgba(255,255,255,0.13) !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,0.055) !important;
	color: #eaf2fb !important;
	box-shadow: none !important;
	cursor: pointer !important;
	pointer-events: auto !important;
	transition: background 150ms ease, border-color 150ms ease, transform 150ms ease !important;
}
.explore-rail__arrow:hover,
.explore-rail__arrow:focus-visible {
	background: rgba(255,255,255,0.12) !important;
	border-color: rgba(255,255,255,0.28) !important;
	transform: translateY(-1px) !important;
}
.explore-rail__arrow.is-disabled { opacity: 0.38 !important; }
.share-rail__label,
.share-rail__label::after { display: none !important; content: none !important; }
.share-rail a {
	position: relative !important;
	display: grid !important;
	place-items: center !important;
	width: 38px !important;
	height: 38px !important;
	border: 1px solid #d8e2ee !important;
	border-radius: 50% !important;
	background: #fff !important;
	color: var(--brand-color, #0d1b2d) !important;
	box-shadow: 0 10px 22px rgba(8,21,37,0.09) !important;
	transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease !important;
}
.share-rail a::before { display: none !important; }
.share-rail svg { width: 18px !important; height: 18px !important; stroke: currentColor !important; fill: none !important; }
.share-rail__button--facebook { --brand-color: #1877f2; }
.share-rail__button--x { --brand-color: #000000; }
.share-rail__button--linkedin { --brand-color: #0a66c2; }
.share-rail__button--mail { --brand-color: #ea4335; }
.share-rail a:hover,
.share-rail a:focus-visible {
	background: var(--brand-color) !important;
	border-color: var(--brand-color) !important;
	color: #fff !important;
	transform: translateY(-3px) scale(1.04) !important;
}
@media (max-width: 1320px) {
	.article-layout {
		grid-template-columns: minmax(0, 780px) minmax(250px, 310px) !important;
		gap: 34px !important;
	}
	.share-rail {
		grid-column: 1 / -1 !important;
		position: static !important;
		flex-direction: row !important;
		width: auto !important;
		margin: 0 0 18px !important;
	}
}
@media (max-width: 1040px) {
	.article-layout { grid-template-columns: minmax(0, 1fr) !important; }
	.share-rail { display: none !important; }
}

/* Article rhythm: reduce absurd gaps after headings. */
.article-content h2,
.article-content h3,
.article-content h4 {
	margin-top: 1.35em !important;
	margin-bottom: 0.38em !important;
}
.article-content h2 + p,
.article-content h3 + p,
.article-content h4 + p { margin-top: 0 !important; }

/* Homepage focus panel: simpler, lighter and more editorial. */
.home-latest__aside {
	position: sticky !important;
	top: 136px !important;
}
.focus-panel {
	padding: 22px 22px 20px !important;
	background: #f7f9fc !important;
	color: var(--color-ink) !important;
	border: 1px solid #d9e3ee !important;
	border-radius: 20px !important;
	box-shadow: 0 18px 45px rgba(8,21,37,0.06) !important;
}
.focus-panel > h2 {
	margin: 6px 0 14px !important;
	color: var(--color-ink) !important;
	font-size: 1.15rem !important;
	line-height: 1.2 !important;
	letter-spacing: -0.02em !important;
}
.focus-list li {
	grid-template-columns: 28px minmax(0,1fr) !important;
	gap: 12px !important;
	padding: 13px 0 !important;
	border-top: 1px solid #dce5ef !important;
}
.focus-list__number {
	display: grid !important;
	place-items: center !important;
	width: 26px !important;
	height: 26px !important;
	border: 1px solid #cfdae7 !important;
	border-radius: 50% !important;
	background: #fff !important;
	color: #758398 !important;
	font-size: 0.66rem !important;
	letter-spacing: 0 !important;
}
.focus-list__category {
	margin-bottom: 5px !important;
	color: var(--color-gold-dark) !important;
	font-size: 0.58rem !important;
	letter-spacing: 0.14em !important;
}
.focus-list h3 {
	color: var(--color-ink) !important;
	font-size: 0.88rem !important;
	line-height: 1.26 !important;
}
.focus-list h3 a:hover { color: var(--color-link) !important; }

/* Article sidebar: compact, not glued to the header, not visually dominant. */
.article-sidebar-wrap {
	position: sticky !important;
	top: 148px !important;
	align-self: start !important;
	padding-top: 18px !important;
}
.editorial-sidebar {
	padding: 18px 18px 20px !important;
	border-radius: 18px !important;
	background: #f7f9fc !important;
	border: 1px solid #d9e3ee !important;
	box-shadow: 0 16px 36px rgba(8,21,37,0.05) !important;
}
.editorial-sidebar__heading h2 { font-size: 1.25rem !important; }
.sidebar-news__item,
.sidebar-news__item--lead {
	grid-template-columns: 28px minmax(0, 1fr) !important;
	gap: 11px !important;
	padding: 12px 0 !important;
}
.sidebar-news__item::before {
	width: 26px !important;
	height: 26px !important;
	font-size: 0.64rem !important;
}
.sidebar-news h3,
.sidebar-news__item--lead h3 {
	font-size: 0.86rem !important;
	line-height: 1.25 !important;
}
.sidebar-news time,
.sidebar-news__item--lead time { font-size: 0.66rem !important; }

/* Related posts: one clean separator, compact dates right under the titles. */
.related-posts {
	margin-top: 42px !important;
	padding-top: 42px !important;
	border-top: 1px solid #d7e1ed !important;
}
.related-posts .section-heading {
	border-bottom: 0 !important;
	margin-bottom: 24px !important;
	padding-bottom: 0 !important;
}
.related-posts__grid {
	align-items: start !important;
	gap: 34px !important;
}
.related-posts .story-card {
	display: block !important;
}
.related-posts .story-card__body {
	display: block !important;
	min-height: 0 !important;
	padding-top: 14px !important;
}
.related-posts .story-card__excerpt { display: none !important; }
.related-posts .story-card__title {
	min-height: 0 !important;
	margin-bottom: 10px !important;
}
.related-posts .story-card__date {
	display: block !important;
	margin-top: 10px !important;
	padding-top: 0 !important;
}

/* Footer: restrained newsroom footer with subtle starfield, no gimmicky objects. */
.site-footer {
	position: relative !important;
	overflow: hidden !important;
	background: linear-gradient(180deg, #22252b 0%, #202329 100%) !important;
	color: #dce4ee !important;
	border-top: 0 !important;
}
.site-footer::before {
	height: 4px !important;
}
.site-footer__space,
.footer-satellite,
.footer-astronaut,
.shooting-star { display: none !important; }
.site-footer::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	content: "";
	background-image:
		radial-gradient(circle, rgba(255,255,255,0.22) 1px, transparent 1.5px),
		radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1.5px);
	background-size: 120px 90px, 180px 140px;
	background-position: 20px 10px, 70px 60px;
	opacity: 0.26;
	animation: kozmos-footer-stars 18s linear infinite;
}
@keyframes kozmos-footer-stars {
	from { background-position: 20px 10px, 70px 60px; }
	to { background-position: 140px 100px, 250px 200px; }
}
.site-footer__main,
.site-footer__bottom { position: relative !important; z-index: 1 !important; }
.site-footer__main {
	display: grid !important;
	grid-template-columns: minmax(230px, 0.9fr) minmax(180px, 0.55fr) minmax(420px, 1.25fr) !important;
	gap: clamp(36px, 7vw, 100px) !important;
	align-items: start !important;
	padding: 54px 0 42px !important;
}
.site-footer__brand .site-brand__image,
.site-footer__brand .custom-logo { width: 210px !important; height: auto !important; }
.footer-social__menu {
	display: flex !important;
	gap: 12px !important;
	margin-top: 28px !important;
}
.footer-social__link {
	display: grid !important;
	place-items: center !important;
	width: 38px !important;
	height: 38px !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,0.045) !important;
	border: 1px solid rgba(255,255,255,0.14) !important;
	color: var(--brand-color, #fff) !important;
	box-shadow: none !important;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease !important;
}
.footer-social__link svg { width: 18px !important; height: 18px !important; stroke: currentColor !important; fill: none !important; }
.footer-social__link--facebook { --brand-color: #1877f2; }
.footer-social__link--x,
.footer-social__link--twitter { --brand-color: #ffffff; }
.footer-social__link--instagram { --brand-color: #e4405f; }
.footer-social__link--telegram { --brand-color: #229ed9; }
.footer-social__link:hover,
.footer-social__link:focus-visible {
	background: var(--brand-color, #fff) !important;
	border-color: var(--brand-color, #fff) !important;
	color: #fff !important;
	transform: translateY(-3px) !important;
}
.footer-social__link--x:hover,
.footer-social__link--x:focus-visible,
.footer-social__link--twitter:hover,
.footer-social__link--twitter:focus-visible {
	background: #000 !important;
	border-color: #000 !important;
}
.footer-social__link--instagram:hover,
.footer-social__link--instagram:focus-visible {
	background: radial-gradient(circle at 30% 107%, #fdf497 0 5%, #fd5949 45%, #d6249f 62%, #285aeb 90%) !important;
	border-color: rgba(255,255,255,0.22) !important;
}
.site-footer__newsletter-link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 11px 14px !important;
	border: 1px solid rgba(255,255,255,0.14) !important;
	border-radius: 999px !important;
	background: rgba(255,255,255,0.035) !important;
}
.site-footer__links {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
	gap: 22px 64px !important;
}
.site-footer__links ul { gap: 15px !important; }
.site-footer__links a {
	font-size: 0.84rem !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
}
.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.10) !important;
	background: transparent !important;
}
.site-footer__bottom .shell {
	display: flex !important;
	justify-content: center !important;
	padding: 22px 0 30px !important;
}
.site-footer__bottom p { color: #b8c3d1 !important; }
@media (max-width: 900px) {
	.site-footer__main { grid-template-columns: 1fr !important; gap: 30px !important; }
	.site-footer__links { grid-template-columns: 1fr !important; }
}


/* Kozmos 1.4.4: clean article-end rhythm and professional related cards. */
.article-end {
	margin-top: 38px !important;
}

.article-topics {
	margin-top: 28px !important;
	padding: 0 !important;
	border-top: 0 !important;
	border-bottom: 0 !important;
}

.kozmos-author-card + .article-topics {
	margin-top: 24px !important;
}

.related-posts {
	margin-top: 54px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

.related-posts .section-heading {
	position: relative !important;
	margin-bottom: 24px !important;
	padding-bottom: 0 !important;
	border-bottom: 0 !important;
}

.related-posts .section-heading::after {
	content: "" !important;
	display: block !important;
	width: 62px !important;
	height: 3px !important;
	margin-top: 16px !important;
	border-radius: 999px !important;
	background: var(--color-gold) !important;
}

.related-posts .section-kicker {
	margin-bottom: 8px !important;
	color: #7a5a00 !important;
	font-size: 0.68rem !important;
	letter-spacing: 0.18em !important;
}

.related-posts .section-heading h2 {
	font-size: clamp(2rem, 3.4vw, 2.8rem) !important;
	line-height: 1.02 !important;
	letter-spacing: -0.05em !important;
}

.related-posts__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 22px !important;
	align-items: stretch !important;
}

.related-posts .story-card {
	display: flex !important;
	min-height: 100% !important;
	height: auto !important;
	flex-direction: column !important;
	overflow: hidden !important;
	background: #fff !important;
	border: 1px solid #dbe5ef !important;
	border-radius: 18px !important;
	box-shadow: 0 16px 38px rgba(14, 32, 55, 0.06) !important;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

.related-posts .story-card:hover {
	transform: translateY(-3px) !important;
	border-color: #cbd9e7 !important;
	box-shadow: 0 22px 48px rgba(14, 32, 55, 0.10) !important;
}

.related-posts .story-card__media {
	display: block !important;
	width: 100% !important;
	aspect-ratio: 16 / 9 !important;
	margin: 0 !important;
	border-radius: 0 !important;
	background: #07111f !important;
}

.related-posts .story-card__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 240ms ease !important;
}

.related-posts .story-card:hover .story-card__image {
	transform: scale(1.035) !important;
}

.related-posts .story-card__body {
	display: flex !important;
	min-height: 0 !important;
	height: auto !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	padding: 16px 17px 17px !important;
}

.related-posts .eyebrow {
	margin-bottom: 10px !important;
	font-size: 0.63rem !important;
	letter-spacing: 0.16em !important;
}

.related-posts .story-card--compact .story-card__title,
.related-posts .story-card__title {
	margin: 0 !important;
	min-height: 0 !important;
	font-size: 1.02rem !important;
	line-height: 1.22 !important;
	letter-spacing: -0.025em !important;
}

.related-posts .story-card__title a {
	text-decoration: none !important;
}

.related-posts .story-card__date {
	display: inline-flex !important;
	align-items: center !important;
	width: fit-content !important;
	margin-top: 13px !important;
	padding: 7px 10px !important;
	background: #f4f7fb !important;
	border: 1px solid #dfe8f2 !important;
	border-radius: 999px !important;
	color: #617086 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.72rem !important;
	font-weight: 760 !important;
	line-height: 1 !important;
}

@media (max-width: 900px) {
	.related-posts__grid {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.related-posts .story-card {
		display: grid !important;
		grid-template-columns: 132px minmax(0, 1fr) !important;
		align-items: stretch !important;
	}

	.related-posts .story-card__media {
		height: 100% !important;
		aspect-ratio: auto !important;
	}

	.related-posts .story-card__body {
		padding: 14px 15px !important;
	}

	.related-posts .story-card__date {
		margin-top: 10px !important;
	}
}

@media (max-width: 560px) {
	.related-posts .story-card {
		display: block !important;
	}

	.related-posts .story-card__media {
		aspect-ratio: 16 / 9 !important;
	}
}





/* Responsive article meta: author must never disappear. */




/* Related articles: old-site inspired proportions, fixed vertical rhythm and aligned dates. */
.related-posts {
	margin-top: 46px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}
.related-posts .section-heading {
	display: flex !important;
	align-items: flex-end !important;
	justify-content: space-between !important;
	margin-bottom: 18px !important;
	padding-bottom: 12px !important;
	border-bottom: 1px solid #dbe5ef !important;
}
.related-posts .section-heading::after {
	display: none !important;
	content: none !important;
}
.related-posts .section-kicker {
	margin-bottom: 5px !important;
	font-size: 0.62rem !important;
	letter-spacing: 0.16em !important;
}
.related-posts .section-heading h2 {
	font-size: clamp(1.55rem, 2.4vw, 2.05rem) !important;
	letter-spacing: -0.04em !important;
}
.related-posts__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 18px !important;
	align-items: stretch !important;
}
.related-posts .story-card {
	display: grid !important;
	grid-template-rows: auto 1fr !important;
	height: 100% !important;
	min-height: 0 !important;
	overflow: hidden !important;
	background: #fff !important;
	border: 1px solid #dbe5ef !important;
	border-radius: 14px !important;
	box-shadow: 0 10px 28px rgba(14,32,55,0.055) !important;
}
.related-posts .story-card:hover {
	border-color: #cbd9e7 !important;
	box-shadow: 0 16px 36px rgba(14,32,55,0.09) !important;
	transform: translateY(-2px) !important;
}
.related-posts .story-card__media {
	display: block !important;
	aspect-ratio: 16 / 9 !important;
	width: 100% !important;
	margin: 0 !important;
	border-radius: 0 !important;
	background: #071423 !important;
}
.related-posts .story-card__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}
.related-posts .story-card__body {
	display: grid !important;
	grid-template-rows: auto minmax(3.85em, 3.85em) auto !important;
	gap: 9px !important;
	padding: 14px 15px 15px !important;
	min-height: 0 !important;
}
.related-posts .eyebrow {
	margin: 0 !important;
	font-size: 0.58rem !important;
	letter-spacing: 0.14em !important;
}
.related-posts .story-card__title {
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 3 !important;
	overflow: hidden !important;
	margin: 0 !important;
	min-height: 0 !important;
	font-size: 0.98rem !important;
	line-height: 1.28 !important;
	letter-spacing: -0.02em !important;
}
.related-posts .story-card__date {
	display: inline-flex !important;
	align-items: center !important;
	justify-self: start !important;
	align-self: end !important;
	width: auto !important;
	margin: 0 !important;
	padding: 6px 9px !important;
	background: #f4f7fb !important;
	border: 1px solid #dde7f1 !important;
	border-radius: 999px !important;
	color: #65758a !important;
	font-size: 0.70rem !important;
	font-weight: 760 !important;
	line-height: 1 !important;
}
@media (max-width: 900px) {
	.related-posts__grid {
		grid-template-columns: 1fr !important;
	}
	.related-posts .story-card {
		grid-template-columns: 132px minmax(0, 1fr) !important;
		grid-template-rows: auto !important;
	}
	.related-posts .story-card__media {
		aspect-ratio: auto !important;
		height: 100% !important;
	}
	.related-posts .story-card__body {
		grid-template-rows: auto minmax(2.55em, auto) auto !important;
	}
	.related-posts .story-card__title {
		-webkit-line-clamp: 2 !important;
	}
}
@media (max-width: 540px) {
	.related-posts .story-card {
		display: grid !important;
		grid-template-columns: 104px minmax(0, 1fr) !important;
	}
	.related-posts .story-card__body {
		padding: 11px 12px !important;
		gap: 6px !important;
	}
	.related-posts .eyebrow {
		font-size: 0.52rem !important;
	}
	.related-posts .story-card__title {
		font-size: 0.9rem !important;
	}
	.related-posts .story-card__date {
		padding: 5px 8px !important;
		font-size: 0.66rem !important;
	}
}

/* Full-width membership lead window above footer. */
.prefooter-membership {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 15% 12%, rgba(25, 167, 255, 0.23), transparent 28%),
		radial-gradient(circle at 85% 0%, rgba(244, 180, 0, 0.18), transparent 26%),
		linear-gradient(135deg, #071423 0%, #101f33 54%, #172742 100%);
	color: #eef4fa;
}
.prefooter-membership::before {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(255,255,255,.32) 1px, transparent 1.5px),
		radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1.4px);
	background-size: 120px 90px, 190px 150px;
	opacity: .34;
	content: "";
	animation: kozmos-prefooter-stars 22s linear infinite;
}
@keyframes kozmos-prefooter-stars {
	from { background-position: 0 0, 40px 80px; }
	to { background-position: 120px 90px, 230px 230px; }
}
.prefooter-membership__space span {
	position: absolute;
	display: block;
	width: 110px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
	transform: rotate(-18deg);
	opacity: 0;
	animation: kozmos-prefooter-shoot 8s ease-in-out infinite;
}
.prefooter-membership__space span:nth-child(1) { top: 28%; left: -12%; animation-delay: 0s; }
.prefooter-membership__space span:nth-child(2) { top: 62%; left: 34%; animation-delay: 3.4s; }
.prefooter-membership__space span:nth-child(3) { top: 18%; left: 72%; animation-delay: 5.6s; }
@keyframes kozmos-prefooter-shoot {
	0%, 78%, 100% { opacity: 0; transform: translateX(0) rotate(-18deg); }
	8% { opacity: .9; }
	28% { opacity: 0; transform: translateX(280px) rotate(-18deg); }
}
.prefooter-membership__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(22px, 5vw, 80px);
	align-items: center;
	padding-top: clamp(34px, 5vw, 62px);
	padding-bottom: clamp(34px, 5vw, 62px);
}
.prefooter-membership__kicker {
	margin: 0 0 10px;
	color: #f4c84a;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.prefooter-membership h2 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(1.65rem, 3.1vw, 3rem);
	line-height: 1.04;
	letter-spacing: -0.05em;
}
.prefooter-membership p:not(.prefooter-membership__kicker) {
	max-width: 700px;
	margin: 14px 0 0;
	color: #c9d5e3;
	font-size: clamp(0.98rem, 1.35vw, 1.12rem);
	line-height: 1.58;
}
.prefooter-membership__actions {
	display: grid;
	justify-items: start;
	gap: 12px;
	min-width: min(100%, 240px);
}
.prefooter-membership__actions .button {
	min-height: 48px;
	padding-inline: 20px;
	box-shadow: 0 18px 44px rgba(244,200,74,0.24);
}
.prefooter-membership__actions span {
	color: #aebdd0;
	font-size: 0.82rem;
	font-weight: 700;
}
@media (max-width: 860px) {
	.prefooter-membership__inner {
		grid-template-columns: 1fr;
	}
}

/* Keep archive/category pages SEO-friendly: visible pagination remains the default. */
.pagination {
	margin-top: 36px !important;
}

/* Kozmos 1.4.7: media-safe article hero, visible membership lead, old-site related card rhythm, unique category colours. */

/* Featured images must not crop people, spacecraft, instruments, or captions. */
.article-hero.shell,
.article-hero {
	width: min(calc(100% - 32px), 1120px) !important;
	max-width: 1120px !important;
	margin: clamp(18px, 3vw, 30px) auto clamp(26px, 4vw, 42px) !important;
	padding: 0 !important;
	border-radius: 14px !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
}
.article-hero__image {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
	object-position: center center !important;
	border-radius: 14px !important;
	background: #071423 !important;
	box-shadow: 0 20px 44px rgba(10, 25, 43, 0.10) !important;
}
.featured-caption {
	max-width: 980px !important;
	margin: 10px auto 0 !important;
	padding: 0 6px !important;
	font-size: 0.78rem !important;
	line-height: 1.45 !important;
	color: #6b7a8f !important;
}

/* Full-width membership lead above footer: high contrast and readable. */
.prefooter-membership {
	position: relative !important;
	overflow: hidden !important;
	background:
		linear-gradient(90deg, rgba(7, 20, 35, 0.96) 0%, rgba(10, 28, 50, 0.94) 48%, rgba(8, 18, 31, 0.98) 100%),
		radial-gradient(circle at 78% 22%, rgba(244, 200, 74, 0.24), transparent 28%),
		radial-gradient(circle at 12% 72%, rgba(38, 201, 191, 0.16), transparent 30%) !important;
	color: #f5f8fc !important;
	border-top: 1px solid rgba(255,255,255,0.08) !important;
	border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.prefooter-membership::before {
	opacity: 0.20 !important;
}
.prefooter-membership__inner {
	grid-template-columns: minmax(0, 1.1fr) minmax(220px, auto) !important;
	padding-top: clamp(42px, 5.2vw, 76px) !important;
	padding-bottom: clamp(42px, 5.2vw, 76px) !important;
}
.prefooter-membership__kicker {
	color: #f4c84a !important;
	text-shadow: 0 1px 0 rgba(0,0,0,0.22) !important;
}
.prefooter-membership h2 {
	max-width: 760px !important;
	color: #ffffff !important;
	font-weight: 900 !important;
	text-shadow: 0 2px 16px rgba(0,0,0,0.28) !important;
}
.prefooter-membership p:not(.prefooter-membership__kicker) {
	max-width: 680px !important;
	color: #d8e3ef !important;
	font-weight: 520 !important;
}
.prefooter-membership__actions {
	justify-items: stretch !important;
	padding: 18px !important;
	border: 1px solid rgba(255,255,255,0.12) !important;
	border-radius: 18px !important;
	background: rgba(255,255,255,0.045) !important;
	box-shadow: 0 24px 60px rgba(0,0,0,0.20) !important;
	backdrop-filter: blur(10px) !important;
}
.prefooter-membership__actions .button {
	justify-content: center !important;
	min-height: 50px !important;
	font-weight: 900 !important;
}
.prefooter-membership__actions span {
	color: #d9e3ef !important;
	text-align: center !important;
}
@media (max-width: 860px) {
	.prefooter-membership__inner {
		grid-template-columns: 1fr !important;
	}
	.prefooter-membership__actions {
		justify-items: start !important;
		max-width: 340px !important;
	}
}

/* Related articles: restore the stronger old-site visual language while keeping layout stable. */
.related-posts {
	margin-top: clamp(44px, 5vw, 68px) !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}
.related-posts .section-heading {
	margin-bottom: 26px !important;
	padding-bottom: 14px !important;
	border-bottom: 1px solid #d8e2ed !important;
}
.related-posts .section-heading h2 {
	font-size: clamp(1.85rem, 3.1vw, 2.55rem) !important;
	line-height: 1 !important;
}
.related-posts__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2.4vw, 28px) !important;
	align-items: stretch !important;
}
.related-posts .story-card {
	position: relative !important;
	display: block !important;
	min-height: clamp(300px, 30vw, 410px) !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #050b14 !important;
	box-shadow: none !important;
	overflow: hidden !important;
	transform: none !important;
}
.related-posts .story-card::before {
	position: absolute !important;
	inset: 0 auto 0 0 !important;
	z-index: 3 !important;
	width: 8px !important;
	background: var(--cat-color, #f4c84a) !important;
	content: "" !important;
}
.related-posts .story-card::after {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.24) 35%, rgba(0,0,0,0.88) 100%) !important;
	content: "" !important;
}
.related-posts .story-card:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 24px 54px rgba(7, 17, 30, 0.18) !important;
}
.related-posts .story-card__media {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	aspect-ratio: auto !important;
	border-radius: 0 !important;
	background: #071423 !important;
}
.related-posts .story-card__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
	filter: saturate(1.05) contrast(1.04) !important;
	transition: transform 260ms ease !important;
}
.related-posts .story-card:hover .story-card__image {
	transform: scale(1.035) !important;
}
.related-posts .story-card__body {
	position: relative !important;
	z-index: 4 !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-end !important;
	height: 100% !important;
	min-height: inherit !important;
	padding: 32px 28px 30px 34px !important;
	color: #fff !important;
}
.related-posts .eyebrow {
	position: absolute !important;
	top: 30px !important;
	left: 34px !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 0 !important;
	margin: 0 !important;
	padding: 12px 13px !important;
	background: var(--cat-color, #f4c84a) !important;
	color: #fff !important;
	font-size: 0.72rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.035em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}
.related-posts .eyebrow span {
	display: none !important;
}
.related-posts .story-card__title {
	display: block !important;
	margin: 0 !important;
	min-height: 0 !important;
	font-size: clamp(1.04rem, 1.35vw, 1.32rem) !important;
	line-height: 1.12 !important;
	letter-spacing: -0.035em !important;
	color: #fff !important;
	-webkit-line-clamp: unset !important;
	overflow: visible !important;
}
.related-posts .story-card__title a {
	color: #fff !important;
	text-decoration: none !important;
}
.related-posts .story-card__title a:hover,
.related-posts .story-card__title a:focus-visible {
	color: #fff !important;
	text-decoration: underline !important;
	text-decoration-thickness: 2px !important;
	text-underline-offset: 4px !important;
}
.related-posts .story-card__excerpt,
.related-posts .story-card__date {
	display: none !important;
}
@media (max-width: 900px) {
	.related-posts__grid {
		grid-template-columns: 1fr !important;
	}
	.related-posts .story-card {
		min-height: 250px !important;
	}
}

/* Kozmos 1.4.8: responsive header/meta cleanup, category archive grid, related category colours. */

/* Compact mobile support button in the header, inspired by large news-site subscribe patterns but restrained for Kozmos. */
.header-membership-cta {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 13px;
	border-radius: 999px;
	background: var(--color-gold);
	color: #111827;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(244, 200, 74, 0.18);
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-membership-cta:hover,
.header-membership-cta:focus-visible {
	background: #ffdc66;
	color: #111827;
	outline: 0;
	box-shadow: 0 14px 30px rgba(244, 200, 74, 0.25);
	transform: translateY(-1px);
}

@media (max-width: 1040px) {
	.site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto auto !important;
		gap: 10px !important;
		min-height: 68px !important;
	}

	.site-brand {
		grid-column: 1 !important;
	}

	.site-brand__image,
	.custom-logo {
		max-width: 164px !important;
		height: 35px !important;
	}

	.header-membership-cta {
		display: inline-flex;
		grid-column: 2 !important;
		justify-self: end !important;
	}

	.nav-toggle {
		grid-column: 3 !important;
		width: 38px !important;
		height: 38px !important;
	}

	.search-toggle {
		grid-column: 4 !important;
		width: 38px !important;
		height: 38px !important;
	}

	.primary-navigation {
		top: 68px !important;
	}

	.admin-bar .primary-navigation {
		top: 100px !important;
	}
}

@media (max-width: 430px) {
	.site-header__inner {
		gap: 7px !important;
	}

	.site-brand__image,
	.custom-logo {
		max-width: 132px !important;
		height: 30px !important;
	}

	.header-membership-cta {
		min-height: 30px;
		padding: 0 10px;
		font-size: 0.68rem;
	}

	.nav-toggle,
	.search-toggle {
		width: 34px !important;
		height: 34px !important;
	}
}

/* Category archives: remove the over-stretched first-card treatment and keep all cards in a clean news grid. */
.archive-lead,
.story-overlay--archive-lead {
	display: none !important;
}

.archive-grid--category,
.archive-main .archive-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 34px 28px !important;
	align-items: stretch !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

.archive-main .story-card {
	display: flex !important;
	min-height: 100% !important;
	flex-direction: column !important;
	background: #fff !important;
	border: 1px solid #dbe5ef !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	box-shadow: 0 12px 30px rgba(14, 32, 55, 0.055) !important;
}

.archive-main .story-card__media {
	aspect-ratio: 16 / 9 !important;
	border-radius: 0 !important;
}

.archive-main .story-card__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.archive-main .story-card__body {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	padding: 17px 18px 18px !important;
}

.archive-main .story-card__title {
	font-size: 1.08rem !important;
	line-height: 1.25 !important;
}

.archive-main .story-card__date {
	margin-top: auto !important;
	padding-top: 16px !important;
}

@media (max-width: 940px) {
	.archive-grid--category,
	.archive-main .archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 620px) {
	.archive-grid--category,
	.archive-main .archive-grid {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}
}

/* Mobile article meta: compact, proportional, no giant card, author remains visible. */




/* Related articles: old-site style with deterministic category colours and consistent dimensions. */
.related-posts__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2.2vw, 26px) !important;
}

.related-posts .story-card {
	min-height: clamp(310px, 30vw, 390px) !important;
	background: #050b14 !important;
}

.related-posts .story-card::before,
.related-posts .eyebrow {
	background: var(--cat-color, #f4c84a) !important;
}

.related-posts .story-card__body {
	padding: 32px 26px 28px 34px !important;
}

.related-posts .story-card__title {
	font-size: clamp(1rem, 1.28vw, 1.22rem) !important;
	line-height: 1.14 !important;
}

.related-posts .story-card__date {
	display: none !important;
}

@media (min-width: 1180px) {
	.article-layout .related-posts__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	.related-posts .story-card {
		min-height: 230px !important;
	}
}

@media (max-width: 540px) {
	.related-posts .story-card {
		display: block !important;
		min-height: 245px !important;
	}

	.related-posts .story-card__media {
		position: absolute !important;
		inset: 0 !important;
		height: 100% !important;
	}

	.related-posts .eyebrow {
		top: 22px !important;
		left: 28px !important;
	}

	.related-posts .story-card__body {
		padding: 28px 22px 24px 30px !important;
	}
}

/* Prefooter membership CTA: keep it bright and readable above the footer. */
.prefooter-membership {
	background:
		radial-gradient(circle at 80% 22%, rgba(244, 200, 74, 0.24), transparent 24%),
		radial-gradient(circle at 16% 76%, rgba(0, 188, 212, 0.18), transparent 26%),
		linear-gradient(135deg, #071423 0%, #0d2238 50%, #111827 100%) !important;
}

.prefooter-membership h2 {
	color: #ffffff !important;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32) !important;
}

.prefooter-membership p:not(.prefooter-membership__kicker) {
	color: #e3edf7 !important;
}

.prefooter-membership__actions {
	background: rgba(255, 255, 255, 0.075) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
}

/* Kozmos 1.4.9: design system cleanup, newsletter integration, responsive article polish. */
:root {
	--kozmos-blue: #1e88e5;
	--kozmos-pink: #e91e63;
	--kozmos-gold: #f2b705;
	--kozmos-purple: #7c3aed;
	--kozmos-teal: #10b981;
}



/* Article body rhythm: tighter spacing between paragraph and following subhead. */
.article-content p + h2,
.article-content ul + h2,
.article-content ol + h2,
.article-content figure + h2,
.article-content p + h3,
.article-content ul + h3,
.article-content ol + h3,
.article-content figure + h3 {
	margin-top: clamp(1.45rem, 2.2vw, 2.05rem) !important;
}
.article-content h2,
.article-content h3 {
	margin-bottom: 0.42rem !important;
}
.article-content h2 + p,
.article-content h3 + p { margin-top: 0 !important; }

/* Source, author, topics and related articles should read as one end-of-article system. */
.article-end { margin-top: 42px !important; }
.source-box { margin-bottom: 24px !important; }
.article-action-grid { margin: 22px 0 24px !important; }
.kozmos-author-card { margin: 28px 0 0 !important; }
.article-topics {
	margin: 18px 0 0 !important;
	padding: 18px 0 0 !important;
	border-top: 1px solid #d7e1ed !important;
}
.article-topics + .related-posts {
	margin-top: 30px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

/* Related posts: old-site inspired image cards, three only, aligned by design. */
.related-posts {
	margin-top: 30px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}
.related-posts .section-heading {
	margin-bottom: 22px !important;
	padding-bottom: 0 !important;
	border: 0 !important;
}
.related-posts__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(20px, 3vw, 34px) !important;
	align-items: stretch !important;
}
.related-posts .story-overlay--related {
	min-height: clamp(300px, 34vw, 420px) !important;
	border-radius: 0 !important;
	box-shadow: 0 24px 55px rgba(8, 21, 37, 0.10) !important;
	border-left: 10px solid var(--cat-color, var(--color-gold)) !important;
	background: #050b14 !important;
}
.related-posts .story-overlay--related::before {
	content: "" !important;
	position: absolute !important;
	z-index: 3 !important;
	left: 0 !important;
	top: 0 !important;
	right: 0 !important;
	height: 4px !important;
	background: var(--cat-color, var(--color-gold)) !important;
}
.related-posts .story-overlay--related .story-overlay__content {
	padding: 24px 24px 28px !important;
}
.related-posts .story-overlay--related .story-overlay__title {
	margin: 12px 0 0 !important;
	color: #fff !important;
	font-size: clamp(1.05rem, 1.55vw, 1.35rem) !important;
	line-height: 1.13 !important;
	letter-spacing: -0.025em !important;
}
.related-posts .story-overlay--related .eyebrow {
	display: inline-flex !important;
	padding: 8px 10px !important;
	background: var(--cat-color, var(--color-gold)) !important;
	color: #fff !important;
	font-size: 0.68rem !important;
	letter-spacing: 0.05em !important;
	border-radius: 0 !important;
}
.related-posts .story-overlay--related .eyebrow span { display: none !important; }
.related-posts .story-overlay--related .story-overlay__shade {
	background: linear-gradient(180deg, rgba(3,10,19,0.06) 18%, rgba(3,10,19,0.42) 54%, rgba(3,10,19,0.96) 100%) !important;
}
.related-posts .story-overlay--related .story-overlay__image {
	object-fit: cover !important;
}
@media (max-width: 900px) {
	.related-posts__grid { grid-template-columns: 1fr !important; }
	.related-posts .story-overlay--related { min-height: 290px !important; }
}

/* Category archives: no oversized first card, no stretched lead. */
.archive-grid--category,
.archive-grid {
	align-items: stretch !important;
}
.archive-grid--category > .story-card,
.archive-grid > .story-card {
	grid-column: auto !important;
	min-height: 100% !important;
}
.archive-grid--category .story-card__media,
.archive-grid .story-card__media {
	aspect-ratio: 16 / 10 !important;
}
.archive-grid--category .story-card__image,
.archive-grid .story-card__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

/* Featured image: show the whole editorial image, avoid cutting heads/faces. */
.article-hero__image {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-height: none !important;
	object-fit: contain !important;
	object-position: center center !important;
}

/* Pre-footer membership CTA: clear contrast, no invisible dark text. */
.prefooter-membership {
	background: linear-gradient(135deg, #071527 0%, #0d2745 55%, #101827 100%) !important;
	color: #e8f2ff !important;
}
.prefooter-membership__copy h2,
.prefooter-membership h2 {
	color: #fff !important;
	text-shadow: 0 2px 20px rgba(0,0,0,0.18) !important;
}
.prefooter-membership__copy p:not(.prefooter-membership__kicker),
.prefooter-membership__actions span {
	color: #cbd9e8 !important;
}
.prefooter-membership__kicker {
	color: #ffd24a !important;
}

/* Homepage newsletter CTA: current front-page link block. */
.home-newsletter-cta {
	margin-top: 54px !important;
}
.home-newsletter-cta__inner {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 24px !important;
	padding: 24px 28px !important;
	border: 1px solid #d9e4f0 !important;
	border-radius: 24px !important;
	background: #f8fbff !important;
}
.home-newsletter-cta h2 {
	margin: 4px 0 5px !important;
	font-size: clamp(1.45rem, 2.4vw, 2.15rem) !important;
}
.home-newsletter-cta p:not(.section-kicker) {
	margin: 0 !important;
	color: #52647c !important;
}
.button--ghost {
	background: #fff !important;
	color: #0d1b2d !important;
	border: 1px solid #cfddeb !important;
}
@media (max-width: 860px) {
	.home-newsletter-cta__inner {
		align-items: flex-start !important;
		flex-direction: column !important;
	}
}

/* Related posts: category label always upper-left, title always bottom-left, one stable colour per primary category. */
.related-posts {
	margin-top: 24px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}
.article-topics + .related-posts {
	margin-top: 24px !important;
}
.related-posts .section-heading {
	margin-bottom: 22px !important;
	padding-bottom: 14px !important;
	border-bottom: 1px solid #d7e1ed !important;
}
.related-posts__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(20px, 2.8vw, 32px) !important;
	align-items: stretch !important;
}
.related-posts .story-overlay--related {
	position: relative !important;
	min-height: clamp(300px, 32vw, 410px) !important;
	border-left: 8px solid var(--cat-color, #1e88e5) !important;
	border-radius: 0 !important;
	background: #050b14 !important;
	box-shadow: 0 22px 48px rgba(8, 21, 37, 0.10) !important;
}
.related-posts .story-overlay--related::before {
	display: none !important;
}
.related-posts .story-overlay--related .story-overlay__content {
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	padding: 0 !important;
	pointer-events: none !important;
}
.related-posts .story-overlay--related .eyebrow {
	position: absolute !important;
	top: 28px !important;
	left: 26px !important;
	z-index: 4 !important;
	display: inline-flex !important;
	align-items: center !important;
	min-height: 38px !important;
	padding: 0 13px !important;
	background: var(--cat-color, #1e88e5) !important;
	color: #fff !important;
	border-radius: 0 !important;
	font-size: 0.72rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.055em !important;
	line-height: 1 !important;
}
.related-posts .story-overlay--related .eyebrow span {
	display: none !important;
}
.related-posts .story-overlay--related .story-overlay__title {
	position: absolute !important;
	left: 26px !important;
	right: 24px !important;
	bottom: 30px !important;
	margin: 0 !important;
	max-width: none !important;
	color: #fff !important;
	font-size: clamp(1.08rem, 1.55vw, 1.34rem) !important;
	line-height: 1.13 !important;
	letter-spacing: -0.025em !important;
	text-wrap: balance !important;
}
.related-posts .story-overlay--related .story-overlay__shade {
	background: linear-gradient(180deg, rgba(3,10,19,0.04) 18%, rgba(3,10,19,0.30) 50%, rgba(3,10,19,0.96) 100%) !important;
}
.related-posts .story-overlay--related .story-overlay__image {
	object-fit: cover !important;
}
@media (max-width: 900px) {
	.related-posts__grid {
		grid-template-columns: 1fr !important;
	}
	.related-posts .story-overlay--related {
		min-height: 290px !important;
	}
}

/* Footer newsletter link should always lead to the theme-served /newsletter/ landing route. */
.site-footer__newsletter-link {
	white-space: nowrap !important;
}

/* Kozmos 1.5.1: newsletter redesign, reliable rail links, tighter layout and final related-card alignment. */

/* Use space more efficiently without making reading lines too long. */
@media (min-width: 1120px) {
	.shell,
	.article-shell {
		width: min(calc(100% - 32px), var(--shell)) !important;
	}

	.article-header.article-shell {
		width: min(calc(100% - 32px), 1240px) !important;
	}

	.article-layout {
		grid-template-columns: 42px minmax(0, 840px) minmax(230px, 288px) !important;
		gap: 24px !important;
	}

	.article-column {
		max-width: 840px !important;
	}
}

@media (max-width: 760px) {
	.shell,
	.article-shell {
		width: min(calc(100% - 24px), var(--shell)) !important;
	}

	.article-header {
		padding-top: 24px !important;
		padding-bottom: 18px !important;
	}
}

/* Article rhythm: subheadings must belong to the following text, not float away. */
.article-content p + h2,
.article-content p + h3,
.article-content p + h4,
.article-content ul + h2,
.article-content ol + h2,
.article-content figure + h2 {
	margin-top: 1.05em !important;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin-bottom: 0.28em !important;
}

/* Related articles: 3 cards, category fixed upper-left, title fixed lower-left, true category colour. */
.related-posts {
	margin-top: 30px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

.article-topics + .related-posts,
.kozmos-author-card + .related-posts {
	margin-top: 30px !important;
}

.related-posts .section-heading {
	margin-bottom: 24px !important;
	padding-bottom: 12px !important;
	border-bottom: 1px solid #d9e3ee !important;
}

.related-posts__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(20px, 2.4vw, 30px) !important;
	align-items: stretch !important;
}

.related-posts .story-overlay.story-overlay--related {
	position: relative !important;
	display: block !important;
	min-height: clamp(310px, 31vw, 400px) !important;
	overflow: hidden !important;
	background: #050b14 !important;
	border: 0 !important;
	border-left: 8px solid var(--cat-color, #1e88e5) !important;
	border-radius: 0 !important;
	box-shadow: 0 22px 50px rgba(8, 21, 37, 0.13) !important;
}

.related-posts .story-overlay.story-overlay--related .story-overlay__content {
	position: absolute !important;
	inset: 0 !important;
	z-index: 4 !important;
	padding: 0 !important;
	margin: 0 !important;
	pointer-events: none !important;
}

.related-posts .story-overlay.story-overlay--related > .story-overlay__content > a.eyebrow {
	position: absolute !important;
	top: 28px !important;
	left: 32px !important;
	z-index: 6 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 38px !important;
	margin: 0 !important;
	padding: 0 13px !important;
	background: var(--cat-color, #1e88e5) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	font-size: 0.70rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.055em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	transform: none !important;
	pointer-events: auto !important;
}

.related-posts .story-overlay.story-overlay--related > .story-overlay__content > a.eyebrow span {
	display: none !important;
}

.related-posts .story-overlay.story-overlay--related .story-overlay__title {
	position: absolute !important;
	left: 32px !important;
	right: 24px !important;
	bottom: 28px !important;
	z-index: 5 !important;
	margin: 0 !important;
	max-width: none !important;
	color: #fff !important;
	font-size: clamp(1.08rem, 1.45vw, 1.28rem) !important;
	font-weight: 850 !important;
	line-height: 1.12 !important;
	letter-spacing: -0.035em !important;
	text-wrap: balance !important;
	transform: none !important;
}

.related-posts .story-overlay.story-overlay--related .story-overlay__media,
.related-posts .story-overlay.story-overlay--related .story-overlay__image {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
}

.related-posts .story-overlay.story-overlay--related .story-overlay__shade {
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	background: linear-gradient(180deg, rgba(3, 10, 19, 0.06) 15%, rgba(3, 10, 19, 0.34) 52%, rgba(3, 10, 19, 0.95) 100%) !important;
}

@media (max-width: 900px) {
	.related-posts__grid {
		grid-template-columns: 1fr !important;
	}

	.related-posts .story-overlay.story-overlay--related {
		min-height: 260px !important;
	}
}

/* Article meta on small screens: compact, readable, no oversized card, author/date/reading/GNews work as one unit. */



/* Sidebar starts with the article text and then sticks with breathing room below the header/rail. */


/* Newsletter landing page: the email form is the central action, close to the headline. */
/* Kozmos Magazine 1.5.8 review layer: publisher footer and newsletter polish. */
.site-footer.site-footer--publisher {
	position: relative !important;
	overflow: hidden !important;
	margin-top: 0 !important;
	padding: clamp(44px, 6vw, 76px) 0 0 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	background:
		radial-gradient(circle at 18% 0%, rgba(35, 151, 255, 0.22), transparent 30%),
		radial-gradient(circle at 82% 16%, rgba(255, 205, 71, 0.16), transparent 28%),
		linear-gradient(180deg, #07101d 0%, #02050b 100%) !important;
	color: #eef6ff !important;
}
.site-footer.site-footer--publisher::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 auto auto 0 !important;
	width: 100% !important;
	height: 3px !important;
	background: linear-gradient(90deg, #ff1476, #ff8b1f, #ffcd2e, #25d6b8, #36d6ff, #7c3dff) !important;
}
.site-footer.site-footer--publisher::after,
.site-footer.site-footer--publisher .site-footer__space {
	display: none !important;
}
.site-footer.site-footer--publisher .site-footer__main {
	position: relative !important;
	z-index: 1 !important;
	display: grid !important;
	grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 0.8fr) minmax(360px, 1.35fr) !important;
	gap: clamp(28px, 4vw, 56px) !important;
	align-items: start !important;
	padding-top: 0 !important;
	padding-bottom: clamp(34px, 5vw, 58px) !important;
}
.site-footer__brand-panel,
.site-footer__newsletter-card,
.site-footer__nav {
	min-width: 0 !important;
}
.site-footer__brand-panel .site-brand__link {
	display: inline-flex !important;
	max-width: 230px !important;
}
.site-footer__brand-panel .site-brand__image,
.site-footer__brand-panel .custom-logo {
	width: min(230px, 70vw) !important;
	height: auto !important;
}
.site-footer__mission {
	margin: 22px 0 0 !important;
	color: #ffffff !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(1.12rem, 1.3vw, 1.35rem) !important;
	font-weight: 900 !important;
	line-height: 1.18 !important;
	letter-spacing: -0.02em !important;
}
.site-footer__trust {
	max-width: 34rem !important;
	margin: 12px 0 0 !important;
	color: #aebed0 !important;
	font-size: 0.96rem !important;
	line-height: 1.65 !important;
}
.site-footer--publisher .footer-social {
	margin-top: 22px !important;
}
.site-footer--publisher .footer-social__menu {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}
.site-footer--publisher .footer-social__link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 42px !important;
	height: 42px !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.055) !important;
	color: #f8fbff !important;
}
.site-footer--publisher .footer-social__link:hover,
.site-footer--publisher .footer-social__link:focus-visible {
	border-color: rgba(54, 214, 255, 0.72) !important;
	background: rgba(54, 214, 255, 0.14) !important;
	color: #ffffff !important;
	transform: translateY(-1px) !important;
}
.site-footer__newsletter-card {
	padding: clamp(22px, 3vw, 30px) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 24px !important;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)) !important;
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22) !important;
}
.site-footer__kicker,
.site-footer__column h3 {
	margin: 0 0 12px !important;
	color: #36d6ff !important;
	font-family: var(--font-sans) !important;
	font-size: 0.73rem !important;
	font-weight: 950 !important;
	letter-spacing: 0.18em !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}
.site-footer__newsletter-card h3 {
	margin: 0 !important;
	color: #ffffff !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(1.35rem, 2.1vw, 2rem) !important;
	font-weight: 950 !important;
	line-height: 1.06 !important;
	letter-spacing: -0.035em !important;
}
.site-footer__newsletter-card p {
	margin: 12px 0 0 !important;
	color: #aebed0 !important;
	font-size: 0.96rem !important;
	line-height: 1.62 !important;
}
.site-footer__button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	min-height: 46px !important;
	margin-top: 22px !important;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #ffcd2e !important;
	color: #07101d !important;
	font-family: var(--font-sans) !important;
	font-size: 0.95rem !important;
	font-weight: 950 !important;
	text-decoration: none !important;
}
.site-footer__button:hover,
.site-footer__button:focus-visible {
	background: #ffe17a !important;
	color: #02050b !important;
	transform: translateY(-1px) !important;
}
.site-footer__button svg {
	width: 16px !important;
	height: 16px !important;
}
.site-footer__nav {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(20px, 3vw, 34px) !important;
}
.site-footer__column ul {
	display: grid !important;
	gap: 9px !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}
.site-footer__column a {
	color: #c9d6e4 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.94rem !important;
	font-weight: 750 !important;
	line-height: 1.35 !important;
	text-decoration: none !important;
}
.site-footer__column a:hover,
.site-footer__column a:focus-visible {
	color: #ffffff !important;
	text-decoration: underline !important;
	text-decoration-color: #36d6ff !important;
	text-underline-offset: 4px !important;
}
.site-footer.site-footer--publisher .site-footer__bottom {
	position: relative !important;
	z-index: 1 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	background: rgba(0, 0, 0, 0.22) !important;
}
.site-footer.site-footer--publisher .site-footer__bottom .shell {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: space-between !important;
	gap: 12px 24px !important;
	padding-top: 18px !important;
	padding-bottom: 18px !important;
}
.site-footer.site-footer--publisher .site-footer__bottom p {
	margin: 0 !important;
	color: #8f9fb1 !important;
	font-size: 0.84rem !important;
	line-height: 1.45 !important;
}
/* Kozmos Magazine 1.5.14: use the footer spectral line in the header too. */
.site-header .category-color-bar {
	display: block !important;
	width: 100% !important;
	height: 3px !important;
	min-height: 3px !important;
	overflow: hidden !important;
	background: linear-gradient(90deg, #ff1476 0%, #ff8b1f 20%, #ffcd2e 38%, #25d6b8 56%, #36d6ff 74%, #7c3dff 100%) !important;
	box-shadow: none !important;
}
.site-header .category-color-bar span {
	display: none !important;
}
.site-header {
	border-bottom: 0 !important;
}

/* Kozmos Magazine 1.5.15: tighter article header to hero spacing. */
.single .article-header.article-shell,
.single .article-header {
	padding-bottom: clamp(12px, 1.7vw, 20px) !important;
}
.single .article-header .article-meta-bar,
.single .article-header .article-meta {
	margin-bottom: 0 !important;
}
.single .article-hero.shell,
.single .article-hero {
	margin-top: clamp(8px, 1.4vw, 16px) !important;
}
@media (max-width: 760px) {
	.single .article-header.article-shell,
	.single .article-header {
		padding-bottom: 10px !important;
	}
	.single .article-hero.shell,
	.single .article-hero {
		margin-top: 8px !important;
	}
}

/* Kozmos Magazine 1.5.11: footer newsletter is a column, not a boxed card. */
.site-footer--publisher .site-footer__newsletter-card {
	display: none !important;
}
.site-footer--publisher .site-footer__newsletter-column {
	min-width: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
.site-footer--publisher .site-footer__newsletter-column h3 {
	max-width: 18rem !important;
	margin: 0 !important;
	color: #ffffff !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(1.45rem, 2vw, 2.05rem) !important;
	font-weight: 950 !important;
	line-height: 1.02 !important;
	letter-spacing: -0.04em !important;
}
.site-footer--publisher .site-footer__newsletter-column p:not(.site-footer__kicker) {
	max-width: 24rem !important;
	margin: 13px 0 0 !important;
	color: #aebed0 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.96rem !important;
	line-height: 1.62 !important;
}
.site-footer--publisher .site-footer__newsletter-column .site-footer__button {
	margin-top: 18px !important;
	min-height: 42px !important;
	padding: 0 16px !important;
	border: 1px solid rgba(255, 205, 46, 0.55) !important;
	background: transparent !important;
	color: #ffcd2e !important;
}
.site-footer--publisher .site-footer__newsletter-column .site-footer__button:hover,
.site-footer--publisher .site-footer__newsletter-column .site-footer__button:focus-visible {
	background: #ffcd2e !important;
	color: #07101d !important;
}
.site-footer--publisher .site-footer__newsletter-column .site-footer__button svg,
.site-footer--publisher .site-footer__newsletter-column .site-footer__button svg * {
	color: currentColor !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}
@media (max-width: 1180px) {
	.site-footer.site-footer--publisher .site-footer__main {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
	}
	.site-footer--publisher .site-footer__newsletter-column {
		grid-column: auto !important;
	}
}
@media (max-width: 760px) {
	.site-footer--publisher .site-footer__newsletter-column h3,
	.site-footer--publisher .site-footer__newsletter-column p:not(.site-footer__kicker) {
		max-width: none !important;
	}
}

/* Kozmos Magazine 1.5.21: compact publisher-style inline newsletter. */
/* Kozmos Magazine 1.5.24: stable compact inline newsletter, no clipped CTA. */
.kozmos-newsletter-inline--v12 {
	box-sizing: border-box !important;
	position: relative !important;
	display: grid !important;
	grid-template-columns: minmax(210px, 0.78fr) minmax(390px, 1fr) !important;
	align-items: center !important;
	column-gap: clamp(20px, 3vw, 34px) !important;
	row-gap: 10px !important;
	width: 100% !important;
	margin: clamp(24px, 3.5vw, 36px) 0 !important;
	padding: clamp(16px, 2.25vw, 22px) clamp(18px, 3vw, 26px) !important;
	border: 1px solid #dbe5ef !important;
	border-radius: 14px !important;
	background: #fbfdff !important;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06) !important;
	color: #0f172a !important;
	overflow: hidden !important;
}
.kozmos-newsletter-inline--v12::before {
	content: "" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 3px !important;
	background: linear-gradient(90deg, #ffcd2e 0%, #36d6ff 62%, #7c3dff 100%) !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-inline__copy,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-inline__signup {
	min-width: 0 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-inline__kicker {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin: 0 0 10px !important;
	color: #0b63ce !important;
	font-family: var(--font-sans) !important;
	font-size: 0.66rem !important;
	font-weight: 950 !important;
	letter-spacing: 0.22em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-inline__kicker::before {
	content: "" !important;
	display: block !important;
	width: 7px !important;
	height: 7px !important;
	border-radius: 999px !important;
	background: #ffcd2e !important;
}
.kozmos-newsletter-inline--v12 h2 {
	max-width: 24rem !important;
	margin: 0 !important;
	color: #0f172a !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(1.02rem, 1.45vw, 1.24rem) !important;
	font-weight: 950 !important;
	letter-spacing: -0.035em !important;
	line-height: 1.12 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-inline__dek {
	grid-column: 1 / -1 !important;
	max-width: 100% !important;
	margin: 0 !important;
	color: #5f7188 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.86rem !important;
	line-height: 1.42 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form > div {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form > :not(form):not(div):not(.kozmos-newsletter-confirmation):not(.kozmos-newsletter-message):not(.newsletter-message):not(.message):not(.notice):not(.success):not(.error) {
	display: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form form {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(142px, max-content) !important;
	gap: 8px !important;
	align-items: center !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form form > p,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form form > div {
	display: contents !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form :is(h1,h2,h3,h4,p,span,small):not(.kozmos-newsletter-confirmation):not(.kozmos-newsletter-message):not(.newsletter-message):not(.message):not(.notice):not(.success):not(.error) {
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"] {
	display: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][name*="mail" i],
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][id*="mail" i],
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][placeholder*="mail" i] {
	display: block !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="email"],
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][name*="mail" i],
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][id*="mail" i],
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][placeholder*="mail" i] {
	box-sizing: border-box !important;
	grid-column: 1 !important;
	width: 100% !important;
	min-width: 0 !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 0 13px !important;
	border: 1px solid #cbd8e6 !important;
	border-radius: 10px !important;
	background: #ffffff !important;
	color: #0f172a !important;
	font-family: var(--font-sans) !important;
	font-size: 0.9rem !important;
	line-height: 1 !important;
	box-shadow: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input::placeholder {
	color: #7a8998 !important;
	opacity: 1 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form button,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="submit"] {
	box-sizing: border-box !important;
	grid-column: 2 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 142px !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: #0f172a !important;
	color: #ffffff !important;
	font-family: var(--font-sans) !important;
	font-size: 0.78rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	cursor: pointer !important;
	box-shadow: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form button:hover,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="submit"]:hover,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form button:focus-visible,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="submit"]:focus-visible {
	background: #1d2b42 !important;
}
.kozmos-newsletter-inline--v12.has-newsletter-response .kozmos-newsletter-inline__signup {
	display: grid !important;
	align-content: center !important;
	gap: 6px !important;
}
.kozmos-newsletter-inline--v12.has-newsletter-response .kozmos-newsletter-form form,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-response form {
	display: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-response > *:not(.kozmos-newsletter-confirmation) {
	display: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation {
	box-sizing: border-box !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 10px 14px !important;
	border: 1px solid #b9dec6 !important;
	border-radius: 10px !important;
	background: #f4fbf6 !important;
	color: #205434 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.84rem !important;
	font-weight: 850 !important;
	line-height: 1.25 !important;
	text-align: center !important;
	box-shadow: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation::before {
	display: none !important;
	content: none !important;
}
.kozmos-newsletter-inline--v12.has-newsletter-error .kozmos-newsletter-confirmation,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-error .kozmos-newsletter-confirmation {
	border-color: #efb5b5 !important;
	background: #fff5f5 !important;
	color: #792323 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation + .kozmos-newsletter-confirmation,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation ~ .kozmos-newsletter-message,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation ~ .newsletter-message,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation ~ .message,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation ~ .notice,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation ~ .success,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-confirmation ~ .error {
	display: none !important;
}
@media (max-width: 760px) {
	.kozmos-newsletter-inline--v12 {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		padding: 17px !important;
	}
	.kozmos-newsletter-inline--v12 h2 {
		max-width: none !important;
	}
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-inline__dek {
		grid-row: 2 !important;
	}
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-inline__signup {
		grid-row: 3 !important;
	}
}
@media (max-width: 520px) {
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-form form {
		grid-template-columns: 1fr !important;
	}
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="email"],
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][name*="mail" i],
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][id*="mail" i],
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="text"][placeholder*="mail" i],
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-form button,
	.kozmos-newsletter-inline--v12 .kozmos-newsletter-form input[type="submit"] {
		grid-column: 1 !important;
		width: 100% !important;
	}
}

/* Kozmos Magazine 1.5.25: metadata and Google News are one real row. */
.article-header .article-meta .article-google-follow {
	margin: 0 !important;
	border-top: 0 !important;
}
@media (max-width: 760px) {
	.article-header .article-meta-bar {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
	}
	.article-header .article-meta-bar .article-meta {
		display: flex !important;
		align-items: center !important;
		flex-wrap: nowrap !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		gap: 0 !important;
		overflow: hidden !important;
	}
	.article-header .article-meta__author,
	.article-header .article-meta__date,
	.article-header .article-meta__reading,
	.article-header .article-meta .article-google-follow {
		display: inline-flex !important;
		align-items: center !important;
		flex: 0 1 auto !important;
		width: auto !important;
		min-width: 0 !important;
		min-height: 26px !important;
		margin: 0 !important;
		padding: 0 6px !important;
		border-top: 0 !important;
		border-left: 1px solid #d8e4f0 !important;
		font-size: clamp(0.64rem, 2.55vw, 0.74rem) !important;
		line-height: 1 !important;
		white-space: nowrap !important;
	}
	.article-header .article-meta__author {
		flex: 1 1 auto !important;
		padding-left: 0 !important;
		border-left: 0 !important;
	}
	.article-header .article-meta__author span {
		max-width: none !important;
		min-width: 0 !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}
	.article-header .article-meta__date,
	.article-header .article-meta__reading,
	.article-header .article-meta .article-google-follow {
		flex: 0 0 auto !important;
	}
	.article-header .article-google-follow__text strong {
		max-width: none !important;
		overflow: visible !important;
		text-overflow: clip !important;
	}
	.article-header .article-google-follow__prefix {
		display: none !important;
	}
}
@media (max-width: 430px) {
	.article-header .article-meta__avatar {
		width: 20px !important;
		height: 20px !important;
		flex-basis: 20px !important;
	}
	.article-header .article-meta__author {
		gap: 5px !important;
	}
	.article-header .article-meta__date,
	.article-header .article-meta__reading,
	.article-header .article-meta .article-google-follow {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
}
@media (max-width: 390px) {
	.article-header .article-meta .article-google-follow__text {
		display: none !important;
	}
}

/* Kozmos Magazine 1.5.26: mobile navigation opens as one full-width panel. */
@media (max-width: 1040px) {
	body.menu-open {
		overflow: hidden !important;
	}
	.site-header {
		z-index: 10000 !important;
		overflow: visible !important;
	}
	.site-header__inner {
		position: relative !important;
		z-index: 10003 !important;
	}
	.primary-navigation {
		position: fixed !important;
		z-index: 10002 !important;
		top: 68px !important;
		right: 0 !important;
		bottom: auto !important;
		left: 0 !important;
		display: none !important;
		width: 100vw !important;
		max-width: none !important;
		min-width: 100vw !important;
		max-height: calc(100vh - 68px) !important;
		margin: 0 !important;
		padding: 14px 18px 22px !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		background: #061221 !important;
		border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
		box-shadow: 0 22px 44px rgba(2, 8, 23, 0.45) !important;
		transform: none !important;
	}
	.admin-bar .primary-navigation {
		top: 100px !important;
		max-height: calc(100vh - 100px) !important;
	}
	.primary-navigation.is-open {
		display: block !important;
	}
	.primary-navigation .primary-menu {
		display: grid !important;
		width: min(100%, 680px) !important;
		max-width: 680px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		gap: 0 !important;
	}
	.primary-navigation .primary-menu > li {
		width: 100% !important;
		margin: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
	}
	.primary-navigation .primary-menu a {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		min-height: 48px !important;
		padding: 13px 0 !important;
		color: #f8fbff !important;
		font-size: 0.94rem !important;
		font-weight: 900 !important;
		letter-spacing: 0.08em !important;
		line-height: 1.15 !important;
		text-transform: uppercase !important;
		white-space: normal !important;
	}
	.primary-navigation .primary-menu > li > a::after {
		display: none !important;
	}
	.primary-navigation .primary-menu .sub-menu {
		position: static !important;
		display: grid !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 0 10px 14px !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: none !important;
	}
	.primary-navigation .primary-menu .sub-menu a {
		min-height: 38px !important;
		padding: 8px 0 !important;
		color: #b9c7d6 !important;
		font-size: 0.84rem !important;
		letter-spacing: 0.02em !important;
		text-transform: none !important;
	}
	body.menu-open .explore-rail {
		z-index: 1 !important;
		pointer-events: none !important;
	}
}
@media (max-width: 430px) {
	.primary-navigation {
		top: 64px !important;
		max-height: calc(100vh - 64px) !important;
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
	.admin-bar .primary-navigation {
		top: 96px !important;
		max-height: calc(100vh - 96px) !important;
	}
}

/* Kozmos Magazine 1.5.27: mobile footer and article meta priority cleanup. */
@media (max-width: 900px) {
	.site-footer.site-footer--publisher {
		padding-top: 36px !important;
		text-align: left !important;
	}
	.site-footer.site-footer--publisher .site-footer__main {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 30px !important;
		padding-right: 18px !important;
		padding-left: 18px !important;
		padding-bottom: 34px !important;
	}
	.site-footer__brand-panel {
		display: grid !important;
		gap: 14px !important;
	}
	.site-footer__brand-panel .site-brand__link,
	.site-footer__brand-panel .custom-logo-link {
		max-width: 168px !important;
	}
	.site-footer__brand-panel .site-brand__image,
	.site-footer__brand-panel .custom-logo {
		width: min(168px, 58vw) !important;
		height: auto !important;
	}
	.site-footer__mission {
		max-width: 23rem !important;
		margin: 0 !important;
		font-size: clamp(1.15rem, 5.6vw, 1.5rem) !important;
		line-height: 1.12 !important;
	}
	.site-footer__trust {
		max-width: 29rem !important;
		margin: 0 !important;
		font-size: 0.96rem !important;
		line-height: 1.58 !important;
	}
	.site-footer--publisher .footer-social {
		margin-top: 2px !important;
	}
	.site-footer__newsletter-column {
		display: grid !important;
		gap: 10px !important;
		padding-top: 26px !important;
		border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
	}
	.site-footer--publisher .site-footer__newsletter-column h3 {
		max-width: 19rem !important;
		font-size: clamp(1.55rem, 8vw, 2rem) !important;
		line-height: 0.98 !important;
	}
	.site-footer--publisher .site-footer__newsletter-column p:not(.site-footer__kicker) {
		max-width: 29rem !important;
		margin-top: 0 !important;
		font-size: 0.96rem !important;
		line-height: 1.55 !important;
	}
	.site-footer--publisher .site-footer__newsletter-column .site-footer__button {
		justify-self: start !important;
		min-height: 42px !important;
		margin-top: 4px !important;
		padding: 0 18px !important;
	}
	.site-footer__nav {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 24px !important;
		padding-top: 4px !important;
	}
	.site-footer__column {
		padding-top: 22px !important;
		border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
	}
	.site-footer__column ul {
		gap: 10px !important;
	}
	.site-footer__column a {
		font-size: 0.98rem !important;
		line-height: 1.35 !important;
	}
	.site-footer.site-footer--publisher .site-footer__bottom .shell {
		display: grid !important;
		gap: 7px !important;
		padding-right: 18px !important;
		padding-left: 18px !important;
	}
}

@media (max-width: 760px) {
	.article-header .article-meta-bar .article-meta {
		display: flex !important;
		align-items: center !important;
		flex-wrap: nowrap !important;
		overflow: visible !important;
	}
	.article-header .article-meta__author {
		order: 1 !important;
		flex: 0 0 auto !important;
		max-width: none !important;
	}
	.article-header .article-meta__author span {
		display: inline !important;
		max-width: none !important;
		overflow: visible !important;
		text-overflow: clip !important;
		white-space: nowrap !important;
	}
	.article-header .article-meta__date {
		order: 2 !important;
		flex: 0 0 auto !important;
	}
	.article-header .article-meta__reading {
		order: 3 !important;
		flex: 0 0 auto !important;
	}
	.article-header .article-meta .article-google-follow {
		order: 4 !important;
		flex: 0 0 auto !important;
	}
	.article-header .article-meta .article-google-follow__text {
		display: inline-flex !important;
	}
}

/* Kozmos Magazine 1.5.36: remove unfinished Google News letter mark. */
.article-google-follow__mark {
	display: none !important;
}

/* Kozmos Magazine 1.5.28: newsletter response persists after plugin DOM cleanup. */
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-response,
.kozmos-newsletter-inline--v12.has-newsletter-response .kozmos-newsletter-form {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-response form,
.kozmos-newsletter-inline--v12.has-newsletter-response .kozmos-newsletter-form form {
	display: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-response > *:not(.kozmos-newsletter-confirmation),
.kozmos-newsletter-inline--v12.has-newsletter-response .kozmos-newsletter-form > *:not(.kozmos-newsletter-confirmation) {
	display: none !important;
}
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-response > .kozmos-newsletter-confirmation,
.kozmos-newsletter-inline--v12.has-newsletter-response .kozmos-newsletter-form > .kozmos-newsletter-confirmation {
	box-sizing: border-box !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 10px 14px !important;
	border: 1px solid #b9dec6 !important;
	border-radius: 10px !important;
	background: #f4fbf6 !important;
	color: #205434 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.84rem !important;
	font-weight: 850 !important;
	line-height: 1.25 !important;
	text-align: center !important;
	white-space: normal !important;
	box-shadow: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.kozmos-newsletter-inline--v12.has-newsletter-error .kozmos-newsletter-form > .kozmos-newsletter-confirmation,
.kozmos-newsletter-inline--v12 .kozmos-newsletter-form.has-newsletter-error > .kozmos-newsletter-confirmation {
	border-color: #efb5b5 !important;
	background: #fff5f5 !important;
	color: #792323 !important;
}

/* Kozmos Magazine 1.5.29: responsive article text must never be squeezed by sidebar modules. */
@media (max-width: 1120px) {
	.single .article-layout {
		box-sizing: border-box !important;
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		width: min(calc(100% - 32px), 780px) !important;
		max-width: 780px !important;
		gap: 0 !important;
		justify-content: center !important;
		align-items: start !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.single .article-column,
	.single .article-content,
	.single .article-end,
	.single .article-sidebar-wrap {
		box-sizing: border-box !important;
		display: block !important;
		grid-column: 1 / -1 !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.single .article-sidebar-wrap {
		position: static !important;
		top: auto !important;
		align-self: auto !important;
		margin-top: 34px !important;
		padding-top: 0 !important;
	}

	.single .editorial-sidebar {
		position: static !important;
		width: 100% !important;
		max-width: 100% !important;
		max-height: none !important;
		overflow: visible !important;
	}

	.single .article-content {
		overflow-wrap: anywhere !important;
		word-break: normal !important;
		hyphens: auto !important;
	}

	.single .share-rail {
		display: none !important;
	}
}

@media (max-width: 760px) {
	.single .article-layout {
		width: min(calc(100% - 24px), 100%) !important;
		max-width: none !important;
	}

	.single .article-content {
		font-size: clamp(1.04rem, 4.5vw, 1.15rem) !important;
		line-height: 1.68 !important;
	}

	.single .article-sidebar-wrap {
		margin-top: 28px !important;
	}
}

/* Kozmos Magazine 1.5.30: denser category archives and tighter article header rhythm. */
.archive-main .archive-header {
	margin-bottom: clamp(22px, 3vw, 34px) !important;
	padding-top: clamp(32px, 4.8vw, 58px) !important;
	padding-bottom: 0 !important;
}

.archive-main .archive-grid,
.archive-main .archive-grid--category {
	gap: 26px 24px !important;
}

.archive-main .story-card__body {
	gap: 9px !important;
	padding: 15px 17px 16px !important;
}

.archive-main .story-card__meta {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	min-width: 0 !important;
	margin: 0 0 2px !important;
}

.archive-main .story-card__meta .eyebrow {
	min-width: 0 !important;
	margin: 0 !important;
}

.archive-main .story-card__date {
	flex: 0 0 auto !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #718198 !important;
	font-size: 0.7rem !important;
	font-weight: 780 !important;
	letter-spacing: 0.01em !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
}

.archive-main .story-card__title {
	margin: 0 !important;
}

.archive-main .story-card__excerpt {
	margin: 0 !important;
}

.single .article-header.article-shell,
.single .article-header {
	padding-top: clamp(30px, 4.4vw, 58px) !important;
	padding-bottom: clamp(4px, 0.8vw, 10px) !important;
}

.single .article-header .article-meta-bar {
	margin-top: clamp(10px, 1.4vw, 15px) !important;
}

.single .article-hero.shell,
.single .article-hero {
	margin-top: clamp(2px, 0.55vw, 7px) !important;
}

@media (max-width: 760px) {
	.archive-main .archive-header {
		padding-top: 26px !important;
		margin-bottom: 18px !important;
	}

	.archive-main .story-card__meta {
		align-items: flex-start !important;
	}

	.single .article-header.article-shell,
	.single .article-header {
		padding-top: 22px !important;
		padding-bottom: 4px !important;
	}

	.single .article-header .article-meta-bar {
		margin-top: 10px !important;
	}

	.single .article-hero.shell,
	.single .article-hero {
		margin-top: 4px !important;
	}
}

/* Kozmos Magazine 1.5.31: compact category intro, no dead space under explore rail. */
.archive-main--category {
	padding-top: 0 !important;
	padding-bottom: clamp(58px, 8vw, 96px) !important;
}

.archive-main--category .archive-header--category {
	display: grid !important;
	grid-template-columns: minmax(180px, max-content) minmax(0, 1fr) !important;
	column-gap: clamp(28px, 5vw, 78px) !important;
	row-gap: 8px !important;
	align-items: end !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 clamp(24px, 3vw, 36px) !important;
	padding-top: clamp(24px, 3vw, 40px) !important;
	padding-bottom: 0 !important;
}

.archive-main--category .archive-header--category .section-kicker {
	grid-column: 1 / -1 !important;
	margin: 0 !important;
	color: #8a6400 !important;
}

.archive-main--category .archive-header--category h1 {
	grid-column: 1 !important;
	margin: 0 !important;
	font-size: clamp(3.1rem, 5.2vw, 5.45rem) !important;
	line-height: 0.95 !important;
	letter-spacing: -0.045em !important;
}

.archive-main--category .archive-description {
	grid-column: 2 !important;
	max-width: none !important;
	margin: 0 0 0.22em !important;
	color: #314056 !important;
	font-size: clamp(0.98rem, 1vw, 1.08rem) !important;
	line-height: 1.45 !important;
}

.archive-main--category .archive-description p {
	margin: 0 !important;
}

@media (min-width: 1180px) {
	.archive-main--category .archive-description {
		white-space: nowrap !important;
	}
}

@media (max-width: 880px) {
	.archive-main--category .archive-header--category {
		display: block !important;
		margin-bottom: 22px !important;
		padding-top: 22px !important;
	}

	.archive-main--category .archive-header--category .section-kicker {
		margin-bottom: 10px !important;
	}

	.archive-main--category .archive-header--category h1 {
		margin-bottom: 12px !important;
		font-size: clamp(2.55rem, 13vw, 4.2rem) !important;
		line-height: 0.98 !important;
	}

	.archive-main--category .archive-description {
		font-size: 1rem !important;
		line-height: 1.55 !important;
	}
}

@media (max-width: 520px) {
	.archive-main--category .archive-header--category {
		padding-top: 18px !important;
		margin-bottom: 18px !important;
	}
}

/* Kozmos Magazine 1.5.32: clearer mobile membership CTA. */
.header-membership-cta__icon {
	display: none;
}

@media (max-width: 1040px) {
	.header-membership-cta {
		gap: 6px !important;
		min-height: 36px !important;
		padding: 0 13px 0 11px !important;
		font-size: 0.72rem !important;
		letter-spacing: 0 !important;
		line-height: 1 !important;
	}

	.header-membership-cta__icon {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 17px !important;
		height: 17px !important;
		flex: 0 0 17px !important;
	}

	.header-membership-cta__icon svg {
		width: 17px !important;
		height: 17px !important;
		stroke-width: 2 !important;
	}
}

/* Kozmos Magazine 1.5.34: stable Discover-friendly article hero frame. */
.single .article-hero.shell,
.single .article-hero {
	width: min(calc(100% - 32px), 1120px) !important;
	max-width: 1120px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	overflow: visible !important;
}

.single .article-hero__media {
	position: relative !important;
	width: 100% !important;
	aspect-ratio: 16 / 9 !important;
	overflow: hidden !important;
	border-radius: 14px !important;
	background: #071423 !important;
	box-shadow: 0 20px 44px rgba(10, 25, 43, 0.10) !important;
}

.single .article-hero__media .article-hero__image,
.single .article-hero__image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: cover !important;
	object-position: center center !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.single .article-hero .featured-caption {
	width: min(100%, 980px) !important;
	margin: 10px auto 0 !important;
}

@media (max-width: 760px) {
	.single .article-hero.shell,
	.single .article-hero {
		width: min(calc(100% - 24px), 100%) !important;
	}

	.single .article-hero__media {
		aspect-ratio: 16 / 10 !important;
		border-radius: 12px !important;
	}
}

/* Kozmos Magazine 1.5.35: text-only article sidebar must use the full sidebar width. */
.single .editorial-sidebar .sidebar-news--text .sidebar-news__item {
	display: block !important;
	grid-template-columns: minmax(0, 1fr) !important;
	padding: 14px 0 !important;
}

.single .editorial-sidebar .sidebar-news--text .sidebar-news__item::before {
	content: none !important;
	display: none !important;
}

.single .editorial-sidebar .sidebar-news--text .sidebar-news__copy {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
}

.single .editorial-sidebar .sidebar-news--text h3 {
	max-width: none !important;
	margin: 5px 0 8px !important;
	color: #101a2a !important;
	font-size: 0.94rem !important;
	line-height: 1.22 !important;
	letter-spacing: -0.02em !important;
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: none !important;
}

.single .editorial-sidebar .sidebar-news--text time {
	display: block !important;
	white-space: nowrap !important;
	color: #64748b !important;
	font-size: 0.72rem !important;
	line-height: 1.2 !important;
}

@media (max-width: 430px) {
	.header-membership-cta {
		gap: 5px !important;
		min-height: 32px !important;
		padding: 0 10px !important;
		font-size: 0.7rem !important;
	}

	.header-membership-cta__prefix {
		display: none !important;
	}

	.header-membership-cta__icon,
	.header-membership-cta__icon svg {
		width: 16px !important;
		height: 16px !important;
		flex-basis: 16px !important;
	}
}

/* Kozmos Magazine 1.5.39: plugin replacement polish. */
.explore-rail__arrow {
	border-color: rgba(255, 255, 255, 0.28) !important;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.13), transparent 58%),
		rgba(255, 255, 255, 0.10) !important;
	color: #ffffff !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 22px rgba(0, 0, 0, 0.20) !important;
}

.explore-rail__arrow svg,
.explore-rail__arrow svg * {
	stroke: currentColor !important;
	fill: none !important;
}

.explore-rail__arrow--prev svg {
	transform: rotate(180deg);
}

.explore-rail__arrow:hover,
.explore-rail__arrow:focus-visible {
	border-color: rgba(255, 203, 64, 0.82) !important;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 203, 64, 0.20), transparent 62%),
		rgba(255, 255, 255, 0.14) !important;
	color: #ffcf33 !important;
	outline: 2px solid rgba(255, 203, 64, 0.28) !important;
	outline-offset: 3px !important;
}

.explore-rail__arrow.is-disabled {
	opacity: 0.52 !important;
}

.kozmos-contact-form {
	display: grid;
	gap: 18px;
	width: min(100%, 760px);
	margin: 28px 0;
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid rgba(142, 165, 191, 0.28);
	border-radius: 18px;
	background: #f7fbff;
	box-shadow: 0 18px 46px rgba(7, 20, 38, 0.08);
}

.kozmos-contact-form p {
	margin: 0;
}

.kozmos-contact-form label {
	display: block;
	margin-bottom: 8px;
	color: #0d1b2f;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kozmos-contact-form input,
.kozmos-contact-form textarea {
	width: 100%;
	border: 1px solid rgba(91, 114, 143, 0.34);
	border-radius: 12px;
	background: #fff;
	color: #102033;
	font: inherit;
	line-height: 1.45;
	padding: 13px 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.kozmos-contact-form input:focus,
.kozmos-contact-form textarea:focus {
	border-color: #1d6dff;
	outline: 3px solid rgba(29, 109, 255, 0.16);
}

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

.kozmos-contact-form__trap {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.kozmos-contact-form__submit {
	justify-self: start;
	min-height: 46px;
	border: 0;
	border-radius: 999px;
	background: #061225;
	color: #fff;
	cursor: pointer;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-weight: 850;
	padding: 0 22px;
}

.kozmos-contact-form__submit:hover,
.kozmos-contact-form__submit:focus-visible {
	background: #1246a4;
	outline: 3px solid rgba(29, 109, 255, 0.18);
	outline-offset: 3px;
}

.kozmos-contact-form__notice {
	border-radius: 12px;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-weight: 750;
	padding: 12px 14px;
}

.kozmos-contact-form__notice--success {
	border: 1px solid rgba(34, 159, 91, 0.28);
	background: #effaf3;
	color: #155d36;
}

.kozmos-contact-form__notice--error {
	border: 1px solid rgba(214, 80, 80, 0.28);
	background: #fff3f2;
	color: #842426;
}

@media (max-width: 680px) {
	.kozmos-contact-form {
		border-radius: 14px;
		margin: 22px 0;
		padding: 20px;
	}

	.kozmos-contact-form__grid {
		grid-template-columns: 1fr;
	}

	.kozmos-contact-form__submit {
		justify-self: stretch;
	}
}

/* Kozmos Magazine 1.5.40: final header rail contrast and article/category spacing pass. */
.explore-rail {
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 26px rgba(0, 0, 0, 0.14) !important;
}

.explore-rail__inner {
	grid-template-columns: max-content 40px minmax(0, 1fr) 40px !important;
	gap: 13px !important;
	min-height: 46px !important;
	overflow: visible !important;
}

.explore-rail__label {
	min-width: max-content !important;
	color: #ffcf33 !important;
	opacity: 1 !important;
}

.explore-rail__arrow {
	z-index: 3 !important;
	width: 38px !important;
	height: 38px !important;
	flex: 0 0 38px !important;
	border: 1px solid rgba(255, 255, 255, 0.46) !important;
	background: #142237 !important;
	color: #ffffff !important;
	opacity: 1 !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 22px rgba(0, 0, 0, 0.28) !important;
}

.explore-rail__arrow svg,
.explore-rail__arrow svg * {
	width: 16px !important;
	height: 16px !important;
	stroke: #ffffff !important;
	fill: none !important;
	stroke-width: 2.35 !important;
}

.explore-rail__arrow--prev svg {
	transform: rotate(180deg) !important;
}

.explore-rail__arrow:hover,
.explore-rail__arrow:focus-visible {
	border-color: #ffcf33 !important;
	background: #ffcf33 !important;
	color: #061225 !important;
	outline: 3px solid rgba(255, 207, 51, 0.22) !important;
	outline-offset: 3px !important;
	transform: translateY(-1px) !important;
}

.explore-rail__arrow:hover svg,
.explore-rail__arrow:hover svg *,
.explore-rail__arrow:focus-visible svg,
.explore-rail__arrow:focus-visible svg * {
	stroke: #061225 !important;
}

.explore-rail__arrow.is-disabled {
	opacity: 0.82 !important;
	cursor: default !important;
}

.single .site-main {
	padding-top: 0 !important;
}

.single .article-header.article-shell,
.single .article-header {
	padding-top: clamp(20px, 2.35vw, 34px) !important;
	padding-bottom: clamp(8px, 1.2vw, 14px) !important;
	margin-top: 0 !important;
}

.single .article-header__category {
	margin-bottom: 10px !important;
}

.single .article-title {
	margin-top: 0 !important;
	margin-bottom: clamp(14px, 1.7vw, 20px) !important;
}

.single .article-header .article-meta-bar,
.single .article-header .article-meta {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.single .article-hero.shell,
.single .article-hero {
	margin-top: clamp(6px, 0.9vw, 12px) !important;
}

.archive-main--category {
	padding-top: 0 !important;
}

.archive-main--category .archive-header--category {
	padding-top: clamp(16px, 2vw, 28px) !important;
	margin-bottom: clamp(18px, 2.5vw, 30px) !important;
}

@media (max-width: 760px) {
	.explore-rail__inner {
		grid-template-columns: 36px minmax(0, 1fr) 36px !important;
		width: min(calc(100% - 18px), var(--shell, 1320px)) !important;
		gap: 10px !important;
		min-height: 44px !important;
	}

	.explore-rail__label {
		display: none !important;
	}

	.explore-rail__arrow {
		width: 36px !important;
		height: 36px !important;
		flex-basis: 36px !important;
	}

	.explore-rail__arrow--prev {
		grid-column: 1 !important;
	}

	.explore-rail__viewport {
		grid-column: 2 !important;
	}

	.explore-rail__arrow--next {
		grid-column: 3 !important;
	}

	.single .article-header.article-shell,
	.single .article-header {
		padding-top: 16px !important;
		padding-bottom: 8px !important;
	}

	.single .article-title {
		margin-bottom: 12px !important;
	}

	.single .article-hero.shell,
	.single .article-hero {
		margin-top: 6px !important;
	}

	.archive-main--category .archive-header--category {
		padding-top: 14px !important;
		margin-bottom: 18px !important;
	}
}

/* Kozmos Magazine 1.5.41: remove dead homepage space between the lead grid and latest section. */
.home-main .home-lead + .home-section {
	margin-top: clamp(36px, 4.2vw, 58px) !important;
}

.home-main .home-lead + .home-section .section-heading {
	margin-bottom: clamp(22px, 2.4vw, 30px) !important;
}

@media (max-width: 782px) {
	.home-main .home-lead + .home-section {
		margin-top: 32px !important;
	}
}

@media (max-width: 560px) {
	.home-main .home-lead + .home-section {
		margin-top: 26px !important;
	}
}

/* Kozmos Magazine 1.5.42: compact homepage CTA rhythm, no giant dead bands. */
.home-main .home-newsletter-cta {
	margin-top: clamp(28px, 3.2vw, 44px) !important;
}

.home-main .home-newsletter-cta__inner {
	padding: clamp(20px, 2.2vw, 26px) clamp(22px, 2.8vw, 32px) !important;
}

.home-main .home-support {
	margin-top: clamp(28px, 3vw, 42px) !important;
}

.home-main .support-cta--home {
	padding: clamp(22px, 2.5vw, 30px) clamp(24px, 3.2vw, 38px) !important;
}

.home-main .home-support + .category-section {
	margin-top: clamp(34px, 4.2vw, 58px) !important;
}

.home-main .category-section + .category-section {
	margin-top: clamp(54px, 6vw, 78px) !important;
}

@media (max-width: 782px) {
	.home-main .home-newsletter-cta,
	.home-main .home-support {
		margin-top: 26px !important;
	}

	.home-main .home-support + .category-section {
		margin-top: 32px !important;
	}

	.home-main .category-section + .category-section {
		margin-top: 48px !important;
	}
}

/* Kozmos Magazine 1.5.43: mobile header CTA and article metadata must never clip. */
@media (max-width: 760px) {
	.header-membership-cta {
		white-space: nowrap !important;
	}

	.article-header .article-meta-bar {
		width: 100% !important;
		overflow: visible !important;
	}

	.article-header .article-meta-bar .article-meta {
		display: grid !important;
		grid-template-columns: minmax(0, auto) auto auto auto !important;
		align-items: center !important;
		column-gap: 0 !important;
		row-gap: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow: visible !important;
	}

	.article-header .article-meta__author,
	.article-header .article-meta__date,
	.article-header .article-meta__reading,
	.article-header .article-meta .article-google-follow {
		display: inline-flex !important;
		align-items: center !important;
		min-width: 0 !important;
		min-height: 28px !important;
		padding: 0 6px !important;
		border-left: 1px solid #d8e4f0 !important;
		font-size: clamp(0.66rem, 2.35vw, 0.74rem) !important;
		line-height: 1 !important;
		white-space: nowrap !important;
	}

	.article-header .article-meta__author {
		border-left: 0 !important;
		padding-left: 0 !important;
	}

	.article-header .article-meta__author span {
		display: inline-block !important;
		max-width: clamp(82px, 24vw, 128px) !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}

	.article-header .article-meta__avatar {
		width: 22px !important;
		height: 22px !important;
		flex: 0 0 22px !important;
	}

	.article-header .article-meta__reading svg {
		width: 13px !important;
		height: 13px !important;
		flex: 0 0 13px !important;
	}

	.article-header .article-meta .article-google-follow {
		max-width: none !important;
		color: #0f4c75 !important;
		text-decoration: underline !important;
		text-underline-offset: 3px !important;
	}

	.article-header .article-google-follow__prefix {
		display: none !important;
	}

	.article-header .article-meta .article-google-follow__text,
	.article-header .article-meta .article-google-follow__text strong {
		display: inline !important;
		max-width: none !important;
		overflow: visible !important;
		text-overflow: clip !important;
		white-space: nowrap !important;
		font-size: inherit !important;
		line-height: 1 !important;
	}
}

@media (max-width: 430px) {
	.header-membership-cta {
		gap: 0 !important;
		min-height: 34px !important;
		padding: 0 10px !important;
		font-size: 0.66rem !important;
		letter-spacing: -0.01em !important;
	}

	.header-membership-cta__icon {
		display: none !important;
	}

	.header-membership-cta__prefix {
		display: inline !important;
	}

	.header-membership-cta__prefix + span::before {
		content: " ";
	}

	.article-header .article-meta__author,
	.article-header .article-meta__date,
	.article-header .article-meta__reading,
	.article-header .article-meta .article-google-follow {
		padding-right: 4px !important;
		padding-left: 4px !important;
		font-size: 0.67rem !important;
	}

	.article-header .article-meta__author {
		padding-left: 0 !important;
	}

	.article-header .article-meta__author span {
		max-width: clamp(70px, 22vw, 96px) !important;
	}
}

@media (max-width: 380px) {
	.article-header .article-meta-bar .article-meta {
		grid-template-columns: minmax(0, 1fr) auto auto !important;
		row-gap: 6px !important;
	}

	.article-header .article-meta .article-google-follow {
		grid-column: 1 / -1 !important;
		border-left: 0 !important;
		padding-left: 0 !important;
		justify-self: start !important;
	}
}

/* Kozmos Magazine 1.5.44: share rail uses clean individual buttons, no cheap capsule wrapper. */
.share-rail {
	gap: 10px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.share-rail__label,
.share-rail__label::after {
	display: none !important;
	content: none !important;
}

.share-rail a {
	width: 38px !important;
	height: 38px !important;
	border: 1px solid #d8e2ee !important;
	border-radius: 50% !important;
	background: #ffffff !important;
	color: var(--brand-color, #0d1b2d) !important;
	box-shadow: 0 8px 18px rgba(8, 21, 37, 0.08) !important;
}

.share-rail a:hover,
.share-rail a:focus-visible {
	background: var(--brand-color, #0d1b2d) !important;
	border-color: var(--brand-color, #0d1b2d) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 24px rgba(8, 21, 37, 0.14) !important;
	transform: translateY(-2px) !important;
}

@media (max-width: 1320px) {
	.share-rail {
		margin-bottom: 18px !important;
	}
}

/* Kozmos Magazine 1.5.50: new conversion-focused newsletter landing page. */
.newsletter-page--conversion {
	min-height: auto !important;
	padding: clamp(24px, 4vw, 46px) 0 clamp(40px, 5vw, 64px) !important;
	background:
		radial-gradient(circle at 12% 8%, rgba(54, 214, 255, 0.14), transparent 30%),
		linear-gradient(180deg, #f8fcff 0%, #ffffff 68%, #f6f9fc 100%) !important;
}

.newsletter-conversion {
	width: min(calc(100% - 44px), 980px) !important;
	max-width: 980px !important;
	margin-inline: auto !important;
}

.newsletter-conversion__panel {
	display: grid !important;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.82fr) !important;
	gap: clamp(26px, 4vw, 44px) !important;
	align-items: center !important;
	padding: clamp(30px, 4.2vw, 46px) !important;
	border: 1px solid #d8e5f1 !important;
	border-radius: 22px !important;
	background: rgba(255, 255, 255, 0.94) !important;
	box-shadow: 0 20px 54px rgba(14, 32, 55, 0.08) !important;
}

.newsletter-conversion__copy,
.newsletter-conversion__signup {
	min-width: 0 !important;
}

.newsletter-conversion__eyebrow {
	display: flex !important;
	align-items: center !important;
	gap: 9px !important;
	margin: 0 0 12px !important;
	color: #0d63c6 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.68rem !important;
	font-weight: 950 !important;
	letter-spacing: 0.22em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.newsletter-conversion__eyebrow::before {
	content: "" !important;
	width: 8px !important;
	height: 8px !important;
	border-radius: 999px !important;
	background: #ffcd2e !important;
	box-shadow: 0 0 0 4px rgba(255, 205, 46, 0.14) !important;
}

.newsletter-conversion h1 {
	max-width: 560px !important;
	margin: 0 0 14px !important;
	color: #101a2a !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(2.35rem, 4.25vw, 4.15rem) !important;
	font-weight: 950 !important;
	letter-spacing: -0.058em !important;
	line-height: 0.98 !important;
	text-wrap: balance !important;
}

.newsletter-conversion__lead {
	max-width: 570px !important;
	margin: 0 !important;
	color: #465a72 !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(1rem, 1.15vw, 1.1rem) !important;
	line-height: 1.55 !important;
}

.newsletter-conversion__points {
	display: grid !important;
	gap: 9px !important;
	margin: clamp(18px, 2.2vw, 24px) 0 0 !important;
	padding: 0 !important;
	list-style: none !important;
	color: #33465d !important;
	font-family: var(--font-sans) !important;
	font-size: 0.94rem !important;
	line-height: 1.35 !important;
}

.newsletter-conversion__points li {
	position: relative !important;
	margin: 0 !important;
	padding-left: 24px !important;
}

.newsletter-conversion__points li::before {
	content: "" !important;
	position: absolute !important;
	top: 0.48em !important;
	left: 0 !important;
	width: 10px !important;
	height: 10px !important;
	border-radius: 999px !important;
	background: #36d6ff !important;
	box-shadow: inset 0 0 0 3px #ffffff, 0 0 0 1px #8fdff4 !important;
}

.newsletter-conversion__signup {
	padding: clamp(20px, 2.4vw, 26px) !important;
	border: 1px solid #d8e5f1 !important;
	border-radius: 18px !important;
	background: #f7fbff !important;
	box-shadow: 0 14px 30px rgba(14, 32, 55, 0.06) !important;
}

.newsletter-conversion__signup-head {
	margin: 0 0 16px !important;
}

.newsletter-conversion__signup-head strong {
	display: block !important;
	margin: 0 0 6px !important;
	color: #101a2a !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(1.18rem, 1.55vw, 1.38rem) !important;
	font-weight: 950 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.035em !important;
}

.newsletter-conversion__signup-head span {
	display: block !important;
	color: #62748a !important;
	font-family: var(--font-sans) !important;
	font-size: 0.94rem !important;
	line-height: 1.42 !important;
}

.newsletter-conversion .kozmos-newsletter-form,
.newsletter-conversion .kozmos-newsletter-form > div {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.newsletter-conversion .kozmos-newsletter-form > :not(form):not(div):not(.kozmos-newsletter-confirmation):not(.kozmos-newsletter-message):not(.newsletter-message):not(.message):not(.notice):not(.success):not(.error) {
	display: none !important;
}

.newsletter-conversion .kozmos-newsletter-form:not(.has-newsletter-response) form {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 10px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.newsletter-conversion .kozmos-newsletter-form form > p,
.newsletter-conversion .kozmos-newsletter-form form > div {
	display: contents !important;
	margin: 0 !important;
	padding: 0 !important;
}

.newsletter-conversion .kozmos-newsletter-form :is(h1,h2,h3,h4,p,span,small,label):not(.kozmos-newsletter-confirmation):not(.kozmos-newsletter-message):not(.newsletter-message):not(.message):not(.notice):not(.success):not(.error) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}

.newsletter-conversion .kozmos-newsletter-form input[type="text"] {
	display: none !important;
}

.newsletter-conversion .kozmos-newsletter-form input[type="text"][name*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][id*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][placeholder*="mail" i] {
	display: block !important;
}

.newsletter-conversion .kozmos-newsletter-form input[type="email"],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][name*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][id*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][placeholder*="mail" i] {
	box-sizing: border-box !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 1px solid #c6d6e8 !important;
	border-radius: 14px !important;
	background: #ffffff !important;
	color: #101a2a !important;
	font-family: var(--font-sans) !important;
	font-size: 1rem !important;
	line-height: 1 !important;
	box-shadow: 0 10px 22px rgba(14, 32, 55, 0.06) !important;
}

.newsletter-conversion .kozmos-newsletter-form input::placeholder {
	color: #7a8998 !important;
	opacity: 1 !important;
}

.newsletter-conversion .kozmos-newsletter-form button,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"] {
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 14px !important;
	background: #101a2a !important;
	color: #ffffff !important;
	font-family: var(--font-sans) !important;
	font-size: 0.95rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	cursor: pointer !important;
	box-shadow: 0 13px 24px rgba(14, 32, 55, 0.13) !important;
}

.newsletter-conversion .kozmos-newsletter-form button:hover,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"]:hover,
.newsletter-conversion .kozmos-newsletter-form button:focus-visible,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"]:focus-visible {
	background: #1c2a42 !important;
}

.newsletter-conversion .kozmos-newsletter-form.has-newsletter-response form,
.newsletter-conversion .kozmos-newsletter-form.has-newsletter-response > *:not(.kozmos-newsletter-confirmation) {
	display: none !important;
}

.newsletter-conversion .kozmos-newsletter-form.has-newsletter-response .kozmos-newsletter-confirmation {
	box-sizing: border-box !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 14px 16px !important;
	border: 1px solid #b9dec6 !important;
	border-radius: 14px !important;
	background: #f4fbf6 !important;
	color: #205434 !important;
	font-family: var(--font-sans) !important;
	font-size: 0.92rem !important;
	font-weight: 850 !important;
	line-height: 1.35 !important;
	text-align: left !important;
}

.newsletter-conversion .kozmos-newsletter-form.has-newsletter-response .kozmos-newsletter-confirmation::before {
	display: none !important;
	content: none !important;
}

@media (min-width: 980px) {
	.newsletter-conversion .kozmos-newsletter-form:not(.has-newsletter-response) form {
		grid-template-columns: minmax(0, 1fr) minmax(138px, max-content) !important;
		align-items: center !important;
	}

	.newsletter-conversion .kozmos-newsletter-form button,
	.newsletter-conversion .kozmos-newsletter-form input[type="submit"] {
		width: auto !important;
		min-width: 138px !important;
	}
}

@media (max-width: 900px) {
	.newsletter-conversion__panel {
		grid-template-columns: 1fr !important;
	}

	.newsletter-conversion h1 {
		max-width: 680px !important;
		font-size: clamp(2.15rem, 8vw, 3.35rem) !important;
	}
}

@media (max-width: 560px) {
	.newsletter-page--conversion {
		padding-top: 18px !important;
	}

	.newsletter-conversion {
		width: min(calc(100% - 28px), 980px) !important;
	}

	.newsletter-conversion__panel {
		gap: 20px !important;
		padding: 22px 18px !important;
		border-radius: 18px !important;
	}

	.newsletter-conversion h1 {
		font-size: clamp(2rem, 11vw, 2.75rem) !important;
	}

	.newsletter-conversion__signup {
		padding: 18px !important;
	}
}

/* Kozmos Magazine 1.5.51: newsletter page email input is the primary element. */
.newsletter-conversion__panel {
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.74fr) !important;
}

.newsletter-conversion__signup {
	padding: clamp(22px, 2.6vw, 30px) !important;
}

.newsletter-conversion .kozmos-newsletter-form:not(.has-newsletter-response) form {
	grid-template-columns: 1fr !important;
	gap: 12px !important;
}

.newsletter-conversion .kozmos-newsletter-form button,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"] {
	width: 100% !important;
	min-width: 0 !important;
}

.newsletter-conversion .kozmos-newsletter-form input[type="email"],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][name*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][id*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][placeholder*="mail" i] {
	width: 100% !important;
	min-width: 100% !important;
	min-height: 56px !important;
	font-size: 1.05rem !important;
}

.newsletter-conversion .kozmos-newsletter-form button,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"] {
	min-height: 52px !important;
}

@media (max-width: 900px) {
	.newsletter-conversion__panel {
		grid-template-columns: 1fr !important;
	}
}

/* Kozmos Magazine 1.5.52: readable homepage overlay category labels. */
.home-lead .story-overlay .eyebrow {
	display: inline-flex !important;
	width: fit-content !important;
	max-width: 100% !important;
	padding: 6px 10px !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 999px !important;
	background: rgba(3, 10, 22, 0.64) !important;
	backdrop-filter: blur(8px) !important;
	-webkit-backdrop-filter: blur(8px) !important;
	color: color-mix(in srgb, var(--cat-color, var(--color-gold)) 72%, #ffffff 28%) !important;
	font-size: 0.72rem !important;
	font-weight: 950 !important;
	letter-spacing: 0.16em !important;
	line-height: 1 !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55) !important;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2) !important;
}

.home-lead .story-overlay .eyebrow > span {
	width: 8px !important;
	height: 8px !important;
	flex: 0 0 8px !important;
	background: var(--cat-color, var(--color-gold)) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cat-color, var(--color-gold)) 24%, transparent) !important;
}

.home-lead .story-overlay .eyebrow:hover {
	color: #ffffff !important;
}

/* Kozmos Magazine 1.5.53: stronger newsletter landing copy and signup hierarchy. */
.newsletter-page--conversion {
	padding: clamp(28px, 4vw, 54px) 0 clamp(42px, 5vw, 68px) !important;
}

.newsletter-conversion {
	width: min(calc(100% - 44px), 1120px) !important;
	max-width: 1120px !important;
}

.newsletter-conversion__panel {
	grid-template-columns: minmax(0, 1fr) minmax(470px, 0.82fr) !important;
	gap: clamp(34px, 5vw, 62px) !important;
	padding: clamp(36px, 4.8vw, 56px) !important;
}

.newsletter-conversion h1 {
	max-width: 620px !important;
	font-size: clamp(2.6rem, 4.2vw, 4.45rem) !important;
	line-height: 0.98 !important;
	letter-spacing: -0.055em !important;
}

.newsletter-conversion__lead {
	max-width: 640px !important;
	font-size: clamp(1.04rem, 1.18vw, 1.16rem) !important;
	line-height: 1.58 !important;
}

.newsletter-conversion__points {
	max-width: 610px !important;
	gap: 10px !important;
	margin-top: clamp(20px, 2.5vw, 28px) !important;
	font-size: 0.98rem !important;
}

.newsletter-conversion__signup {
	padding: clamp(26px, 3vw, 34px) !important;
	border: 1px solid rgba(89, 171, 255, 0.28) !important;
	border-radius: 24px !important;
	background:
		radial-gradient(circle at 92% 12%, rgba(54, 214, 255, 0.18), transparent 34%),
		linear-gradient(135deg, #071426 0%, #10243a 100%) !important;
	box-shadow: 0 22px 46px rgba(14, 32, 55, 0.18) !important;
}

.newsletter-conversion__signup-head {
	margin-bottom: 20px !important;
}

.newsletter-conversion__signup-head strong {
	color: #ffffff !important;
	font-size: clamp(1.35rem, 1.8vw, 1.75rem) !important;
	letter-spacing: -0.04em !important;
}

.newsletter-conversion__signup-head span {
	max-width: 24rem !important;
	color: #c6d5e6 !important;
	font-size: 1rem !important;
}

.newsletter-conversion .kozmos-newsletter-form:not(.has-newsletter-response) form {
	gap: 12px !important;
}

.newsletter-conversion .kozmos-newsletter-form input[type="email"],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][name*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][id*="mail" i],
.newsletter-conversion .kozmos-newsletter-form input[type="text"][placeholder*="mail" i] {
	min-height: 62px !important;
	padding-inline: 18px !important;
	border-color: rgba(255, 255, 255, 0.28) !important;
	border-radius: 16px !important;
	font-size: 1.08rem !important;
	box-shadow: 0 16px 26px rgba(0, 0, 0, 0.16) !important;
}

.newsletter-conversion .kozmos-newsletter-form button,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"] {
	min-height: 58px !important;
	border-radius: 16px !important;
	background: #ffcd2e !important;
	color: #101a2a !important;
	font-size: 1rem !important;
	box-shadow: 0 16px 28px rgba(255, 205, 46, 0.22) !important;
}

.newsletter-conversion .kozmos-newsletter-form button:hover,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"]:hover,
.newsletter-conversion .kozmos-newsletter-form button:focus-visible,
.newsletter-conversion .kozmos-newsletter-form input[type="submit"]:focus-visible {
	background: #ffd95d !important;
	color: #101a2a !important;
}

.newsletter-conversion .kozmos-newsletter-form.has-newsletter-response .kozmos-newsletter-confirmation {
	min-height: 66px !important;
	padding: 18px 20px !important;
	border-color: rgba(130, 233, 168, 0.75) !important;
	border-radius: 16px !important;
	background: #eefcf4 !important;
	color: #17492b !important;
	font-size: 1rem !important;
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12) !important;
}

@media (max-width: 900px) {
	.newsletter-conversion__panel {
		grid-template-columns: 1fr !important;
		gap: 26px !important;
	}

	.newsletter-conversion__signup {
		padding: 24px !important;
	}
}

@media (max-width: 560px) {
	.newsletter-conversion {
		width: min(calc(100% - 28px), 1120px) !important;
	}

	.newsletter-conversion__panel {
		padding: 22px 18px !important;
	}

	.newsletter-conversion h1 {
		font-size: clamp(2rem, 10vw, 2.75rem) !important;
	}
}

/* Kozmos Magazine 1.5.56: article body media must never bleed into the sidebar. */
.single .article-layout {
	grid-template-columns: 50px minmax(0, 740px) minmax(286px, 286px) !important;
	column-gap: 30px !important;
	overflow: visible !important;
}

.single .article-column,
.single .article-content {
	min-width: 0 !important;
	max-width: 100% !important;
	overflow: visible !important;
}

.single .article-content :where(figure, .wp-block-image, .wp-caption, .aligncenter, .alignwide, .alignfull) {
	box-sizing: border-box !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.single .article-content :where(img, picture, video, canvas, iframe, embed, object) {
	box-sizing: border-box !important;
	display: block !important;
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
}

.single .article-content figure > :where(img, picture, video, canvas, iframe, embed, object),
.single .article-content .wp-block-image > :where(img, picture),
.single .article-content .wp-caption > :where(img, picture) {
	width: auto !important;
	object-fit: contain !important;
}

.single .article-content :where(figcaption, .wp-caption-text) {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	overflow-wrap: break-word !important;
}

.single .article-sidebar-wrap {
	box-sizing: border-box !important;
	width: 286px !important;
	max-width: 286px !important;
	min-width: 0 !important;
}

.single .editorial-sidebar {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
}

@media (max-width: 1120px) {
	.single .article-layout {
		grid-template-columns: minmax(0, 1fr) !important;
		width: min(calc(100% - 32px), 780px) !important;
		max-width: 780px !important;
	}

	.single .article-sidebar-wrap {
		width: 100% !important;
		max-width: 100% !important;
	}
}

@media (max-width: 760px) {
	.single .article-content :where(figure, .wp-block-image, .wp-caption, .aligncenter, .alignwide, .alignfull) {
		margin-bottom: 1.1em !important;
	}
}

/* Kozmos Magazine 1.5.58: dedicated Kontakt page. */
.contact-page {
	background:
		radial-gradient(circle at 8% 0%, rgba(50, 214, 255, 0.12), transparent 30rem),
		linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f8fbff 100%);
}

.contact-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: end;
	padding-block: clamp(42px, 6vw, 82px) clamp(24px, 4vw, 42px);
}

.contact-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 14px;
	color: #075ecb;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: 0.78rem;
	font-weight: 950;
	letter-spacing: 0.18em;
	line-height: 1.1;
	text-transform: uppercase;
}

.contact-kicker::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #32d6ff;
	box-shadow: 0 0 0 4px rgba(50, 214, 255, 0.14);
}

.contact-hero h1 {
	max-width: 880px;
	margin: 0;
	color: #101827;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: clamp(3rem, 5vw, 6rem);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.contact-hero__copy > p:not(.contact-kicker) {
	max-width: 780px;
	margin: 20px 0 0;
	color: #52637a;
	font-size: clamp(1.05rem, 1.25vw, 1.2rem);
	line-height: 1.6;
}

.contact-hero__direct {
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(50, 214, 255, 0.24);
	border-radius: 24px;
	background:
		radial-gradient(circle at 80% 8%, rgba(50, 214, 255, 0.18), transparent 17rem),
		linear-gradient(135deg, #071426 0%, #102a43 100%);
	color: #ffffff;
	padding: clamp(24px, 3vw, 34px);
	box-shadow: 0 28px 70px rgba(7, 20, 38, 0.18);
}

.contact-hero__direct span {
	display: block;
	margin-bottom: 10px;
	color: #77e5ff;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.contact-hero__direct a {
	display: inline-flex;
	color: #ffffff;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1.08;
	text-decoration: none;
}

.contact-hero__direct a:hover,
.contact-hero__direct a:focus-visible {
	color: #ffcf33;
}

.contact-hero__direct p {
	max-width: 28rem;
	margin: 14px 0 0;
	color: #d7e4f2;
	line-height: 1.5;
}

.contact-main {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(300px, 420px);
	gap: clamp(28px, 5vw, 70px);
	align-items: start;
	padding-bottom: clamp(56px, 7vw, 96px);
}

.contact-main__form,
.contact-main__aside {
	border: 1px solid rgba(126, 150, 180, 0.26);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 22px 60px rgba(16, 32, 56, 0.08);
	padding: clamp(24px, 3vw, 38px);
}

.contact-section-heading h2,
.contact-main__aside h2 {
	margin: 0;
	color: #101827;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: clamp(1.8rem, 2.4vw, 3rem);
	font-weight: 950;
	letter-spacing: -0.04em;
	line-height: 1;
}

.contact-section-heading > p:not(.contact-kicker) {
	max-width: 620px;
	margin: 12px 0 0;
	color: #52637a;
	line-height: 1.58;
}

.contact-page .kozmos-contact-form {
	width: 100%;
	margin: 24px 0 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.contact-page .kozmos-contact-form input,
.contact-page .kozmos-contact-form textarea {
	min-height: 54px;
	border-color: rgba(126, 150, 180, 0.34);
	border-radius: 14px;
	background: #f8fbff;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.contact-page .kozmos-contact-form textarea {
	min-height: 170px;
	resize: vertical;
}

.contact-page .kozmos-contact-form__submit {
	width: 100%;
	min-height: 54px;
	border-radius: 14px;
	background: #071426;
	box-shadow: 0 16px 34px rgba(7, 20, 38, 0.16);
}

.contact-page .kozmos-contact-form__submit:hover,
.contact-page .kozmos-contact-form__submit:focus-visible {
	background: #075ecb;
}

.contact-routes {
	display: grid;
	gap: 0;
	margin: 22px 0 0;
	padding: 0;
	border-top: 1px solid rgba(126, 150, 180, 0.22);
	list-style: none;
}

.contact-routes li {
	padding: 16px 0;
	border-bottom: 1px solid rgba(126, 150, 180, 0.22);
}

.contact-routes strong {
	display: block;
	color: #101827;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-weight: 900;
	line-height: 1.25;
}

.contact-routes span {
	display: block;
	margin-top: 5px;
	color: #52637a;
	line-height: 1.5;
}

.contact-partners-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	color: #075ecb;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.contact-partners-link svg {
	width: 16px;
	height: 16px;
}

.contact-partners-link:hover,
.contact-partners-link:focus-visible {
	color: #071426;
}

@media (max-width: 900px) {
	.contact-hero,
	.contact-main {
		grid-template-columns: 1fr;
	}

	.contact-hero {
		padding-block-start: 34px;
	}
}

@media (max-width: 620px) {
	.contact-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.45rem);
	}

	.contact-main__form,
	.contact-main__aside,
	.contact-hero__direct {
		border-radius: 18px;
		padding: 20px;
	}

	.contact-page .kozmos-contact-form__grid {
		grid-template-columns: 1fr;
	}
}

/* Kozmos Magazine 1.5.59: homepage reader actions, replacing stacked generic CTA boxes. */
.home-main .home-reader-actions {
	margin-block: clamp(24px, 3vw, 38px) clamp(30px, 4vw, 52px) !important;
}

.home-reader-actions__inner {
	position: relative !important;
	overflow: hidden !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr) !important;
	gap: clamp(24px, 4vw, 56px) !important;
	align-items: center !important;
	padding: clamp(26px, 3.4vw, 44px) !important;
	border: 1px solid rgba(50, 214, 255, 0.24) !important;
	border-radius: 28px !important;
	background:
		radial-gradient(circle at 12% 18%, rgba(50, 214, 255, 0.18), transparent 24rem),
		radial-gradient(circle at 82% 6%, rgba(255, 203, 64, 0.13), transparent 20rem),
		linear-gradient(135deg, #061225 0%, #0b1f35 55%, #081426 100%) !important;
	box-shadow: 0 28px 80px rgba(7, 20, 38, 0.18) !important;
	color: #ffffff !important;
}

.home-reader-actions__inner::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 0 auto !important;
	height: 3px !important;
	background: linear-gradient(90deg, #ff2f8a, #ff8b22, #ffcf33, #26d884, #32d6ff, #7b4dff) !important;
}

.home-reader-actions__inner::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	pointer-events: none !important;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1.5px),
		radial-gradient(circle, rgba(50, 214, 255, 0.28) 1px, transparent 1.5px) !important;
	background-position: 18px 34px, 92px 18px !important;
	background-size: 130px 90px, 170px 120px !important;
	opacity: 0.18 !important;
}

.home-reader-actions__main,
.home-reader-actions__cards {
	position: relative !important;
	z-index: 1 !important;
}

.home-reader-actions__eyebrow {
	display: inline-flex !important;
	align-items: center !important;
	gap: 9px !important;
	margin: 0 0 12px !important;
	color: #ffcf33 !important;
	font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif) !important;
	font-size: 0.76rem !important;
	font-weight: 950 !important;
	letter-spacing: 0.18em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

.home-reader-actions__eyebrow::before {
	content: "" !important;
	width: 9px !important;
	height: 9px !important;
	border-radius: 999px !important;
	background: #32d6ff !important;
	box-shadow: 0 0 0 4px rgba(50, 214, 255, 0.16) !important;
}

.home-reader-actions h2 {
	max-width: 780px !important;
	margin: 0 !important;
	color: #ffffff !important;
	font-size: clamp(2rem, 3.4vw, 4rem) !important;
	font-weight: 950 !important;
	letter-spacing: -0.055em !important;
	line-height: 0.98 !important;
}

.home-reader-actions__main > p:not(.home-reader-actions__eyebrow) {
	max-width: 760px !important;
	margin: 16px 0 0 !important;
	color: #c9d8e8 !important;
	font-size: clamp(1rem, 1.15vw, 1.12rem) !important;
	line-height: 1.55 !important;
}

.home-reader-actions__cards {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 14px !important;
}

.home-reader-action {
	display: flex !important;
	min-height: 210px !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	padding: clamp(20px, 2.3vw, 28px) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 22px !important;
	background: rgba(255, 255, 255, 0.07) !important;
	color: #ffffff !important;
	text-decoration: none !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease !important;
}

.home-reader-action:hover,
.home-reader-action:focus-visible {
	transform: translateY(-2px) !important;
	border-color: rgba(50, 214, 255, 0.5) !important;
	background: rgba(255, 255, 255, 0.105) !important;
	outline: 0 !important;
}

.home-reader-action span {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin-bottom: 18px !important;
	color: #77e5ff !important;
	font-size: 0.74rem !important;
	font-weight: 950 !important;
	letter-spacing: 0.16em !important;
	line-height: 1.1 !important;
	text-transform: uppercase !important;
}

.home-reader-action--support span {
	color: #ffcf33 !important;
}

.home-reader-action strong {
	display: block !important;
	max-width: 14rem !important;
	color: #ffffff !important;
	font-size: clamp(1.35rem, 1.7vw, 1.8rem) !important;
	font-weight: 950 !important;
	letter-spacing: -0.045em !important;
	line-height: 1 !important;
}

.home-reader-action em {
	display: block !important;
	margin-top: 12px !important;
	color: #c9d8e8 !important;
	font-style: normal !important;
	line-height: 1.46 !important;
}

.home-reader-action b {
	display: inline-flex !important;
	align-items: center !important;
	gap: 9px !important;
	margin-top: auto !important;
	color: #ffffff !important;
	font-weight: 900 !important;
}

.home-reader-action b svg {
	width: 15px !important;
	height: 15px !important;
}

@media (max-width: 980px) {
	.home-reader-actions__inner {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 620px) {
	.home-main .home-reader-actions {
		margin-block: 22px 30px !important;
	}

	.home-reader-actions__inner {
		padding: 22px !important;
		border-radius: 22px !important;
	}

	.home-reader-actions h2 {
		font-size: clamp(2rem, 10vw, 3rem) !important;
	}

	.home-reader-actions__cards {
		grid-template-columns: 1fr !important;
	}

	.home-reader-action {
		min-height: 0 !important;
	}
}

/* Kozmos Magazine 1.5.60: smoother Kozmos-style author card accent. */
.kozmos-author-card {
	position: relative !important;
	overflow: hidden !important;
	border-color: rgba(126, 150, 180, 0.28) !important;
	background:
		radial-gradient(circle at 8% 8%, rgba(50, 214, 255, 0.12), transparent 15rem),
		radial-gradient(circle at 92% 0%, rgba(255, 203, 64, 0.10), transparent 18rem),
		linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #f3f8ff 100%) !important;
	box-shadow: 0 22px 58px rgba(16, 32, 56, 0.08) !important;
}

.kozmos-author-card::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 0 auto !important;
	height: 3px !important;
	background: linear-gradient(90deg, #ff2f8a, #ff8b22, #ffcf33, #26d884, #32d6ff, #7b4dff) !important;
}

.kozmos-author-card::after {
	content: "" !important;
	position: absolute !important;
	right: clamp(18px, 4vw, 44px) !important;
	top: clamp(18px, 3vw, 34px) !important;
	width: clamp(70px, 9vw, 128px) !important;
	height: clamp(70px, 9vw, 128px) !important;
	border-radius: 999px !important;
	background: radial-gradient(circle, rgba(50, 214, 255, 0.13), transparent 64%) !important;
	pointer-events: none !important;
}

.kozmos-author-card__portrait,
.kozmos-author-card__content {
	position: relative !important;
	z-index: 1 !important;
}

.kozmos-author-card__portrait {
	isolation: isolate !important;
}

.kozmos-author-card__portrait::before {
	content: "" !important;
	position: absolute !important;
	inset: -8px !important;
	z-index: -1 !important;
	border-radius: 999px !important;
	background: conic-gradient(from 160deg, #ff2f8a, #ffcf33, #32d6ff, #7b4dff, #ff2f8a) !important;
	opacity: 0.28 !important;
	filter: blur(10px) !important;
}

.kozmos-author-card__avatar {
	border: 2px solid rgba(255, 255, 255, 0.92) !important;
	box-shadow: 0 12px 28px rgba(7, 20, 38, 0.16) !important;
}

.kozmos-author-card__kicker {
	color: #075ecb !important;
}

.kozmos-author-card__kicker::before {
	background: #ffcf33 !important;
	box-shadow: 0 0 0 4px rgba(255, 207, 51, 0.16) !important;
}

.kozmos-author-card .text-link {
	color: #071426 !important;
}

.kozmos-author-card .text-link:hover,
.kozmos-author-card .text-link:focus-visible {
	color: #075ecb !important;
}

/* Kozmos Magazine 1.5.61: keep desktop share icons clear of the sticky category rail. */
@media (min-width: 1321px) {
	.single .share-rail {
		top: clamp(156px, 12vh, 188px) !important;
		padding-top: 4px !important;
	}
}

/* Kozmos Magazine 1.5.62: stronger animated membership CTA. */
.prefooter-membership__actions {
	position: relative !important;
	overflow: hidden !important;
	min-width: clamp(280px, 25vw, 370px) !important;
	padding: clamp(18px, 2vw, 26px) !important;
	border: 1px solid rgba(255, 203, 64, 0.32) !important;
	border-radius: 24px !important;
	background:
		radial-gradient(circle at 78% 0%, rgba(255, 203, 64, 0.22), transparent 9rem),
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)) !important;
	box-shadow:
		0 22px 52px rgba(0, 0, 0, 0.22),
		0 0 44px rgba(255, 203, 64, 0.12) !important;
}

.prefooter-membership__actions::before {
	content: "" !important;
	position: absolute !important;
	inset: -40% auto -40% -40% !important;
	width: 36% !important;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent) !important;
	transform: skewX(-18deg) translateX(-120%) !important;
	pointer-events: none !important;
}

.prefooter-membership__actions .button {
	position: relative !important;
	z-index: 1 !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 58px !important;
	border: 0 !important;
	border-radius: 16px !important;
	background:
		linear-gradient(135deg, #ffd84d 0%, #ffc42f 52%, #ffb11a 100%) !important;
	color: #071426 !important;
	font-size: clamp(1rem, 1.05vw, 1.12rem) !important;
	font-weight: 950 !important;
	box-shadow:
		0 14px 28px rgba(255, 184, 26, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.44) !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease !important;
}

.prefooter-membership__actions .button svg {
	width: 18px !important;
	height: 18px !important;
	margin-left: 8px !important;
	transition: transform 0.18s ease !important;
}

.prefooter-membership__actions .button:hover,
.prefooter-membership__actions .button:focus-visible {
	filter: brightness(1.04) !important;
	transform: translateY(-2px) !important;
	box-shadow:
		0 18px 34px rgba(255, 184, 26, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.prefooter-membership__actions .button:hover svg,
.prefooter-membership__actions .button:focus-visible svg {
	transform: translateX(4px) !important;
}

.prefooter-membership__actions span {
	position: relative !important;
	z-index: 1 !important;
	display: block !important;
	margin-top: 13px !important;
	color: #dbe8f7 !important;
	font-size: 0.92rem !important;
	font-weight: 760 !important;
	line-height: 1.35 !important;
	text-align: center !important;
}

@media (prefers-reduced-motion: no-preference) {
	.prefooter-membership__actions {
		animation: kozmosMembershipGlow 5.5s ease-in-out infinite !important;
	}

	.prefooter-membership__actions::before {
		animation: kozmosMembershipShimmer 6.5s ease-in-out infinite !important;
	}
}

@keyframes kozmosMembershipGlow {
	0%,
	100% {
		box-shadow:
			0 22px 52px rgba(0, 0, 0, 0.22),
			0 0 34px rgba(255, 203, 64, 0.10);
	}
	50% {
		box-shadow:
			0 24px 56px rgba(0, 0, 0, 0.24),
			0 0 58px rgba(255, 203, 64, 0.20);
	}
}

@keyframes kozmosMembershipShimmer {
	0%,
	42% {
		transform: skewX(-18deg) translateX(-120%);
	}
	62%,
	100% {
		transform: skewX(-18deg) translateX(520%);
	}
}

@media (max-width: 760px) {
	.prefooter-membership__actions {
		min-width: 0 !important;
		width: 100% !important;
	}
}

/* Kozmos Magazine 1.5.63: subtle prism animation for the logo. */
.site-brand__link,
.custom-logo-link {
	position: relative !important;
	isolation: isolate !important;
	border-radius: 999px !important;
	outline-offset: 8px !important;
}

.site-brand__link::before,
.custom-logo-link::before {
	content: "" !important;
	position: absolute !important;
	inset: -14px -18px !important;
	z-index: -2 !important;
	border-radius: 999px !important;
	background: conic-gradient(from 0deg, #ff2f8a, #ff8b22, #ffcf33, #26d884, #32d6ff, #7b4dff, #ff2f8a) !important;
	filter: blur(18px) saturate(1.18) !important;
	opacity: 0 !important;
	transform: scale(0.92) rotate(0deg) !important;
	transition: opacity 220ms ease, transform 220ms ease !important;
	pointer-events: none !important;
}

.site-brand__link::after,
.custom-logo-link::after {
	content: "" !important;
	position: absolute !important;
	inset: -9px -12px !important;
	z-index: -1 !important;
	border-radius: 999px !important;
	background:
		linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.10) 35%, rgba(50, 214, 255, 0.18) 50%, rgba(255, 207, 51, 0.14) 62%, transparent 100%) !important;
	opacity: 0 !important;
	transform: translateX(-18%) skewX(-14deg) !important;
	transition: opacity 180ms ease, transform 340ms ease !important;
	pointer-events: none !important;
}

.site-brand__link:hover::before,
.site-brand__link:focus-visible::before,
.custom-logo-link:hover::before,
.custom-logo-link:focus-visible::before {
	opacity: 0.22 !important;
	transform: scale(1) rotate(16deg) !important;
}

.site-brand__link:hover::after,
.site-brand__link:focus-visible::after,
.custom-logo-link:hover::after,
.custom-logo-link:focus-visible::after {
	opacity: 1 !important;
	transform: translateX(18%) skewX(-14deg) !important;
}

.site-brand__image,
.custom-logo {
	position: relative !important;
	z-index: 1 !important;
}

@media (prefers-reduced-motion: no-preference) {
	.site-brand__link::before,
	.custom-logo-link::before {
		animation: kozmosLogoPrismIdle 8s ease-in-out infinite !important;
	}

	.site-brand__link:hover::before,
	.site-brand__link:focus-visible::before,
	.custom-logo-link:hover::before,
	.custom-logo-link:focus-visible::before {
		animation: kozmosLogoPrismSpin 2.8s linear infinite !important;
	}
}

@keyframes kozmosLogoPrismIdle {
	0%,
	72%,
	100% {
		opacity: 0;
		transform: scale(0.92) rotate(0deg);
	}
	82% {
		opacity: 0.10;
		transform: scale(0.98) rotate(10deg);
	}
}

@keyframes kozmosLogoPrismSpin {
	to {
		transform: scale(1) rotate(360deg);
	}
}

@media (max-width: 760px) {
	.site-brand__link::before,
	.custom-logo-link::before {
		inset: -10px -12px !important;
		filter: blur(14px) saturate(1.12) !important;
	}

	.site-brand__link::after,
	.custom-logo-link::after {
		display: none !important;
	}
}

/* Kozmos Magazine 1.5.64: visible animated logo prism focused on the planet mark. */
.site-brand {
	overflow: visible !important;
}

.site-brand__link,
.custom-logo-link {
	overflow: visible !important;
}

.site-brand__link::before,
.custom-logo-link::before {
	inset: auto !important;
	left: 25% !important;
	top: 50% !important;
	z-index: 0 !important;
	width: clamp(34px, 3.1vw, 48px) !important;
	height: clamp(34px, 3.1vw, 48px) !important;
	border-radius: 999px !important;
	background:
		conic-gradient(from 0deg, #ff2f8a, #ff8b22, #ffcf33, #26d884, #32d6ff, #7b4dff, #ff2f8a) !important;
	filter: blur(9px) saturate(1.25) !important;
	opacity: 0.34 !important;
	transform: translate(-50%, -50%) scale(1) rotate(0deg) !important;
	mix-blend-mode: screen !important;
}

.site-brand__link::after,
.custom-logo-link::after {
	inset: -8px -14px !important;
	z-index: 1 !important;
	border-radius: 999px !important;
	background:
		linear-gradient(105deg, transparent 12%, rgba(255, 255, 255, 0.0) 28%, rgba(50, 214, 255, 0.22) 46%, rgba(255, 207, 51, 0.18) 55%, transparent 72%) !important;
	opacity: 0.72 !important;
	transform: translateX(-120%) skewX(-14deg) !important;
	mix-blend-mode: screen !important;
}

.site-brand__link:hover::before,
.site-brand__link:focus-visible::before,
.custom-logo-link:hover::before,
.custom-logo-link:focus-visible::before {
	opacity: 0.58 !important;
	transform: translate(-50%, -50%) scale(1.16) rotate(0deg) !important;
}

.site-brand__link:hover::after,
.site-brand__link:focus-visible::after,
.custom-logo-link:hover::after,
.custom-logo-link:focus-visible::after {
	opacity: 0.9 !important;
}

.site-brand__image,
.custom-logo {
	position: relative !important;
	z-index: 2 !important;
	filter: drop-shadow(0 0 0 rgba(50, 214, 255, 0)) !important;
}

@media (prefers-reduced-motion: no-preference) {
	.site-brand__link::before,
	.custom-logo-link::before {
		animation: kozmosLogoPlanetPrism 5.8s linear infinite !important;
	}

	.site-brand__link::after,
	.custom-logo-link::after {
		animation: kozmosLogoLightPass 4.8s ease-in-out infinite !important;
	}

	.site-brand__link:hover .site-brand__image,
	.site-brand__link:focus-visible .site-brand__image,
	.custom-logo-link:hover .custom-logo,
	.custom-logo-link:focus-visible .custom-logo {
		animation: kozmosLogoTinyLift 1.4s ease-in-out infinite !important;
	}
}

@keyframes kozmosLogoPlanetPrism {
	to {
		transform: translate(-50%, -50%) scale(1) rotate(360deg);
	}
}

@keyframes kozmosLogoLightPass {
	0%,
	38% {
		transform: translateX(-120%) skewX(-14deg);
	}
	60%,
	100% {
		transform: translateX(120%) skewX(-14deg);
	}
}

@keyframes kozmosLogoTinyLift {
	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(50, 214, 255, 0));
	}
	50% {
		filter: drop-shadow(0 0 10px rgba(50, 214, 255, 0.22));
	}
}

@media (max-width: 760px) {
	.site-brand__link::before,
	.custom-logo-link::before {
		left: 25% !important;
		width: 30px !important;
		height: 30px !important;
		filter: blur(7px) saturate(1.18) !important;
		opacity: 0.32 !important;
	}

	.site-brand__link::after,
	.custom-logo-link::after {
		display: block !important;
		inset: -6px -10px !important;
		opacity: 0.48 !important;
	}
}

/* Kozmos Magazine 1.5.65: real header logo animation layers. */
.site-brand__prism,
.site-brand__sweep {
	display: none;
}

.site-header .site-brand,
.site-header .site-brand__link {
	overflow: visible !important;
}

.site-header .site-brand__link {
	position: relative !important;
	isolation: isolate !important;
}

.site-header .site-brand__link::before,
.site-header .site-brand__link::after,
.site-header .custom-logo-link::before,
.site-header .custom-logo-link::after {
	content: none !important;
	display: none !important;
}

.site-header .site-brand__prism,
.site-header .site-brand__sweep {
	display: block;
	position: absolute !important;
	pointer-events: none !important;
	z-index: 3 !important;
}

.site-header .site-brand__prism {
	left: 25% !important;
	top: 50% !important;
	width: clamp(28px, 3vw, 44px) !important;
	height: clamp(28px, 3vw, 44px) !important;
	transform: translate(-50%, -50%) rotate(0deg) scale(1);
	border-radius: 999px !important;
	background:
		radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95) 0 10%, transparent 11%),
		conic-gradient(from 0deg, #ff2f8a, #ff8b22, #ffcf33, #26d884, #32d6ff, #7b4dff, #ff2f8a) !important;
	box-shadow:
		0 0 14px rgba(50, 214, 255, 0.34),
		0 0 24px rgba(255, 207, 51, 0.18) !important;
	filter: blur(0.7px) saturate(1.22) !important;
	mix-blend-mode: screen !important;
	opacity: 0.62 !important;
}

.site-header .site-brand__prism::before {
	content: "" !important;
	position: absolute !important;
	inset: -8px !important;
	border-radius: inherit !important;
	background: inherit !important;
	filter: blur(10px) !important;
	opacity: 0.36 !important;
}

.site-header .site-brand__sweep {
	inset: -8px -18px !important;
	border-radius: 999px !important;
	background:
		linear-gradient(105deg, transparent 14%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.42) 46%, rgba(50, 214, 255, 0.22) 55%, transparent 74%) !important;
	mix-blend-mode: screen !important;
	opacity: 0.68 !important;
	transform: translateX(-120%) skewX(-14deg);
}

.site-header .site-brand__image,
.site-header .custom-logo {
	position: relative !important;
	z-index: 2 !important;
}

@media (prefers-reduced-motion: no-preference) {
	.site-header .site-brand__prism {
		animation: kozmosRealLogoPrism 3.4s linear infinite !important;
	}

	.site-header .site-brand__sweep {
		animation: kozmosRealLogoSweep 4.1s ease-in-out infinite !important;
	}

	.site-header .site-brand__link:hover .site-brand__prism,
	.site-header .site-brand__link:focus-visible .site-brand__prism {
		animation-duration: 1.5s !important;
		opacity: 0.86 !important;
	}
}

@keyframes kozmosRealLogoPrism {
	0% {
		transform: translate(-50%, -50%) rotate(0deg) scale(1);
	}
	50% {
		transform: translate(-50%, -50%) rotate(180deg) scale(1.08);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg) scale(1);
	}
}

@keyframes kozmosRealLogoSweep {
	0%,
	34% {
		transform: translateX(-120%) skewX(-14deg);
	}
	58%,
	100% {
		transform: translateX(120%) skewX(-14deg);
	}
}

@media (max-width: 760px) {
	.site-header .site-brand__prism {
		left: 24% !important;
		width: 27px !important;
		height: 27px !important;
		opacity: 0.66 !important;
	}

	.site-header .site-brand__sweep {
		inset: -6px -10px !important;
		opacity: 0.58 !important;
	}
}

/* Kozmos Magazine 1.5.66: proper wordmark animation, clipped to the logo shape. */
.site-brand__prism,
.site-brand__sweep {
	display: none !important;
}

.site-brand__shine {
	display: none;
}

.site-header .site-brand,
.site-header .site-brand__link {
	overflow: visible !important;
}

.site-header .site-brand__link {
	position: relative !important;
	isolation: isolate !important;
}

.site-header .site-brand__link::before,
.site-header .site-brand__link::after,
.site-header .custom-logo-link::before,
.site-header .custom-logo-link::after {
	content: none !important;
	display: none !important;
}

.site-header .site-brand__shine {
	display: block;
	position: absolute;
	inset: -4px -8px;
	z-index: 3;
	pointer-events: none;
	background:
		linear-gradient(
			105deg,
			transparent 0%,
			transparent 35%,
			rgba(255, 255, 255, 0.82) 45%,
			rgba(50, 214, 255, 0.75) 50%,
			rgba(255, 207, 51, 0.72) 55%,
			transparent 68%,
			transparent 100%
		);
	-webkit-mask: url("../images/logo-light.svg") center / contain no-repeat;
	mask: url("../images/logo-light.svg") center / contain no-repeat;
	mix-blend-mode: screen;
	opacity: 0.46;
	transform: translateX(-130%);
}

.site-header .site-brand__image,
.site-header .custom-logo {
	position: relative !important;
	z-index: 2 !important;
	will-change: filter, transform;
}

@media (prefers-reduced-motion: no-preference) {
	.site-header .site-brand__shine {
		animation: kozmosWordmarkShine 6.5s ease-in-out infinite;
	}

	.site-header .site-brand__link:hover .site-brand__shine,
	.site-header .site-brand__link:focus-visible .site-brand__shine {
		animation: kozmosWordmarkShine 1.4s ease-out 1;
		opacity: 0.74;
	}

	.site-header .site-brand__link:hover .site-brand__image,
	.site-header .site-brand__link:focus-visible .site-brand__image,
	.site-header .site-brand__link:hover .custom-logo,
	.site-header .site-brand__link:focus-visible .custom-logo {
		filter: drop-shadow(0 0 10px rgba(50, 214, 255, 0.20));
		transform: translateY(-1px);
	}
}

@keyframes kozmosWordmarkShine {
	0%,
	42% {
		transform: translateX(-130%);
	}
	66%,
	100% {
		transform: translateX(130%);
	}
}

@media (max-width: 760px) {
	.site-header .site-brand__shine {
		inset: -3px -6px;
		opacity: 0.42;
	}
}

/* Kozmos Magazine 1.5.67: safe logo animation on the real logo only. */
.site-brand__prism,
.site-brand__sweep,
.site-brand__shine {
	display: none !important;
	visibility: hidden !important;
}

.site-header .site-brand__link::before,
.site-header .site-brand__link::after,
.site-header .custom-logo-link::before,
.site-header .custom-logo-link::after {
	content: none !important;
	display: none !important;
}

.site-header .site-brand__image,
.site-header .custom-logo {
	position: relative !important;
	z-index: 1 !important;
	transform-origin: center center !important;
	transition: filter 180ms ease, transform 180ms ease !important;
}

@media (prefers-reduced-motion: no-preference) {
	.site-header .site-brand__image,
	.site-header .custom-logo {
		animation: kozmosLogoImageGlow 7.2s ease-in-out infinite !important;
	}

	.site-header .site-brand__link:hover .site-brand__image,
	.site-header .site-brand__link:focus-visible .site-brand__image,
	.site-header .site-brand__link:hover .custom-logo,
	.site-header .site-brand__link:focus-visible .custom-logo {
		animation: kozmosLogoImageHover 900ms ease-in-out 1 !important;
		filter: drop-shadow(0 0 10px rgba(50, 214, 255, 0.30)) drop-shadow(0 0 16px rgba(255, 207, 51, 0.16)) !important;
		transform: translateY(-1px) scale(1.012) !important;
	}
}

@keyframes kozmosLogoImageGlow {
	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(50, 214, 255, 0));
		transform: translateY(0) scale(1);
	}
	22% {
		filter: drop-shadow(0 0 7px rgba(255, 47, 138, 0.16));
	}
	44% {
		filter: drop-shadow(0 0 8px rgba(255, 207, 51, 0.18));
	}
	66% {
		filter: drop-shadow(0 0 9px rgba(50, 214, 255, 0.22));
		transform: translateY(-0.5px) scale(1.006);
	}
	82% {
		filter: drop-shadow(0 0 7px rgba(123, 77, 255, 0.16));
	}
}

@keyframes kozmosLogoImageHover {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-1px) scale(1.016);
	}
}

/* Kozmos Magazine 1.5.68: inline SVG logo animation. */
.site-brand__prism,
.site-brand__sweep,
.site-brand__shine {
	display: none !important;
	visibility: hidden !important;
}

.site-header .site-brand__link::before,
.site-header .site-brand__link::after,
.site-footer .site-brand__link::before,
.site-footer .site-brand__link::after,
.site-header .custom-logo-link::before,
.site-header .custom-logo-link::after,
.site-footer .custom-logo-link::before,
.site-footer .custom-logo-link::after {
	content: none !important;
	display: none !important;
}

.kozmos-logo {
	--kozmos-logo-width: 210px;
	--kozmos-logo-glow: 0.20;
	display: inline-flex !important;
	align-items: center !important;
	width: var(--kozmos-logo-width) !important;
	max-width: 100% !important;
	line-height: 0 !important;
	overflow: visible !important;
	isolation: isolate !important;
}

.kozmos-logo--footer {
	--kozmos-logo-width: 178px;
	--kozmos-logo-glow: 0.11;
}

.kozmos-logo__svg {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	overflow: visible !important;
}

.kozmos-logo__letters,
.kozmos-logo__crescent,
.kozmos-logo__spectrum {
	transform-box: fill-box;
	transform-origin: center;
}

.kozmos-logo__letters {
	opacity: 1;
	transform: translateY(0);
}

.kozmos-logo__crescent {
	transform: translateX(0);
	filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.kozmos-logo__spectrum {
	transform: translate(0, 0);
	filter: saturate(1);
	will-change: transform, filter, opacity;
}

@media (prefers-reduced-motion: no-preference) {
	.kozmos-logo--header .kozmos-logo__letters {
		animation: kozmosLogoLettersIntro 1.25s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	}

	.kozmos-logo--header .kozmos-logo__crescent {
		animation: kozmosLogoCrescentIntro 1.45s ease-out both;
	}

	.kozmos-logo--header .kozmos-logo__spectrum {
		animation: kozmosLogoSpectrumIntro 1.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	}

	.kozmos-logo--header:hover .kozmos-logo__spectrum,
	.kozmos-logo--header:focus-visible .kozmos-logo__spectrum {
		animation: kozmosLogoSpectrumHover 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
	}

	.kozmos-logo--header:hover .kozmos-logo__crescent,
	.kozmos-logo--header:focus-visible .kozmos-logo__crescent {
		filter: drop-shadow(0 0 6px rgba(50, 214, 255, var(--kozmos-logo-glow)));
	}

	.kozmos-logo--footer .kozmos-logo__spectrum {
		animation: kozmosLogoSpectrumFooter 12s ease-in-out infinite;
	}
}

@keyframes kozmosLogoLettersIntro {
	from {
		opacity: 0;
		transform: translateY(5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kozmosLogoCrescentIntro {
	0% {
		opacity: 0.88;
		transform: translateX(-2px);
		filter: drop-shadow(0 0 0 rgba(50, 214, 255, 0));
	}
	58% {
		opacity: 1;
		filter: drop-shadow(0 0 7px rgba(50, 214, 255, var(--kozmos-logo-glow)));
	}
	100% {
		opacity: 1;
		transform: translateX(0);
		filter: drop-shadow(0 0 0 rgba(50, 214, 255, 0));
	}
}

@keyframes kozmosLogoSpectrumIntro {
	0% {
		opacity: 0.55;
		transform: translate(-7px, 4px);
		filter: saturate(0.9) brightness(0.92);
	}
	58% {
		opacity: 1;
		transform: translate(3px, -2px);
		filter: saturate(1.24) brightness(1.12) drop-shadow(0 0 6px rgba(255, 207, 51, var(--kozmos-logo-glow)));
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
		filter: saturate(1) brightness(1);
	}
}

@keyframes kozmosLogoSpectrumHover {
	0%,
	100% {
		transform: translate(0, 0);
		filter: saturate(1) brightness(1);
	}
	45% {
		transform: translate(5px, -3px);
		filter: saturate(1.28) brightness(1.16) drop-shadow(0 0 7px rgba(50, 214, 255, 0.26));
	}
	72% {
		transform: translate(-2px, 1px);
		filter: saturate(1.14) brightness(1.06);
	}
}

@keyframes kozmosLogoSpectrumFooter {
	0%,
	100% {
		transform: translate(0, 0);
		filter: saturate(0.98) brightness(1);
	}
	50% {
		transform: translate(1.8px, -1.2px);
		filter: saturate(1.08) brightness(1.04);
	}
}

@media (max-width: 760px) {
	.kozmos-logo {
		--kozmos-logo-width: 160px;
	}

	.kozmos-logo--footer {
		--kozmos-logo-width: 150px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kozmos-logo__letters,
	.kozmos-logo__crescent,
	.kozmos-logo__spectrum {
		animation: none !important;
		transform: none !important;
		filter: none !important;
	}
}

/* Kozmos Magazine 1.5.69: visible editorial 3D light logo. */
.kozmos-logo {
	--kozmos-logo-o-x: 21.1%;
	--kozmos-logo-o-y: 50%;
	--kozmos-logo-orbit-size: clamp(34px, 3.6vw, 54px);
	--kozmos-logo-aura-opacity: 0.78;
	position: relative !important;
	perspective: 760px !important;
	transform-style: preserve-3d !important;
}

.kozmos-logo__aura {
	position: absolute !important;
	left: var(--kozmos-logo-o-x) !important;
	top: var(--kozmos-logo-o-y) !important;
	width: var(--kozmos-logo-orbit-size) !important;
	height: var(--kozmos-logo-orbit-size) !important;
	z-index: 0 !important;
	pointer-events: none !important;
	border-radius: 999px !important;
	opacity: var(--kozmos-logo-aura-opacity) !important;
	transform: translate(-50%, -50%) translateZ(-1px) !important;
	background:
		radial-gradient(circle at 42% 40%, rgba(255, 255, 255, 0.32), transparent 22%),
		conic-gradient(from 210deg, rgba(255, 47, 138, 0.00), rgba(255, 139, 34, 0.42), rgba(255, 207, 51, 0.50), rgba(38, 216, 132, 0.38), rgba(50, 214, 255, 0.46), rgba(123, 77, 255, 0.34), rgba(255, 47, 138, 0.00)) !important;
	filter: blur(8px) saturate(1.25) !important;
	mix-blend-mode: screen !important;
}

.kozmos-logo__orbit {
	position: absolute !important;
	inset: 6px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255, 255, 255, 0.34) !important;
	border-left-color: rgba(50, 214, 255, 0.78) !important;
	border-bottom-color: rgba(255, 207, 51, 0.58) !important;
	transform: rotate(-24deg) scaleX(1.45) !important;
	box-shadow: 0 0 10px rgba(50, 214, 255, 0.20) !important;
}

.kozmos-logo__orbit--two {
	inset: 10px !important;
	opacity: 0.58 !important;
	border-top-color: rgba(255, 47, 138, 0.60) !important;
	border-right-color: rgba(123, 77, 255, 0.58) !important;
	transform: rotate(31deg) scaleX(1.26) !important;
}

.kozmos-logo__svg {
	position: relative !important;
	z-index: 2 !important;
	transform-origin: center !important;
}

.kozmos-logo__spectrum {
	transform-origin: center !important;
	filter: saturate(1.08) brightness(1.03) !important;
}

.site-footer .kozmos-logo {
	--kozmos-logo-aura-opacity: 0.28;
	--kozmos-logo-orbit-size: clamp(28px, 2.8vw, 42px);
}

.site-footer .kozmos-logo__orbit {
	opacity: 0.40 !important;
}

@media (prefers-reduced-motion: no-preference) {
	.kozmos-logo--header {
		animation: kozmosLogoStageIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
	}

	.kozmos-logo--header .kozmos-logo__aura {
		animation: kozmosLogoAuraBreathe 4.8s ease-in-out infinite !important;
	}

	.kozmos-logo--header .kozmos-logo__orbit--one {
		animation: kozmosLogoOrbitOne 5.8s linear infinite !important;
	}

	.kozmos-logo--header .kozmos-logo__orbit--two {
		animation: kozmosLogoOrbitTwo 7.4s linear infinite reverse !important;
	}

	.kozmos-logo--header .kozmos-logo__spectrum {
		animation: kozmosLogoSpectrumDrift 3.4s ease-in-out infinite !important;
	}

	.kozmos-logo--header:hover,
	.kozmos-logo--header:focus-visible {
		transform: rotateX(5deg) rotateY(-8deg) translateY(-1px) !important;
	}

	.kozmos-logo--header:hover .kozmos-logo__aura,
	.kozmos-logo--header:focus-visible .kozmos-logo__aura {
		animation: kozmosLogoAuraHover 850ms ease-out 1 !important;
	}

	.kozmos-logo--header:hover .kozmos-logo__spectrum,
	.kozmos-logo--header:focus-visible .kozmos-logo__spectrum {
		animation: kozmosLogoSpectrumHoverStrong 850ms cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
	}

	.kozmos-logo--footer .kozmos-logo__aura {
		animation: kozmosLogoAuraBreathe 10s ease-in-out infinite !important;
	}

	.kozmos-logo--footer .kozmos-logo__orbit--one {
		animation: kozmosLogoOrbitOne 16s linear infinite !important;
	}
}

@keyframes kozmosLogoStageIn {
	from {
		opacity: 0;
		transform: translateY(6px) rotateX(8deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
}

@keyframes kozmosLogoAuraBreathe {
	0%,
	100% {
		opacity: calc(var(--kozmos-logo-aura-opacity) * 0.58);
		filter: blur(8px) saturate(1.05);
	}
	50% {
		opacity: var(--kozmos-logo-aura-opacity);
		filter: blur(10px) saturate(1.32);
	}
}

@keyframes kozmosLogoAuraHover {
	0%,
	100% {
		opacity: var(--kozmos-logo-aura-opacity);
		transform: translate(-50%, -50%) translateZ(-1px) scale(1);
	}
	45% {
		opacity: 1;
		transform: translate(-50%, -50%) translateZ(-1px) scale(1.20);
	}
}

@keyframes kozmosLogoOrbitOne {
	to {
		transform: rotate(336deg) scaleX(1.45);
	}
}

@keyframes kozmosLogoOrbitTwo {
	to {
		transform: rotate(391deg) scaleX(1.26);
	}
}

@keyframes kozmosLogoSpectrumDrift {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		filter: saturate(1.04) brightness(1);
	}
	50% {
		transform: translate(3px, -2px) scale(1.025);
		filter: saturate(1.30) brightness(1.13) drop-shadow(0 0 5px rgba(50, 214, 255, 0.36));
	}
}

@keyframes kozmosLogoSpectrumHoverStrong {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		filter: saturate(1.08) brightness(1.03);
	}
	48% {
		transform: translate(7px, -4px) scale(1.06);
		filter: saturate(1.42) brightness(1.22) drop-shadow(0 0 8px rgba(255, 207, 51, 0.42));
	}
}

@media (max-width: 760px) {
	.kozmos-logo {
		--kozmos-logo-o-x: 21.3%;
		--kozmos-logo-orbit-size: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kozmos-logo,
	.kozmos-logo *,
	.kozmos-logo::before,
	.kozmos-logo::after {
		animation: none !important;
		transition: none !important;
		transform: none !important;
		filter: none !important;
	}

	.kozmos-logo__aura {
		display: none !important;
	}
}

/* Kozmos Magazine 1.5.70: scoped Partneri page rebuild. */
.kozmos-partner-page {
	--kpp-ink: #0b1424;
	--kpp-muted: #52647c;
	--kpp-soft: #eef6fb;
	--kpp-line: #d7e4ef;
	--kpp-navy: #071524;
	--kpp-navy-2: #0e2d46;
	--kpp-gold: #f6c945;
	--kpp-blue: #38c8f4;
	--kpp-white: #ffffff;
	background: #f7fbff;
	color: var(--kpp-ink);
	overflow: hidden;
}

.kozmos-partner-page * {
	box-sizing: border-box;
}

.kozmos-partner-page .kpp-shell {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.kozmos-partner-page .kpp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	color: var(--kpp-gold);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.22em;
	line-height: 1.2;
	text-transform: uppercase;
}

.kozmos-partner-page .kpp-eyebrow::before {
	content: "";
	width: 0.62rem;
	height: 0.62rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kpp-gold), var(--kpp-blue));
	box-shadow: 0 0 0 4px rgba(56, 200, 244, 0.12);
}

.kozmos-partner-page h1,
.kozmos-partner-page h2,
.kozmos-partner-page h3 {
	margin: 0;
	color: inherit;
	letter-spacing: 0;
}

.kozmos-partner-page h1 {
	max-width: 980px;
	font-size: 5.2rem;
	line-height: 0.95;
	font-weight: 950;
}

.kozmos-partner-page h2 {
	max-width: 920px;
	font-size: 3.35rem;
	line-height: 1;
	font-weight: 950;
}

.kozmos-partner-page h3 {
	font-size: 1.35rem;
	line-height: 1.15;
	font-weight: 900;
}

.kozmos-partner-page p {
	margin: 0;
	color: var(--kpp-muted);
	font-size: 1.04rem;
	line-height: 1.7;
}

.kozmos-partner-page .kpp-lead {
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.18rem;
}

.kozmos-partner-page .kpp-actions,
.kozmos-partner-page .kpp-final-cta__action {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
}

.kozmos-partner-page .kpp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-height: 3.35rem;
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.kozmos-partner-page .kpp-button:hover,
.kozmos-partner-page .kpp-button:focus-visible {
	transform: translateY(-1px);
}

.kozmos-partner-page .kpp-button svg {
	width: 1rem;
	height: 1rem;
}

.kozmos-partner-page .kpp-button--primary {
	background: var(--kpp-white);
	color: var(--kpp-navy);
}

.kozmos-partner-page .kpp-button--secondary {
	border-color: rgba(255, 255, 255, 0.26);
	color: var(--kpp-white);
}

.kozmos-partner-page .kpp-button--secondary:hover,
.kozmos-partner-page .kpp-button--secondary:focus-visible {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.08);
	color: var(--kpp-white);
}

.kozmos-partner-page .kpp-button--gold {
	background: var(--kpp-gold);
	color: var(--kpp-ink);
	box-shadow: 0 18px 48px rgba(246, 201, 69, 0.22);
}

.kozmos-partner-page .kpp-hero {
	position: relative;
	padding: 7.5rem 0;
	background:
		radial-gradient(circle at 18% 18%, rgba(56, 200, 244, 0.23), transparent 28rem),
		radial-gradient(circle at 88% 8%, rgba(246, 201, 69, 0.12), transparent 22rem),
		linear-gradient(135deg, #06111f 0%, #0a1d31 52%, #08121d 100%);
	color: var(--kpp-white);
}

.kozmos-partner-page .kpp-hero::after,
.kozmos-partner-page .kpp-problem::after,
.kozmos-partner-page .kpp-final-cta__card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, 0.20) 1px, transparent 1.5px),
		linear-gradient(90deg, rgba(255, 47, 138, 0.55), rgba(255, 139, 34, 0.55), rgba(246, 201, 69, 0.55), rgba(38, 216, 132, 0.55), rgba(56, 200, 244, 0.55), rgba(123, 77, 255, 0.55));
	background-position: 0 0, 0 0;
	background-size: 96px 96px, 100% 3px;
	background-repeat: repeat, no-repeat;
	opacity: 0.28;
}

.kozmos-partner-page .kpp-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
	gap: 3rem;
	align-items: end;
}

.kozmos-partner-page .kpp-hero__content {
	display: grid;
	gap: 1.55rem;
}

.kozmos-partner-page .kpp-hero__content p:not(.kpp-eyebrow) {
	max-width: 800px;
	color: rgba(255, 255, 255, 0.74);
}

.kozmos-partner-page .kpp-why-card {
	position: relative;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(16px);
}

.kozmos-partner-page .kpp-why-card h2 {
	margin-bottom: 1rem;
	font-size: 2rem;
}

.kozmos-partner-page .kpp-why-card ul,
.kozmos-partner-page .kpp-card ul,
.kozmos-partner-page .kpp-checklist {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kozmos-partner-page .kpp-why-card li,
.kozmos-partner-page .kpp-card li,
.kozmos-partner-page .kpp-checklist li {
	position: relative;
	padding-left: 1.45rem;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 750;
	line-height: 1.45;
}

.kozmos-partner-page .kpp-why-card li::before,
.kozmos-partner-page .kpp-card li::before,
.kozmos-partner-page .kpp-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: var(--kpp-gold);
}

.kozmos-partner-page .kpp-section {
	padding: 5rem 0;
}

.kozmos-partner-page .kpp-section__header {
	display: grid;
	gap: 1.05rem;
	max-width: 940px;
	margin-bottom: 2rem;
}

.kozmos-partner-page .kpp-section__header--narrow {
	max-width: 720px;
}

.kozmos-partner-page .kpp-copy {
	display: grid;
	gap: 1rem;
	max-width: 920px;
}

.kozmos-partner-page .kpp-mission {
	background: var(--kpp-white);
}

.kozmos-partner-page .kpp-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.kozmos-partner-page .kpp-stat-card,
.kozmos-partner-page .kpp-card,
.kozmos-partner-page .kpp-partner-card,
.kozmos-partner-page .kpp-faq details {
	border: 1px solid var(--kpp-line);
	border-radius: 8px;
	background: var(--kpp-white);
	box-shadow: 0 18px 52px rgba(9, 35, 63, 0.06);
}

.kozmos-partner-page .kpp-stat-card {
	padding: 1.45rem;
}

.kozmos-partner-page .kpp-stat-card strong {
	display: block;
	color: var(--kpp-ink);
	font-size: 2.25rem;
	font-weight: 950;
	line-height: 1;
}

.kozmos-partner-page .kpp-stat-card span {
	display: block;
	margin-top: 0.55rem;
	color: var(--kpp-muted);
	font-weight: 800;
	line-height: 1.35;
}

.kozmos-partner-page .kpp-note {
	margin-top: 1rem;
	color: #738297;
	font-size: 0.9rem;
}

.kozmos-partner-page .kpp-note--boxed {
	padding: 1rem 1.2rem;
	border: 1px solid rgba(246, 201, 69, 0.45);
	border-radius: 8px;
	background: rgba(246, 201, 69, 0.10);
	color: #504414;
	font-weight: 750;
}

.kozmos-partner-page .kpp-reader-support {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	align-items: center;
	margin-top: 1rem;
	padding: 1.35rem;
	border: 1px solid rgba(56, 200, 244, 0.28);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(7, 21, 36, 0.98), rgba(14, 45, 70, 0.94));
	color: var(--kpp-white);
	box-shadow: 0 18px 56px rgba(9, 35, 63, 0.14);
}

.kozmos-partner-page .kpp-reader-support h3 {
	margin-bottom: 0.45rem;
	color: var(--kpp-white);
}

.kozmos-partner-page .kpp-reader-support p:not(.kpp-eyebrow) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.76);
}

.kozmos-partner-page .kpp-reader-support .kpp-eyebrow {
	margin-bottom: 0.55rem;
}

.kozmos-partner-page .kpp-problem {
	position: relative;
	background:
		radial-gradient(circle at 85% 12%, rgba(56, 200, 244, 0.18), transparent 22rem),
		linear-gradient(135deg, #07121f, #0c263d);
	color: var(--kpp-white);
}

.kozmos-partner-page .kpp-problem__grid,
.kozmos-partner-page .kpp-trust__grid,
.kozmos-partner-page .kpp-final-cta__card {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 3rem;
	align-items: start;
}

.kozmos-partner-page .kpp-problem__grid {
	position: relative;
	z-index: 1;
}

.kozmos-partner-page .kpp-problem p {
	color: rgba(255, 255, 255, 0.76);
}

.kozmos-partner-page .kpp-problem h3 {
	margin-top: 1rem;
	color: var(--kpp-white);
	font-size: 1.7rem;
}

.kozmos-partner-page .kpp-card-grid {
	display: grid;
	gap: 1rem;
}

.kozmos-partner-page .kpp-card-grid--six {
	grid-template-columns: repeat(3, 1fr);
}

.kozmos-partner-page .kpp-card-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

.kozmos-partner-page .kpp-card {
	padding: 1.45rem;
}

.kozmos-partner-page .kpp-card h3 {
	margin-bottom: 0.65rem;
}

.kozmos-partner-page .kpp-card p {
	font-size: 0.98rem;
}

.kozmos-partner-page .kpp-card--package {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.kozmos-partner-page .kpp-card--package > span {
	display: inline-grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	background: var(--kpp-soft);
	color: #0066d6;
	font-weight: 950;
}

.kozmos-partner-page .kpp-card--package ul {
	padding-top: 0.2rem;
	border-top: 1px solid var(--kpp-line);
}

.kozmos-partner-page .kpp-card--package li,
.kozmos-partner-page .kpp-checklist li {
	color: var(--kpp-ink);
	font-size: 0.95rem;
}

.kozmos-partner-page .kpp-current-partners {
	background: var(--kpp-white);
}

.kozmos-partner-page .kpp-partner-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.kozmos-partner-page .kpp-partner-card {
	display: grid;
	gap: 0.85rem;
	padding: 1.35rem;
}

.kozmos-partner-page .kpp-partner-card img {
	width: 100%;
	max-height: 84px;
	object-fit: contain;
	object-position: left center;
}

.kozmos-partner-page .kpp-partner-card a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #005ecb;
	font-weight: 900;
	text-decoration: none;
}

.kozmos-partner-page .kpp-pill-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	max-width: 980px;
}

.kozmos-partner-page .kpp-pill-grid span {
	display: inline-flex;
	align-items: center;
	min-height: 2.65rem;
	padding: 0.65rem 0.95rem;
	border: 1px solid var(--kpp-line);
	border-radius: 999px;
	background: var(--kpp-white);
	color: var(--kpp-ink);
	font-weight: 850;
	line-height: 1.2;
}

.kozmos-partner-page .kpp-trust {
	background: var(--kpp-white);
}

.kozmos-partner-page .kpp-trust__grid {
	padding: 2.25rem;
	border: 1px solid var(--kpp-line);
	border-radius: 8px;
	background: linear-gradient(135deg, #ffffff, #f0f8fd);
}

.kozmos-partner-page .kpp-now__card {
	padding: 2.5rem;
	border-left: 4px solid var(--kpp-gold);
	border-radius: 8px;
	background: var(--kpp-white);
	box-shadow: 0 18px 62px rgba(9, 35, 63, 0.07);
}

.kozmos-partner-page .kpp-final-cta {
	padding-top: 2rem;
}

.kozmos-partner-page .kpp-final-cta__card {
	position: relative;
	overflow: hidden;
	align-items: center;
	padding: 2.4rem;
	border-radius: 8px;
	background:
		radial-gradient(circle at 86% 20%, rgba(56, 200, 244, 0.20), transparent 22rem),
		linear-gradient(135deg, #071524, #0e2d46);
	color: var(--kpp-white);
}

.kozmos-partner-page .kpp-final-cta__card > * {
	position: relative;
	z-index: 1;
}

.kozmos-partner-page .kpp-final-cta__card p {
	color: rgba(255, 255, 255, 0.74);
}

.kozmos-partner-page .kpp-final-cta__action {
	justify-content: flex-end;
}

.kozmos-partner-page .kpp-final-cta__action p {
	max-width: 320px;
	font-size: 0.94rem;
}

.kozmos-partner-page .kpp-faq {
	padding-top: 4rem;
	background: var(--kpp-white);
}

.kozmos-partner-page .kpp-faq__list {
	display: grid;
	gap: 0.75rem;
	max-width: 880px;
}

.kozmos-partner-page .kpp-faq details {
	padding: 0;
	overflow: hidden;
}

.kozmos-partner-page .kpp-faq summary {
	cursor: pointer;
	padding: 1.15rem 1.25rem;
	color: var(--kpp-ink);
	font-weight: 950;
	list-style: none;
}

.kozmos-partner-page .kpp-faq summary::-webkit-details-marker {
	display: none;
}

.kozmos-partner-page .kpp-faq summary::after {
	content: "+";
	float: right;
	color: #0066d6;
	font-size: 1.25rem;
	line-height: 1;
}

.kozmos-partner-page .kpp-faq details[open] summary::after {
	content: "-";
}

.kozmos-partner-page .kpp-faq details p {
	padding: 0 1.25rem 1.25rem;
}

@media (prefers-reduced-motion: no-preference) {
	.kozmos-partner-page .kpp-button,
	.kozmos-partner-page .kpp-card,
	.kozmos-partner-page .kpp-stat-card,
	.kozmos-partner-page .kpp-partner-card {
		transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
	}

	.kozmos-partner-page .kpp-card:hover,
	.kozmos-partner-page .kpp-stat-card:hover,
	.kozmos-partner-page .kpp-partner-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 24px 72px rgba(9, 35, 63, 0.10);
	}
}

@media (max-width: 1040px) {
	.kozmos-partner-page h1 {
		font-size: 4rem;
	}

	.kozmos-partner-page h2 {
		font-size: 2.7rem;
	}

	.kozmos-partner-page .kpp-hero__grid,
	.kozmos-partner-page .kpp-problem__grid,
	.kozmos-partner-page .kpp-trust__grid,
	.kozmos-partner-page .kpp-final-cta__card {
		grid-template-columns: 1fr;
	}

	.kozmos-partner-page .kpp-card-grid--six,
	.kozmos-partner-page .kpp-card-grid--three,
	.kozmos-partner-page .kpp-partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.kozmos-partner-page .kpp-reader-support {
		grid-template-columns: 1fr;
	}

	.kozmos-partner-page .kpp-final-cta__action {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.kozmos-partner-page .kpp-shell {
		width: min(100% - 28px, 1180px);
	}

	.kozmos-partner-page .kpp-hero {
		padding: 4.5rem 0;
	}

	.kozmos-partner-page .kpp-section {
		padding: 3.5rem 0;
	}

	.kozmos-partner-page h1 {
		font-size: 3rem;
		line-height: 1;
	}

	.kozmos-partner-page h2 {
		font-size: 2.15rem;
		line-height: 1.04;
	}

	.kozmos-partner-page p,
	.kozmos-partner-page .kpp-lead {
		font-size: 1rem;
	}

	.kozmos-partner-page .kpp-actions,
	.kozmos-partner-page .kpp-button {
		width: 100%;
	}

	.kozmos-partner-page .kpp-why-card,
	.kozmos-partner-page .kpp-trust__grid,
	.kozmos-partner-page .kpp-now__card,
	.kozmos-partner-page .kpp-final-cta__card {
		padding: 1.35rem;
	}

	.kozmos-partner-page .kpp-stats,
	.kozmos-partner-page .kpp-card-grid--six,
	.kozmos-partner-page .kpp-card-grid--three,
	.kozmos-partner-page .kpp-partner-grid {
		grid-template-columns: 1fr;
	}
}

/* Kozmos Magazine 1.5.73: mobile category rhythm and membership CTA polish. */
@media (max-width: 760px) {
	.header-membership-cta {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		flex: 0 0 auto !important;
		gap: 0.28rem !important;
		min-width: 0 !important;
		min-height: 36px !important;
		padding: 0 0.86rem !important;
		white-space: nowrap !important;
		line-height: 1 !important;
	}

	.header-membership-cta__prefix {
		display: inline !important;
		margin: 0 !important;
	}

	.header-membership-cta__prefix + span::before {
		content: none !important;
	}

	.archive-main--category .archive-header--category {
		padding-bottom: clamp(18px, 5vw, 24px) !important;
		margin-bottom: clamp(22px, 6vw, 32px) !important;
		border-bottom: 1px solid #d8e2ee !important;
	}

	.archive-main--category .archive-description {
		margin-bottom: 0 !important;
	}

	.archive-main--category .archive-grid--category {
		padding-top: 0 !important;
	}

	.prefooter-membership {
		text-align: center !important;
	}

	.prefooter-membership__inner {
		grid-template-columns: 1fr !important;
		justify-items: center !important;
		text-align: center !important;
	}

	.prefooter-membership__copy,
	.prefooter-membership__actions {
		width: min(100%, 30rem) !important;
		margin-inline: auto !important;
		text-align: center !important;
	}

	.prefooter-membership__actions {
		justify-self: center !important;
	}

	.prefooter-membership__actions .button {
		margin-inline: auto !important;
	}
}

@media (max-width: 430px) {
	.header-membership-cta {
		gap: 0.24rem !important;
		min-height: 34px !important;
		padding-inline: 0.74rem !important;
		font-size: 0.72rem !important;
		letter-spacing: -0.01em !important;
	}
}
