.newsroom-archive__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 6rem;
	text-align: center;
}

.newsroom-breadcrumb {
	display: none;
}

.newsroom-archive__title {
	max-width: 100%;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.15;
	color: #252a31;
}

.newsroom-archive.page-section {
	padding-top: clamp(5.75rem, 8vw, 7.25rem);
}

.newsroom-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.newsroom-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
}

.newsroom-card__image {
	display: block;
	background: #e9edf2;
	text-decoration: none;
}

.newsroom-card__image img,
.newsroom-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.newsroom-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.newsroom-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	align-items: center;
	margin-bottom: .75rem;
	color: var(--color-muted);
	font-size: .9rem;
}

.newsroom-meta a {
	color: var(--color-accent);
	text-decoration: none;
}

.newsroom-card h2 {
	margin: 0 0 .75rem;
	font-size: 1.35rem;
	line-height: 1.25;
}

.newsroom-card h2 a {
	color: #252a31;
	text-decoration: none;
}

.newsroom-read-more,
.newsroom-kicker {
	text-decoration: none;
}

.newsroom-card p {
	margin: 0 0 1.25rem;
	color: var(--color-muted);
}

.newsroom-read-more {
	margin-top: auto;
	color: var(--color-accent);
	font-weight: 700;
}

.newsroom-archive .pagination {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.newsroom-archive .pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 47px;
	padding: 10px 16px;
	margin-left: -1px;
	color: var(--color-accent);
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid #dddddd;
}

.newsroom-archive .pagination .page-numbers:first-child {
	margin-left: 0;
	border-radius: 4px 0 0 4px;
}

.newsroom-archive .pagination .page-numbers:last-child {
	border-radius: 0 4px 4px 0;
}

.newsroom-archive .pagination .page-numbers.current,
.newsroom-archive .pagination .page-numbers:hover,
.newsroom-archive .pagination .page-numbers:focus-visible {
	color: #333333;
	background: #f8f9fb;
}

.newsroom-single__header {
	margin-bottom: 2rem;
}

.newsroom-single__header h1 {
	font-size: 2rem;
}

.newsroom-kicker {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--color-accent);
	font-size: .85rem;
	font-weight: 800;
	text-transform: uppercase;
}

.newsroom-single__image {
	margin: 0 0 2rem;
	background: #e9edf2;
}

.newsroom-single__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius);
}

.newsroom-single__content {
	margin-bottom: 3rem;
}

.newsroom-post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
}

.newsroom-post-nav a {
	display: block;
	padding: 1rem;
	color: #333333;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.newsroom-post-nav span {
	display: block;
	margin-bottom: .35rem;
	color: var(--color-muted);
	font-size: .85rem;
}

.newsroom-post-nav__item--next {
	text-align: right;
}

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

@media (max-width: 560px) {
	.newsroom-archive__header {
		margin-bottom: 3.5rem;
	}

	.newsroom-archive__title {
		font-size: 3rem;
	}

	.newsroom-grid,
	.newsroom-post-nav {
		grid-template-columns: 1fr;
	}

	.newsroom-post-nav__item--next {
		text-align: left;
	}
}
