@charset "UTF-8";

.p-childHeroTitle {
	gap: 0;
}

.p-childHeroTitle [lang="en"] {
	display: inline-block;
	width: auto;
	height: 38px;
}

.p-reportContainer + .p-reportContainer {
	margin-top: 72px;
}

.p-reportListTitle {
	font-size: 18px;
	line-height: 1.75;
}

.p-reportList {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(auto, 1fr);
	gap: 24px;
	list-style: none;
}

.p-reportListItemDate {
	margin-top: 16px;
	font-size: 12px;
	color: #1a1a40;
	line-height: 1.75;
	transition: var(--hover);
}

.p-reportListItemText {
	margin-top: 4px;
	line-height: 1.5;
}

@media screen and (min-width: 768px) {
	.p-reportList {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	.p-childHeroTitle {
		gap: 4px;
	}

	.p-childHeroTitle [lang="en"] {
		display: inline-block;
		width: auto;
		height: 60px;
	}

	.p-reportContainer + .p-reportContainer {
		margin-top: 80px;
	}

	.p-reportList {
		margin-top: 16px;
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}

	.p-reportListTitle {
		font-size: 24px;
	}

	.p-reportListItemDate {
		margin-top: 16px;
		font-size: 14px;
	}

	.p-reportListItemText {
		margin-top: 8px;
		font-size: 16px;
	}
}

.p-reportListItemImage {
	aspect-ratio: 358 / 220;
	width: 100%;
	overflow: hidden;
}

.p-reportListItemImageSrc {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.p-reportListLink {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.p-reportListItemImage {
	overflow: hidden;
	aspect-ratio: 358 / 220;
}

.p-reportListItemImageSrc {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.p-reportListItemText {
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.5;
	color: #1a1a40;
	display: inline;
	background-image: linear-gradient(var(--color-bg-link), var(--color-bg-link));
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: background-size 0.4s, color 0.4s;
	padding-bottom: 2px;
}

@media (hover: hover) {
	.p-reportListLink:hover .p-reportListItemImageSrc {
		transform: scale(1.05);
	}

	.p-reportListLink:hover .p-reportListItemDate {
		color: var(--color-bg-link);
	}

	.p-reportListLink:hover .p-reportListItemText {
		color: var(--color-bg-link);
		background-size: 100% 1px;
	}
}

.p-reportListSection + .p-reportListSection {
	margin-top: 72px;
	background: #fff;
}
