.sc-news-archive {
	padding: clamp(1.2rem, 2.1vw, 2rem) 0 clamp(2rem, 3vw, 3rem);
}

.sc-news-archive__header {
	margin-bottom: 1.1rem;
}

.sc-news-archive__header h1 {
	margin: 0;
	font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
	font-size: clamp(24px, 2.2vw, 36px);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

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

.sc-news-tile {
	margin: 0;
}

.sc-news-tile__link {
	display: block;
	border: 1px solid #e4e1dc;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	color: #151515;
	height: 100%;
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.sc-news-tile__link:hover,
.sc-news-tile__link:focus-visible {
	transform: translateY(-2px);
	border-color: #d7c8bf;
	box-shadow: 0 12px 26px rgba(15, 15, 15, 0.08);
	text-decoration: none;
}

.sc-news-tile__media {
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #f3f1ed;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sc-news-tile__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sc-news-tile__placeholder {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6a625c;
}

.sc-news-tile__title {
	margin: 0;
	padding: 0.82rem 0.9rem 1rem;
	font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
	font-size: clamp(16px, 1.05vw, 19px);
	line-height: 1.35;
	color: inherit;
}

.sc-news-pagination {
	margin-top: 1.2rem;
}

.sc-news-empty {
	margin: 0;
	padding: 1rem 0;
	color: #474747;
}

.sc-news-single-wrap {
	padding: clamp(1.2rem, 2.2vw, 2.1rem) 0 clamp(2rem, 3vw, 3.2rem);
}

.sc-news-single {
	max-width: min(980px, 100%);
	margin: 0 auto;
	display: grid;
	gap: 1rem;
}

.sc-news-single__title {
	margin: 0;
	font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
	font-size: clamp(26px, 3vw, 44px);
	line-height: 1.12;
	letter-spacing: 0.03em;
}

.sc-news-single__featured-image-wrap {
	margin: 0;
}

.sc-news-single__featured-image {
	width: 100%;
	height: auto;
	display: block;
}

.sc-news-single__content {
	font-size: clamp(16px, 1.05vw, 18px);
	line-height: 1.72;
	color: #1b1b1b;
}

.sc-news-single__content > *:first-child {
	margin-top: 0;
}

.sc-news-single__content img {
	max-width: 100%;
	height: auto;
}

.sc-news-single__assets {
	margin-top: 1rem;
	border-top: 1px solid #dfdad4;
	padding-top: 1rem;
}

.sc-news-single__assets h2 {
	margin: 0 0 0.55rem;
	font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sc-news-single__assets ul {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.35rem;
}

.sc-news-single__assets code {
	display: inline-block;
	max-width: 100%;
	overflow-wrap: anywhere;
	font-size: 13px;
}

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

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

	.sc-news-tile__title {
		font-size: 17px;
	}
}
