/* 汎用アーカイブ一覧（archive.html / index.html）。 */

.archive-list .wp-block-post-template {
	margin: 0;
	gap: 40px 24px;
}
.archive-list .wp-block-post-template > li {
	list-style: none;
	display: flex;
	flex-direction: column;
}

/* アイキャッチ */
.archive-list .wp-block-post-featured-image {
	margin: 0 0 14px;
	overflow: hidden;
	background: color-mix(in srgb, var(--wp--preset--color--brand-primary, #002f61) 4%, #fff);
}
.archive-list .wp-block-post-featured-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* タイトル・抜粋 */
.archive-list .wp-block-post-title {
	font-family: var(--wp--custom--brand-heading);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	margin: 0 0 8px;
}
.archive-list .wp-block-post-title a {
	color: var(--aureate, #b89766);
	text-decoration: none;
}
.archive-list .wp-block-post-title a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}
.archive-list .wp-block-post-excerpt {
	margin: 0;
}
.archive-list .wp-block-post-excerpt__excerpt {
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 13px;
	line-height: 1.75;
	color: #444;
}
.archive-list .wp-block-post-excerpt__more-text {
	display: none;
}

/* ページネーション */
.archive-list .wp-block-query-pagination {
	margin-top: clamp(32px, 5vw, 56px);
	gap: 4px 8px;
	align-items: center;
}
.archive-list .wp-block-query-pagination a,
.archive-list .wp-block-query-pagination .page-numbers {
	font-family: var(--wp--custom--brand-ui, var(--wp--custom--brand-body));
	font-size: 13px;
	letter-spacing: 0.04em;
	color: var(--aureate, #b89766);
	text-decoration: none;
	padding: 6px 10px;
}
.archive-list .wp-block-query-pagination .page-numbers.current {
	font-weight: 700;
	color: var(--text, #111);
}
