.dm-news__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--dm-space-3);
	margin-bottom: var(--dm-space-4);
}

.dm-news .dm-section-title {
	margin: 0;
}

.dm-news__all {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 600;
	color: var(--dm-text-secondary);
	white-space: nowrap;
}

.dm-news__all:hover {
	color: var(--dm-brand-bright);
}

.dm-news__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-news__item {
	display: grid;
	grid-template-columns: minmax(5.5rem, 7.5rem) minmax(0, 1fr);
	gap: var(--dm-space-4);
	padding: var(--dm-space-3) 0;
	border-bottom: 1px solid var(--dm-border);
}

.dm-news__item:last-child {
	border-bottom: 0;
}

.dm-news__date {
	font-size: 13px;
	color: var(--dm-text-muted);
	line-height: 1.4;
}

.dm-news__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.dm-news__title a {
	color: var(--dm-text);
}

.dm-news__item:hover .dm-news__title a,
.dm-news__title a:hover {
	color: var(--dm-brand-bright);
}

.dm-news__meta {
	display: flex;
	align-items: center;
	gap: var(--dm-space-2);
	margin: 6px 0 0;
	font-size: 12px;
	color: var(--dm-text-muted);
}

.dm-news__badge {
	display: inline-flex;
	align-items: center;
	min-height: 18px;
	padding: 0 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dm-news-accent, var(--dm-amber));
	background: color-mix(in srgb, var(--dm-news-accent, var(--dm-amber)) 16%, transparent);
	border-radius: var(--dm-radius-pill);
}

@media (max-width: 479px) {
	.dm-news__item {
		grid-template-columns: minmax(0, 1fr);
		gap: 6px;
	}
}
