.mal-home-news {
	--mal-news-bg: var(--mal-surface, #141418);
	--mal-news-text: var(--mal-text, #f3f3f5);
	--mal-news-muted: var(--mal-text-muted, #a0a0ab);
	--mal-news-brand: var(--mal-brand, #0085ca);
	--mal-news-neon: var(--mal-neon, #ff2d95);
	--mal-news-border: var(--mal-border, #2a2a32);

	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0.5rem;
	margin-bottom: 2.5rem;
	padding: 2rem clamp(1rem, 3vw, 2rem) 2.25rem;
	box-sizing: border-box;
	background: var(--mal-news-bg);
	color: var(--mal-news-text);
	font-family: var(--mal-font-body, Figtree, system-ui, sans-serif);
}

.mal-home-news__inner {
	max-width: none;
	width: 100%;
	margin: 0;
}

.mal-home-news__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	margin: 0 0 1.5rem;
}

.mal-home-news__intro {
	flex: 1 1 16rem;
	min-width: 0;
}

.mal-home-news__title {
	margin: 0;
	font-family: var(--mal-font-display, "Bodoni Moda", Georgia, serif);
	font-weight: 600;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	line-height: 1.15;
	color: var(--mal-news-text);
}

.mal-home-news__subhead {
	margin: 0.4rem 0 0;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--mal-news-muted);
}

.mal-home-news__view-all {
	flex: 0 0 auto;
	font-family: var(--mal-font-ui, Syne, system-ui, sans-serif);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--mal-news-brand);
}

.mal-home-news__view-all:hover,
.mal-home-news__view-all:focus-visible {
	color: var(--mal-news-text);
	outline: none;
}

.mal-home-news__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem 2.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.mal-home-news__grid {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	}
}

.mal-home-news__featured {
	min-width: 0;
}

.mal-home-news__featured-media {
	display: block;
	margin: 0 0 1rem;
	line-height: 0;
	text-decoration: none;
}

.mal-home-news__featured-media img {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(52vh, 28rem);
	object-fit: cover;
	object-position: center;
}

.mal-home-news__featured-title {
	margin: 0 0 0.35rem;
	font-family: var(--mal-font-display, "Bodoni Moda", Georgia, serif);
	font-weight: 600;
	font-size: clamp(1.25rem, 2.2vw, 1.65rem);
	line-height: 1.25;
}

.mal-home-news__featured-title a {
	color: var(--mal-news-brand);
	text-decoration: none;
}

.mal-home-news__featured-title a:hover,
.mal-home-news__featured-title a:focus-visible {
	color: var(--mal-news-text);
	outline: none;
}

.mal-home-news__featured-date {
	display: block;
	margin: 0 0 0.65rem;
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	color: var(--mal-news-muted);
}

.mal-home-news__featured-excerpt {
	margin: 0 0 1rem;
	max-width: 40rem;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--mal-news-text);
}

.mal-home-news__read-more {
	display: inline-block;
	font-family: var(--mal-font-ui, Syne, system-ui, sans-serif);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--mal-news-neon);
}

.mal-home-news__read-more:hover,
.mal-home-news__read-more:focus-visible {
	color: var(--mal-news-text);
	outline: none;
}

.mal-home-news__sidebar {
	min-width: 0;
}

.mal-home-news__sidebar-label {
	margin: 0 0 0.85rem;
	font-family: var(--mal-font-ui, Syne, system-ui, sans-serif);
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mal-news-muted);
}

.mal-home-news__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mal-home-news__item {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	padding: 0.85rem 0;
	border-top: 1px solid var(--mal-news-border);
}

.mal-home-news__item:last-child {
	border-bottom: 1px solid var(--mal-news-border);
}

.mal-home-news__thumb {
	display: block;
	width: 4.5rem;
	height: 4.5rem;
	overflow: hidden;
	line-height: 0;
	text-decoration: none;
	background: var(--mal-bg, #0b0b0d);
}

.mal-home-news__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mal-home-news__item-title {
	margin: 0;
	font-family: var(--mal-font-ui, Syne, system-ui, sans-serif);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
}

.mal-home-news__item-title a {
	color: var(--mal-news-brand);
	text-decoration: none;
}

.mal-home-news__item-title a:hover,
.mal-home-news__item-title a:focus-visible {
	color: var(--mal-news-text);
	outline: none;
}

.mal-home-news__empty {
	margin: 0;
	color: var(--mal-news-muted);
}
