/* News list page (is_home) */
.p-news-list__header .c-page-title__label {
	margin: 0 0 12px;
	color: #2b4f5e;
	font-family: "Caveat Brush", cursive;
	font-size: 56px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.04;
	text-transform: none;
}

.p-news-list__body {
	padding-bottom: 70px;
}

.p-news-list__body .l-container {
	width: min(100% - 40px, 720px);
}

.p-news-list__items {
	display: grid;
	gap: 18px;
}

.p-news-list__item {
	display: grid;
	grid-template-columns: 148px minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	min-height: 85px;
	padding: 20px 32px;
	border: 1px solid #c7d6e4;
	border-radius: 16px;
	background-color: #fff;
	position: relative;
	transition: border-color 0.22s ease, background-color 0.22s ease;
}

.p-news-list__date {
	margin: 0;
	color: #6f8397;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.p-news-list__item-title {
	margin: 0;
	color: #2b4f5e;
	font-size: 18.4px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.p-news-list__item:hover,
.p-news-list__item:focus-within {
	border-color: #9eb3c7;
	background-color: #fcfdff;
}

.p-news-list__item:hover .p-news-list__item-title,
.p-news-list__item:focus-within .p-news-list__item-title {
	color: #2b4f5e;
}

.p-news-list__item > :not(.p-news-list__card-link) {
	position: relative;
	z-index: 1;
}

.p-news-list__card-link {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
}

.p-news-list__pagination .nav-links {
	justify-content: center;
}

@media (max-width: 1200px) {
	.p-news-list__header .c-page-title__label {
		font-size: 48px;
	}

	.p-news-list__item {
		grid-template-columns: 136px minmax(0, 1fr);
		gap: 20px;
		padding: 18px 24px;
	}

	.p-news-list__date {
		font-size: 14px;
	}

	.p-news-list__item-title {
		font-size: 17px;
	}
}

@media (max-width: 900px) {
	.p-news-list__header .c-page-title__label {
		font-size: 40px;
	}

	.p-news-list__item {
		grid-template-columns: 1fr;
		align-items: flex-start;
		gap: 12px;
		min-height: 0;
		padding: 20px 22px;
		border-radius: 14px;
	}

	.p-news-list__date {
		font-size: 13.6px;
	}

	.p-news-list__item-title {
		font-size: 16.8px;
		line-height: 1.5;
	}
}

@media (max-width: 480px) {
	.p-news-list__body .l-container {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 720px);
	}

	.p-news-list__header .c-page-title__label {
		font-size: 36px;
	}

	.p-news-list__items {
		gap: 14px;
	}

	.p-news-list__item {
		padding: 16px;
	}
}
