/* ── Filter + Search bar ──────────────────────────────── */
/* 15.5pt = 20.67px, no stroke */
.Blog-Controls {
	display: flex;
	gap: 0.8rem;
	justify-content: center;
	align-items: center;
	margin-bottom: 2.2rem;
	font-size: 20.67px;
}
.Blog-Filter {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: #ffffff;
	color: #000;
	border-radius: 6px;
	padding: 0.3rem 0.9rem;
	cursor: pointer;
	font-size: 20.67px;
	font-weight: 400;
	user-select: none;
}
.Filter-Arrow { font-size: 1.1em; line-height: 1; }
.Blog-Search {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: #ffffff;
	color: #000;
	border-radius: 6px;
	padding: 0.3rem 0.9rem;
	font-size: 20.67px;
}
.Search-Input {
	border: none;
	outline: none;
	background: transparent;
	font-family: 'Montserrat', sans-serif;
	font-size: 20.67px;
	width: 120px;
	color: #000;
}
.Search-Icon { color: #555; font-size: 1em; }

/* ── Featured article ─────────────────────────────────── */
.Blog-Featured {
	margin-bottom: 2.5rem;
}
.Blog-Featured-Link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.Blog-Featured-Img {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #245393;
	border-radius: 10px;
	margin-bottom: 0.9rem;
}

/* ── Shared article text styles ───────────────────────── */
/* Article Title: 22pt = 29.33px, normal, 0.5mm stroke = 1.89px */
.Article-Title {
	font-size: 29.33px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 0.2rem;
	-webkit-text-stroke: 1.89px currentColor;
	color: #ffffff;
}
/* Article Category: 12pt = 16px, normal, 0.2mm stroke = 0.76px */
.Article-Category {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 0.3rem;
	-webkit-text-stroke: 0.76px currentColor;
	color: #ffffff;
	opacity: 0.85;
}
/* Article Summary: 18pt = 24px, normal, 0.2mm stroke = 0.76px */
.Article-Summary {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0;
	-webkit-text-stroke: 0.76px currentColor;
	color: #ffffff;
}

/* ── Recent articles (2-up) ───────────────────────────── */
.Blog-Recent {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 3rem;
}
.Blog-Card a {
	display: block;
	text-decoration: none;
	color: inherit;
}
.Blog-Card-Img {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #4a3a9a;
	border-radius: 8px;
	margin-bottom: 0.7rem;
}

/* ── Blog History heading ─────────────────────────────── */
/* 40pt = 53.33px, bold, no stroke */
.Blog-History-Title {
	font-size: 53.33px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 2rem;
	letter-spacing: 0.03em;
	-webkit-text-stroke: 0;
}

/* ── Blog History grid ────────────────────────────────── */
.Blog-History {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem 1.5rem;
	margin-bottom: 3rem;
}

/* ── Pagination ───────────────────────────────────────── */
/* 15.5pt = 20.67px, no stroke */
.Blog-Pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 20.67px;
	flex-wrap: wrap;
}
.Page-Btn,
.Page-Num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 20.67px;
	font-weight: 400;
	padding: 0.3rem 0.75rem;
	border-radius: 6px;
	border: 2px solid rgba(255,255,255,0.35);
	transition: background 0.2s, border-color 0.2s;
	min-width: 2.2rem;
	text-align: center;
}
.Page-Btn { padding: 0.3rem 1rem; }
.Page-Btn:hover,
.Page-Num:hover { background: rgba(255,255,255,0.12); }
.Page-Current {
	background: #a15904;
	border-color: #a15904;
	color: #ffffff;
}
.Page-Ellipsis {
	color: #ffffff;
	font-size: 20.67px;
	padding: 0 0.3rem;
	line-height: 1;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 600px) {
	.Blog-Recent,
	.Blog-History { grid-template-columns: 1fr; }
	.Blog-History-Title { font-size: 2.2rem; }
}