/* Alrad News — single article */
.alrad-article-page {
	padding-bottom: 76px;
}

.alrad-article-hero {
	position: relative;
	padding: 42px 0 24px;
	overflow: hidden;
}

.alrad-article-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 320px;
	background:
		radial-gradient(circle at 80% 0%, rgba(38,198,218,.08), transparent 28rem),
		linear-gradient(180deg, rgba(18,59,143,.055), transparent);
	pointer-events: none;
}

.alrad-breadcrumbs {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	color: var(--alrad-muted);
	font-size: .76rem;
}

.alrad-breadcrumbs a {
	text-decoration: none;
	color: var(--alrad-blue-bright);
	font-weight: 700;
}

.alrad-article-header {
	position: relative;
	z-index: 1;
	max-width: 1010px;
}

.alrad-article-kicker {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.alrad-article-category {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 11px;
	border-radius: 999px;
	background: linear-gradient(135deg, #123B8F, #1E5BDB);
	color: #fff;
	font-size: .72rem;
	font-weight: 800;
}

.alrad-article-type {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 11px;
	border: 1px solid var(--alrad-border);
	border-radius: 999px;
	background: var(--alrad-surface);
	color: var(--alrad-muted);
	font-size: .70rem;
	font-weight: 700;
}

.alrad-article-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.05rem, 5.2vw, 4.8rem);
	line-height: 1.18;
	letter-spacing: -.055em;
	text-wrap: balance;
}

.alrad-article-deck {
	margin: 18px 0 0;
	max-width: 880px;
	color: var(--alrad-muted);
	font-size: clamp(1rem, 1.5vw, 1.23rem);
	line-height: 1.9;
}

.alrad-article-meta {
	margin-top: 22px;
	display: flex;
	align-items: center;
	gap: 13px;
	flex-wrap: wrap;
	color: var(--alrad-muted);
	font-size: .78rem;
}

.alrad-article-meta strong {
	color: var(--alrad-text);
	font-weight: 700;
}

.alrad-article-meta__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(30,91,219,.42);
}

