/* Portal news hub + section archive (scoped) */
.portal-news-shell {
	--bg: #f5f7fa;
	--surface: #ffffff;
	--text: #1a1a1a;
	--muted: #666;
	--gold: #b8923e;
	--border: rgba(0, 0, 0, 0.06);
	font-family: "DM Sans", system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	min-height: 50vh;
}

.portal-news-shell *,
.portal-news-shell *::before,
.portal-news-shell *::after {
	box-sizing: border-box;
}

.portal-lang-select {
	appearance: auto;
	font: inherit;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: var(--surface);
	min-width: 160px;
	cursor: pointer;
}

.portal-news-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 24px 80px;
}

.portal-news-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin: 0 0 32px;
	letter-spacing: -0.02em;
}

.portal-news-breadcrumb {
	font-size: 14px;
	color: var(--muted);
	margin: 0 0 12px;
}

.portal-news-breadcrumb a {
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
}

.portal-news-breadcrumb a:hover {
	color: var(--gold);
}

.portal-news-breadcrumb .sep {
	margin: 0 8px;
	opacity: 0.5;
}

.portal-hub-section {
	margin-bottom: 48px;
}

.portal-hub-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.portal-hub-section-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.35rem;
	margin: 0;
	letter-spacing: -0.02em;
}

.portal-hub-view-all {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	white-space: nowrap;
}

.portal-hub-view-all:hover {
	color: var(--gold);
}

.portal-hub-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.portal-hub-grid-archive {
	margin-top: 8px;
}

.portal-hub-card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border-radius: 16px;
	border: 1px solid var(--border);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	min-width: 0;
}

.portal-hub-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.portal-hub-card-image {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #e8ecf2, #f0f2f6);
	background-size: cover;
	background-position: center;
}

.portal-hub-card-body {
	padding: 14px 16px 18px;
	flex: 1;
}

.portal-hub-card-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.portal-hub-empty {
	color: var(--muted);
	margin: 0;
	font-size: 15px;
}

.portal-news-pagination ul {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 32px 0 0;
	flex-wrap: wrap;
}

.portal-news-pagination a,
.portal-dots span {
	padding: 8px 14px;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: var(--surface);
	text-decoration: none;
	color: var(--text);
	font-size: 14px;
}

.portal-news-pagination .current {
	background: #111;
	color: #fff;
	border-color: #111;
}

@media (max-width: 1024px) {
	.portal-hub-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.portal-hub-grid {
		grid-template-columns: 1fr;
	}
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}