/**
 * Single Hebahan — Islamic style.
 * Palette: deep green, gold, cream.
 * Layout: portrait image → title block → countdown → info + content.
 */

:root {
	--hki-green: #1d6f42;
	--hki-green-dark: #155a36;
	--hki-gold: #d4a843;
	--hki-gold-soft: #f5e7c0;
	--hki-cream: #fdfcf6;
	--hki-text: #2c2620;
	--hki-muted: #7d7468;
	--hki-border: #e8e0cf;
}

.hk-single--islamic {
	font-family: 'Poppins', system-ui, sans-serif;
	color: var(--hki-text);
	background: var(--hki-cream);
	max-width: 680px;
	margin: 0 auto;
	padding: 0 0 60px;
	line-height: 1.65;
}

/* ── Portrait hero image ── */
.hk-single--islamic .hk-hero {
	width: 100%;
	aspect-ratio: 3 / 4;
	max-height: 85vh;
	overflow: hidden;
	background: var(--hki-green-dark);
}
.hk-single--islamic .hk-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.hk-single--islamic .hk-hero--no-image {
	background: linear-gradient(135deg, var(--hki-green), var(--hki-green-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
}
.hk-single--islamic .hk-hero__pattern {
	width: 100%; height: 100%;
	background-image: radial-gradient(circle at 30% 30%, rgba(212,168,67,0.15) 0%, transparent 50%),
	                  radial-gradient(circle at 70% 70%, rgba(212,168,67,0.10) 0%, transparent 50%);
}

/* ── Title block (between image and countdown) ── */
.hk-single--islamic .hk-title-block {
	padding: 24px 20px 20px;
	background: #fff;
	border-bottom: 0.5px solid var(--hki-border);
}
.hk-single--islamic .hk-title-block__cat { margin-bottom: 10px; }
.hk-single--islamic .hk-title-block__chip {
	display: inline-block;
	padding: 4px 14px;
	background: var(--hki-gold-soft);
	color: var(--hki-green-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 999px;
	border: 1px solid var(--hki-gold);
}
.hk-single--islamic .hk-title-block__title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--hki-green-dark);
	margin: 0 0 14px;
	letter-spacing: -0.02em;
}
.hk-single--islamic .hk-title-block__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--hki-muted);
}
.hk-single--islamic .hk-title-block__sep { opacity: 0.4; }
.hk-single--islamic .hk-title-block__date,
.hk-single--islamic .hk-title-block__time,
.hk-single--islamic .hk-title-block__duration { color: var(--hki-text); }

/* ── Countdown ── */
.hk-single--islamic .hk-countdown {
	background: linear-gradient(135deg, var(--hki-gold-soft), #fff8e6);
	border-top: 1px solid var(--hki-gold);
	border-bottom: 1px solid var(--hki-gold);
	padding: 20px 20px;
	text-align: center;
}
.hk-single--islamic .hk-countdown__title {
	font-size: 11px;
	font-weight: 700;
	color: var(--hki-green-dark);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.hk-single--islamic .hk-countdown__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.hk-single--islamic .hk-countdown__cell {
	background: #fff;
	border-radius: 12px;
	padding: 14px 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hk-single--islamic .hk-countdown__num {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: var(--hki-green);
	line-height: 1;
	font-feature-settings: 'tnum';
}
.hk-single--islamic .hk-countdown__label {
	display: block;
	font-size: 10px;
	font-weight: 600;
	color: var(--hki-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 5px;
}

/* ── Body: info + content stacked ── */
.hk-single--islamic .hk-body {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Info aside */
.hk-single--islamic .hk-info {
	background: #fff;
	padding: 20px;
	border-bottom: 0.5px solid var(--hki-border);
}
.hk-single--islamic .hk-info__heading {
	font-size: 13px;
	font-weight: 700;
	color: var(--hki-green);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--hki-gold);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.hk-single--islamic .hk-info__row {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 0.5px solid var(--hki-border);
}
.hk-single--islamic .hk-info__row:last-child { border-bottom: none; }
.hk-single--islamic .hk-info__icon {
	width: 34px; height: 34px;
	background: var(--hki-gold-soft);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}
.hk-single--islamic .hk-info__label {
	font-size: 10px;
	font-weight: 600;
	color: var(--hki-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}
.hk-single--islamic .hk-info__value {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--hki-text);
	word-break: break-word;
}

/* Content */
.hk-single--islamic .hk-content {
	padding: 20px;
	background: var(--hki-cream);
}
.hk-single--islamic .hk-content__heading {
	font-size: 15px;
	font-weight: 700;
	color: var(--hki-green);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--hki-gold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.hk-single--islamic .hk-content__body { font-size: 15px; line-height: 1.75; }
.hk-single--islamic .hk-content__body p { margin: 0 0 14px; }

/* Foot */
.hk-single--islamic .hk-foot { padding: 20px; text-align: center; }
.hk-single--islamic .hk-back {
	color: var(--hki-green);
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
}
.hk-single--islamic .hk-back:hover { color: var(--hki-gold); }