.alrad-article-tools {
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.alrad-share-button {
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 12px;
	border: 1px solid var(--alrad-border);
	border-radius: 11px;
	background: var(--alrad-surface-solid);
	color: var(--alrad-text);
	text-decoration: none;
	font-size: .74rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.alrad-share-button:hover {
	transform: translateY(-1px);
	border-color: rgba(30,91,219,.28);
	color: var(--alrad-blue-bright);
}

.alrad-share-button svg {
	width: 15px;
	height: 15px;
}

.alrad-article-cover {
	margin: 24px 0 0;
	border-radius: 26px;
	overflow: hidden;
	background: linear-gradient(135deg, #071536, #123B8F);
	box-shadow: var(--alrad-shadow);
}

.alrad-article-cover img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 8.5;
	object-fit: cover;
}

.alrad-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 46px;
	align-items: start;
	padding-top: 40px;
}

.alrad-article-body {
	min-width: 0;
	max-width: 830px;
}

.alrad-article-body > *:first-child {
	margin-top: 0;
}

.alrad-article-body p {
	margin: 0 0 1.35em;
	font-size: 1.08rem;
	line-height: 2.05;
}

.alrad-article-body h2,
.alrad-article-body h3,
.alrad-article-body h4 {
	font-family: var(--font-display);
	line-height: 1.45;
	letter-spacing: -.035em;
	margin: 1.8em 0 .75em;
}

.alrad-article-body h2 { font-size: 1.75rem; }
.alrad-article-body h3 { font-size: 1.35rem; }

.alrad-article-body a {
	color: var(--alrad-blue-bright);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.alrad-article-body blockquote {
	position: relative;
	margin: 2em 0;
	padding: 22px 24px 22px 28px;
	border: 1px solid var(--alrad-border);
	border-right: 5px solid #1E5BDB;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(30,91,219,.055), rgba(38,198,218,.035));
	font-family: var(--font-display);
	font-size: 1.15rem;
	line-height: 1.9;
}

.alrad-article-body ul,
.alrad-article-body ol {
	padding-inline-start: 1.35rem;
	line-height: 1.95;
}

.alrad-article-body img {
	border-radius: 17px;
}

.alrad-article-body figure {
	margin: 2em 0;
}

.alrad-article-body figcaption {
	margin-top: 8px;
	color: var(--alrad-muted);
	font-size: .75rem;
	text-align: center;
}

.alrad-fact-note {
	margin: 0 0 28px;
	padding: 20px 21px;
	border-radius: 18px;
	border: 1px solid rgba(38,198,218,.20);
	background:
		radial-gradient(circle at 85% 0%, rgba(38,198,218,.13), transparent 14rem),
		linear-gradient(135deg, #071536, #0A2D73);
	color: #fff;
}

.alrad-fact-note__label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #7DEBF5;
	font-size: .72rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.alrad-fact-note h2 {
	margin: 0 0 7px;
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.15rem;
}

.alrad-fact-note p {
	margin: 0;
	color: #CBDBF3;
	font-size: .88rem;
	line-height: 1.8;
}

.alrad-article-footer {
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid var(--alrad-border);
}

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

.alrad-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 11px;
	border-radius: 999px;
	border: 1px solid var(--alrad-border);
	background: var(--alrad-surface);
	text-decoration: none;
	color: var(--alrad-muted);
	font-size: .72rem;
	font-weight: 700;
}

.alrad-author-box {
	margin-top: 24px;
	padding: 20px;
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 14px;
	align-items: center;
	border: 1px solid var(--alrad-border);
	border-radius: 18px;
	background: var(--alrad-surface-solid);
}

.alrad-author-box__avatar img {
	display: block;
	border-radius: 50%;
	width: 54px;
	height: 54px;
	object-fit: cover;
}

.alrad-author-box strong {
	display: block;
	font-family: var(--font-display);
	margin-bottom: 4px;
}

.alrad-author-box p {
	margin: 0;
	color: var(--alrad-muted);
	font-size: .80rem;
	line-height: 1.65;
}

.alrad-sidebar {
	position: sticky;
	top: 128px;
	display: grid;
	gap: 16px;
}

.alrad-sidebar-card {
	border: 1px solid var(--alrad-border);
	border-radius: 20px;
	background: var(--alrad-surface-solid);
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(8,27,75,.05);
}

.alrad-sidebar-card__head {
	padding: 16px 17px 13px;
	display: flex;
	align-items: center;
	gap: 9px;
	border-bottom: 1px solid var(--alrad-border);
	font-family: var(--font-display);
	font-size: .95rem;
	font-weight: 800;
}

.alrad-sidebar-card__head::before {
	content: "";
	width: 4px;
	height: 19px;
	border-radius: 99px;
	background: linear-gradient(180deg, #1E5BDB, #26C6DA);
}

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

.alrad-sidebar-list li + li {
	border-top: 1px solid var(--alrad-border);
}

.alrad-sidebar-list a {
	display: block;
	padding: 14px 17px;
	text-decoration: none;
}

.alrad-sidebar-list strong {
	display: block;
	font-family: var(--font-display);
	font-size: .84rem;
	line-height: 1.55;
	margin-bottom: 6px;
}

.alrad-sidebar-list time {
	color: var(--alrad-muted);
	font-size: .68rem;
}

.alrad-sidebar-cta {
	padding: 19px;
	background:
		radial-gradient(circle at 80% 0%, rgba(38,198,218,.17), transparent 11rem),
		linear-gradient(135deg, #061638, #0A2D73);
	color: #fff;
}

.alrad-sidebar-cta strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1rem;
	margin-bottom: 7px;
}

.alrad-sidebar-cta p {
	margin: 0 0 14px;
	color: #C9D9F3;
	font-size: .78rem;
	line-height: 1.7;
}

.alrad-sidebar-cta a {
	display: inline-flex;
	align-items: center;
	min-height: 35px;
	padding: 0 12px;
	border-radius: 10px;
	background: #fff;
	color: #0A2D73;
	text-decoration: none;
	font-size: .73rem;
	font-weight: 800;
}

.alrad-related {
	margin-top: 58px;
	padding-top: 32px;
	border-top: 1px solid var(--alrad-border);
}

.alrad-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 17px;
}

.alrad-related__head h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.45rem;
}

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

.alrad-related-card {
	border: 1px solid var(--alrad-border);
	border-radius: 18px;
	overflow: hidden;
	background: var(--alrad-surface-solid);
}

.alrad-related-card__media {
	display: block;
	aspect-ratio: 16/9;
	background:
		radial-gradient(circle at 75% 10%, rgba(38,198,218,.16), transparent 10rem),
		linear-gradient(135deg, #081B4B, #123B8F);
	background-size: cover;
	background-position: center;
}

.alrad-related-card__body {
	padding: 14px;
}

.alrad-related-card__body span {
	color: var(--alrad-blue-bright);
	font-size: .68rem;
	font-weight: 800;
}

.alrad-related-card h3 {
	margin: 7px 0 0;
	font-family: var(--font-display);
	font-size: .88rem;
	line-height: 1.55;
}

.alrad-nextprev {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 12px;
}

.alrad-nextprev a {
	padding: 16px;
	border: 1px solid var(--alrad-border);
	border-radius: 16px;
	background: var(--alrad-surface-solid);
	text-decoration: none;
}

.alrad-nextprev span {
	display: block;
	color: var(--alrad-muted);
	font-size: .68rem;
	margin-bottom: 5px;
}

.alrad-nextprev strong {
	font-family: var(--font-display);
	font-size: .82rem;
	line-height: 1.5;
}

@media (max-width: 1040px) {
	.alrad-article-layout {
		grid-template-columns: 1fr;
	}
	.alrad-article-body {
		max-width: none;
	}
	.alrad-sidebar {
		position: static;
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
}

@media (max-width: 760px) {
	.alrad-article-hero {
		padding-top: 27px;
	}
	.alrad-article-title {
		font-size: clamp(1.75rem, 9vw, 2.8rem);
	}
	.alrad-article-deck {
		font-size: .98rem;
	}
	.alrad-article-cover {
		border-radius: 20px;
		margin-top: 20px;
	}
	.alrad-article-cover img {
		aspect-ratio: 4/3;
	}
	.alrad-article-layout {
		padding-top: 28px;
		gap: 34px;
	}
	.alrad-article-body p {
		font-size: 1rem;
		line-height: 2;
	}
	.alrad-sidebar {
		grid-template-columns: 1fr;
	}
	.alrad-related-grid {
		grid-template-columns: 1fr;
	}
	.alrad-nextprev {
		grid-template-columns: 1fr;
	}
	.alrad-share-button span {
		display: none;
	}
	.alrad-share-button {
		width: 38px;
		padding: 0;
	}
}

@media (max-width: 520px) {
	.alrad-breadcrumbs {
		font-size: .69rem;
	}
	.alrad-article-meta {
		font-size: .72rem;
		gap: 9px;
	}
	.alrad-author-box {
		grid-template-columns: 44px 1fr;
		padding: 16px;
	}
	.alrad-author-box__avatar img {
		width: 44px;
		height: 44px;
	}
}
