/* Haunted Hatchlings Care Guides — fun but creepy 👻 */
@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@500;600;700&display=swap');

.hhcg-guide {
	font-family: Arial, sans-serif;
	color: #222;
	line-height: 1.6;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 16px;
}

/* ---- Hero ---- */

.hhcg-hero {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: stretch;
	margin-bottom: 32px;
}

.hhcg-hero-media {
	flex: 1 1 320px;
	min-height: 300px;
	background: #14101c;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(197, 0, 233, 0.35);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 40px rgba(47, 179, 45, 0.18);
}

.hhcg-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-height: 600px;
}

.hhcg-card {
	flex: 1 1 320px;
	border-radius: 22px;
	padding: 28px;
	background: linear-gradient(160deg, #241b30 0%, #16101f 100%);
	border: 1px solid rgba(197, 0, 233, 0.35);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 45px rgba(197, 0, 233, 0.22);
}

.hhcg-badge {
	display: inline-block;
	background: #0b070f;
	color: #2fb32d;
	padding: 6px 14px;
	border-radius: 999px;
	font-family: 'Grenze Gotisch', Georgia, serif;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 14px;
	border: 1px solid #2fb32d;
	box-shadow: 0 0 12px rgba(47, 179, 45, 0.45);
}

.hhcg-card .hhcg-title {
	margin: 0;
	font-family: 'Grenze Gotisch', Georgia, serif;
	font-size: 44px;
	line-height: 1.05;
	color: #d75cff;
	text-shadow: 0 0 22px rgba(197, 0, 233, 0.55);
}

.hhcg-species {
	margin: 8px 0 24px;
	font-size: 18px;
	color: #b6a7cc;
}

.hhcg-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hhcg-stat {
	background: #0b070f;
	border: 1px solid rgba(197, 0, 233, 0.4);
	border-radius: 14px;
	padding: 14px;
}

.hhcg-stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #9d8fb5;
}

.hhcg-stat-value {
	display: block;
	font-size: 20px;
	color: #43e33f;
}

/* ---- Sections ---- */

.hhcg-section h2 {
	font-family: 'Grenze Gotisch', Georgia, serif;
	font-size: 30px;
	color: #3d1a63;
	margin: 36px 0 10px;
	letter-spacing: 0.5px;
}

.hhcg-section h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	margin-top: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #2fb32d, #c500e9);
}

.hhcg-section ul li::marker {
	color: #8b31c9;
}

/* ---- Archive grid ---- */

.hhcg-archive {
	max-width: 1100px;
	margin: 0 auto;
	padding: 24px 16px 48px;
	font-family: Arial, sans-serif;
}

.hhcg-archive-title {
	font-family: 'Grenze Gotisch', Georgia, serif;
	font-size: 44px;
	color: #3d1a63;
	margin-bottom: 24px;
}

.hhcg-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.hhcg-archive-card {
	display: block;
	text-decoration: none;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(160deg, #241b30 0%, #16101f 100%);
	border: 1px solid rgba(197, 0, 233, 0.35);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hhcg-archive-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 34px rgba(197, 0, 233, 0.35);
}

.hhcg-archive-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.hhcg-archive-card-body {
	padding: 16px 18px 20px;
}

.hhcg-archive-card-title {
	font-family: 'Grenze Gotisch', Georgia, serif;
	font-size: 26px;
	line-height: 1.1;
	color: #d75cff;
	margin: 0;
}

.hhcg-archive-card-species {
	font-size: 14px;
	font-style: italic;
	color: #b6a7cc;
	margin: 6px 0 0;
}

/* ---- Small screens ---- */

@media (max-width: 480px) {
	.hhcg-card .hhcg-title {
		font-size: 34px;
	}
	.hhcg-stats {
		grid-template-columns: 1fr;
	}
}
