.p2p-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.p2p-item {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
	background: #fff;
}
.p2p-item:hover {
	box-shadow: 0 6px 18px rgba(0,0,0,.08);
	transform: translateY(-2px);
}
.p2p-item__cover {
	aspect-ratio: 3 / 4;
	background: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.p2p-item__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.p2p-item__cover-placeholder {
	font-weight: 700;
	font-size: 24px;
	color: #b0b0b0;
	letter-spacing: 1px;
}
.p2p-item__title {
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}
.p2p-empty {
	opacity: .7;
}
.p2p-view-pdf-button {
	display: inline-block;
	padding: 10px 18px;
	background: #2271b1;
	color: #fff !important;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
}
.p2p-view-pdf-button:hover {
	background: #135e96;
}
