.hero-news {
	padding-bottom: var(--space-6);
}
.hero-visual-news {
	min-height: 230px;
}
.hero-visual-entity-alt {
	box-shadow:
		0 0 40px rgba(0, 0, 0, 0.9),
		0 0 40px rgba(255, 75, 92, 0.45);
}
.hero-visual-hud-news::before {
	content: "NEWS FEED LINKED";
}
.hero-visual-hud-news::after {
	content: "Art Mosaicly";
}
.news-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr);
	gap: var(--space-6);
}
@media (min-width: 992px) {
	.news-layout {
		grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
	}
}
.news-main {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}
.news-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}
.news-article-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--space-3);
}
@media (min-width: 768px) {
	.news-article-body {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.25fr);
	}
}
.news-figure {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border-subtle);
	background: rgba(3, 4, 8, 0.9);
}
.news-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-list {
	margin-left: 1.2rem;
	margin-bottom: var(--space-3);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
}
.news-list li {
	margin-bottom: 0.35rem;
	list-style: disc;
}
.news-article-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	margin-top: var(--space-3);
	padding-top: var(--space-3);
	border-top: 1px solid var(--color-border-subtle);
}
.sidebar-title {
	font-size: var(--text-md);
	margin-bottom: var(--space-3);
}
.stacked-list-block > .stacked-list {
	margin-top: var(--space-2);
}
.table-wrapper {
	width: 100%;
	overflow-x: auto;
	border-radius: var(--radius-md);
}
.table-wrapper::-webkit-scrollbar {
	height: 6px;
}
.table-wrapper::-webkit-scrollbar-thumb {
	background: var(--color-neutral-700);
	border-radius: 999px;
}
.pill-nav {
	margin-top: var(--space-3);
}
.pill-nav-item[aria-pressed="true"],
.pill-nav-item[data-active="true"] {
	border-color: rgba(123, 255, 74, 0.7);
	color: var(--color-accent-strong);
	box-shadow: 0 0 16px rgba(123, 255, 74, 0.35);
}
.news-article {
	transition:
		transform var(--transition-fast),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}
.news-article:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-strong);
}
