.archive-header {
	margin: 24px 0;
	text-align: center;
}
.archive-title {
	font-size: 28px;
	font-weight: 700;
	color: #1c1c1e;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	margin: 24px 0;
}
.archive-card {
	display: block;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
}
.archive-card__img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}
.archive-card__title {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #1c1c1e;
}
.archive-card__excerpt {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: #1a1a1a;
}

.archive-pagination {
	text-align: center;
	margin: 32px 0;
}

.not-found {
	text-align: center;
	padding: 60px 0;
}
.not-found__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
}
.not-found__text {
	margin-bottom: 20px;
}
.not-found__home-link {
	display: inline-block;
	background: #458500;
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
}
