:root {
	--news-border: rgba(4, 31, 45, .12);
	--news-card: rgba(255, 255, 255, .82);
	--news-muted: rgba(4, 31, 45, .68);
}

.skusing-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.skusing-news-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.skusing-news-card {
	min-width: 0;
}

.skusing-news-card__link {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--news-border);
	border-radius: 8px;
	background: var(--news-card);
	color: inherit;
	text-decoration: none;
	box-shadow: 0 24px 60px rgba(4, 31, 45, .08);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.skusing-news-card__link:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 91, 67, .45);
	box-shadow: 0 34px 84px rgba(4, 31, 45, .14);
}

.skusing-news-card__image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(4, 31, 45, .06);
}

.skusing-news-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.skusing-news-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
}

.skusing-news-card h2,
.skusing-news-card h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	line-height: 1.12;
	letter-spacing: 0;
}

.skusing-news-card p {
	margin: 0;
	color: var(--news-muted);
	line-height: 1.65;
}

.skusing-news-card .more {
	margin-top: auto;
	font-weight: 800;
	color: var(--coral);
}

.skusing-news-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 34px;
}

.skusing-news-pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--news-border);
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
}

.skusing-news-pagination .current,
.skusing-news-pagination a:hover {
	border-color: var(--coral);
	background: var(--coral);
	color: #fff;
}

/* Page hero. The news templates only load home.css as their base, and that sheet
   carries no .phero rule, so the heading would sit unpadded under the fixed nav. */
.phero {
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 150px 0 56px;
	border-bottom: 1px solid var(--line);
}

.phero .crumbs {
	margin-bottom: 18px;
	color: var(--steel);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.phero .crumbs a:hover {
	color: var(--coral);
}

.phero .kicker {
	margin-bottom: 18px;
}

.phero h1 {
	max-width: 20ch;
	font-size: clamp(38px, 6vw, 80px);
}

.phero p.sub {
	max-width: 66ch;
	margin-top: 22px;
	color: var(--ink-soft);
	font-size: clamp(16px, 1.7vw, 20px);
	line-height: 1.6;
}

.phero .hsym {
	position: absolute;
	top: 80px;
	right: -90px;
	z-index: -1;
	width: min(420px, 40vw);
	height: min(420px, 40vw);
	color: var(--coral);
	opacity: .1;
}

.phero .hsym .symx {
	width: 100%;
	height: 100%;
}

.skusing-article__wrap {
	max-width: 980px;
}

.skusing-article__image {
	overflow: hidden;
	margin-bottom: 34px;
	border-radius: 8px;
}

.skusing-article__image img {
	display: block;
	width: 100%;
	height: auto;
}

.skusing-article__content {
	max-width: 780px;
	margin: 0 auto;
	color: var(--ink);
	font-size: 1.08rem;
	line-height: 1.8;
}

.skusing-article__content > *:first-child {
	margin-top: 0;
}

.skusing-article__content h2,
.skusing-article__content h3 {
	margin: 2.1em 0 .7em;
	letter-spacing: 0;
}

.skusing-article__content h2 {
	font-size: clamp(24px, 3vw, 34px);
}

.skusing-article__content h3 {
	font-size: clamp(19px, 2.2vw, 24px);
}

/* home.css resets every margin to 0, so the article body has to restate its own
   block rhythm — otherwise the whole post renders as one unbroken slab of text. */
.skusing-article__content p {
	margin: 0 0 1.15em;
	color: var(--ink-soft);
}

.skusing-article__content ul,
.skusing-article__content ol {
	margin: 0 0 1.15em;
	padding-left: 1.4em;
	color: var(--ink-soft);
}

.skusing-article__content li {
	margin-bottom: .5em;
	list-style: disc;
}

.skusing-article__content ol li {
	list-style: decimal;
}

.skusing-article__content li::marker {
	color: var(--coral);
}

.skusing-article__content blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 22px;
	border-left: 2px solid var(--coral);
	color: var(--ink);
	font-family: var(--disp);
	font-size: 1.1em;
	line-height: 1.4;
}

.skusing-article__content blockquote p {
	margin: 0;
	color: inherit;
}

.skusing-article__content strong,
.skusing-article__content b {
	color: var(--ink);
	font-weight: 600;
}

.skusing-article__content figure {
	margin: 1.8em 0;
}

.skusing-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.skusing-article__content a {
	color: var(--coral);
	font-weight: 800;
}

.skusing-empty {
	padding: 38px;
	border: 1px solid var(--news-border);
	border-radius: 8px;
	background: var(--news-card);
}

.skusing-empty h2 {
	margin: 0;
}

.skusing-404 {
	min-height: 68vh;
	display: flex;
	align-items: center;
}

.skusing-404 .cta {
	margin-top: 28px;
}

@media (max-width: 900px) {
	.skusing-news-grid,
	.skusing-news-grid--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.skusing-news-grid,
	.skusing-news-grid--compact {
		grid-template-columns: 1fr;
	}

	.skusing-news-card__body {
		padding: 20px;
	}
}

@media (max-width: 620px) {
	.phero {
		padding: 120px 0 44px;
	}
}
