@charset "UTF-8";
/*
 * 「メンバーのひとりごと」(/blog/) の投稿一覧。
 * トップページ note セクションのカードと同じ意匠に揃えている。
 */

.s753-bloglist {
	padding-bottom: 80px;
}

.s753-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 28px;
	margin: 0 0 64px;
	padding: 0;
	list-style: none;
}

/*
 * 親テーマの `ul > li { list-style: disc }` と `li { padding: 5px 0 }` を打ち消す。
 * ul 側の list-style:none では消えない（子セレクタの指定が継承に勝つ）。
 */
.s753-card {
	margin: 0;
	padding: 0;
	list-style: none;
}

.s753-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid #ececec;
	border-radius: 6px;
	background: #fff;
	text-decoration: none;
	box-shadow: none;
	transition: box-shadow .2s ease, transform .2s ease;
}

.s753-card__link:hover,
.s753-card__link:focus {
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .09);
	transform: translateY(-2px);
}

.s753-card__thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f4f4f4;
}

.s753-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.s753-card__link:hover .s753-card__thumb img {
	transform: scale(1.04);
}

/* アイキャッチが無い投稿用のプレースホルダ */
.s753-card__noimage {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #c9c9c9;
	font-size: .95rem;
	letter-spacing: .18em;
}

.s753-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 20px 24px;
}

.s753-card__date {
	display: block;
	margin-bottom: .6em;
	color: #999;
	font-size: .75rem;
	letter-spacing: .05em;
}

.s753-card__title {
	margin: 0 0 .7em;
	padding: 0;
	border: none;
	height: auto;
	color: #333;
	font-size: 1.02rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: left;
}

.s753-card__excerpt {
	margin: 0;
	color: #666;
	font-size: .85rem;
	line-height: 1.9;
	text-align: left;
}

.s753-cards__empty {
	text-align: center;
	padding: 40px 0 80px;
}

/* ===== ページ送り ===== */

.s753-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.s753-pagination li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.s753-pagination .page-numbers {
	display: inline-block;
	min-width: 2.6em;
	padding: .6em .9em;
	border: 1px solid #e4e4e4;
	border-radius: 4px;
	color: #555;
	font-size: .9rem;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	transition: background-color .2s ease;
}

.s753-pagination a.page-numbers:hover {
	background: #fafafa;
	text-decoration: none;
}

.s753-pagination .page-numbers.current {
	background: #ffcccc;
	border-color: #ffcccc;
	color: #333;
}

.s753-pagination .page-numbers.dots {
	border-color: transparent;
}

/* ===== レスポンシブ ===== */

@media (max-width: 1023px) {
	.s753-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 22px;
	}
}

@media (max-width: 599px) {
	.s753-cards {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 48px;
	}

	.s753-bloglist {
		padding-bottom: 50px;
	}
}
