.pgd-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}

.pgd-card {
	background: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pgd-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.pgd-card-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.pgd-card-cover {
	aspect-ratio: 3 / 4;
	background: linear-gradient(135deg, #f3f1eb, #ddd7ca);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pgd-card-cover img,
.pgd-single-cover-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pgd-card-title {
	margin: 0;
	padding: 16px;
	font-size: 1.05rem;
	line-height: 1.4;
}

.pgd-card-placeholder {
	padding: 20px;
	text-align: center;
	font-weight: 600;
	color: #5d564a;
}

.pgd-card-placeholder-large {
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pgd-single-template {
	max-width: 1100px;
	margin: 0 auto;
	padding: 32px 20px;
}

.pgd-single-book {
	display: grid;
	grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.pgd-single-cover {
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #f3f1eb, #ddd7ca);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.pgd-single-title {
	margin-top: 0;
	margin-bottom: 18px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
}

.pgd-single-description {
	margin-bottom: 28px;
}

.pgd-download-box {
	padding: 24px;
	background: #f7f2e8;
	border: 1px solid #e5d6b8;
	border-radius: 18px;
}

.pgd-download-box h2 {
	margin-top: 0;
	margin-bottom: 12px;
}

.pgd-download-button {
	display: inline-block;
	padding: 14px 22px;
	background: #1e5d4f;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	font-weight: 700;
}

.pgd-download-locked {
	margin: 0;
	padding: 14px 18px;
	background: #fff0f0;
	border: 1px solid #e6b9b9;
	border-radius: 12px;
	color: #8a1f1f;
	font-weight: 700;
}

.pgd-download-note,
.pgd-empty {
	color: #5c564d;
}

@media (max-width: 767px) {
	.pgd-single-book {
		grid-template-columns: 1fr;
	}

	.pgd-single-cover {
		max-width: 360px;
		margin: 0 auto;
	}
}
