/**
 * /choices/ (ID 2907 "健檢方案") — mimics original Elementor slim hero.
 * Paired with page-choices.php + hero injected via parkone_rebuild_hooks_archive_headers.
 *
 * Elementor design tokens (from _elementor_data):
 *   - Outer container: full-width, slideshow bg = banner-快速搜尋.jpg
 *   - Inner: min-height 320px, gradient overlay #1A1A1ABF (75% alpha) → #1A1A1A at 90deg
 *   - Title h1 健檢方案: white, letter-spacing 3px, text-shadow, line-height 2em
 *   - Subtitle h6 Health checkup plan: Crimson Text, white, weight 500, line-height 1.5em
 *   - Mobile subtitle: 16px
 */

/* ---------- Slim full-bleed hero ---------- */
.ph-page-hero {
	position: relative;
	min-height: 320px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}

.ph-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.2) 100%);
	pointer-events: none;
	z-index: 0;
}

.ph-page-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 24px 40px;
	box-sizing: border-box;
}

.ph-page-hero__title {
	font-family: 'DM Serif Display', 'Noto Serif TC', serif;
	font-size: 48px;
	font-weight: 400;
	letter-spacing: 3px;
	line-height: 2em;
	color: #ffffff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	margin: 0;
}

.ph-page-hero__subtitle {
	font-family: 'Crimson Text', serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: #ffffff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	margin: 0;
	letter-spacing: 1px;
}

@media (max-width: 1024px) {
	.ph-page-hero__inner {
		padding: 30px;
	}
	.ph-page-hero__title {
		font-size: 34px;
		letter-spacing: 2px;
	}
}

@media (max-width: 767px) {
	.ph-page-hero {
		min-height: 200px;
	}
	.ph-page-hero__inner {
		padding: 24px 16px;
	}
	.ph-page-hero__title {
		font-size: 26px;
	}
	.ph-page-hero__subtitle {
		font-size: 16px;
	}
}

/* ---------- Choices page body ---------- */
.choices-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 24px 120px;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.choices-page {
		padding: 24px 16px 64px;
	}
}

/* =============================================================
 * Hub sections (儀器/族群/風險/FAQ) — 2026-04-20
 * 低調設計：品牌 sage (#79895F) + 象牙 (#DFCEB4) 作 accent
 * ============================================================= */
.choices-hub {
	--hub-primary: #79895F;
	--hub-accent: #DFCEB4;
	--hub-ink: #1A1A1A;
	--hub-text: #4B4B4B;
	--hub-sub: #7E7A6E;
	--hub-card-bg: #FFFFFF;
	--hub-border: #EEE8DC;

	max-width: 1040px;
	margin: 72px auto 96px;
	padding: 0 24px;
	display: grid;
	gap: 32px;
	color: var(--hub-text);
}

.choices-hub__section {
	position: relative;
	background: var(--hub-card-bg);
	border: 1px solid var(--hub-border);
	border-radius: 10px;
	padding: 40px 44px 32px;
	box-shadow: 0 1px 14px rgba(26, 26, 26, 0.03);
	transition: box-shadow .25s ease, transform .25s ease;
}

.choices-hub__section:hover {
	box-shadow: 0 4px 22px rgba(121, 137, 95, 0.09);
}

/* Left ribbon accent */
.choices-hub__section::before {
	content: "";
	position: absolute;
	top: 30px;
	left: -1px;
	width: 3px;
	height: 42px;
	background: var(--hub-primary);
	border-radius: 0 2px 2px 0;
}

/* Per-section accent variation */
.choices-hub__section--audience::before { background: #A5B287; }
.choices-hub__section--risk::before     { background: #B08968; }
.choices-hub__section--faq::before      { background: #7A9A8F; }

.choices-hub__section h2 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--hub-ink);
	letter-spacing: 1.5px;
	margin: 0 0 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--hub-border);
}

.choices-hub__section > p {
	font-size: 0.95rem;
	line-height: 1.9;
	margin: 0 0 18px;
	color: var(--hub-text);
}

.choices-hub__section ul {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}

.choices-hub__section ul li {
	position: relative;
	padding: 11px 0 11px 24px;
	line-height: 1.75;
	font-size: 0.95rem;
	border-bottom: 1px dashed #F2EEE3;
}

.choices-hub__section ul li:last-child {
	border-bottom: none;
}

.choices-hub__section ul li::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 2px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hub-accent);
	border: 2px solid var(--hub-primary);
	box-sizing: border-box;
}

.choices-hub__section ul li strong {
	color: var(--hub-ink);
	font-weight: 600;
	margin-right: 4px;
}

/* FAQ Q&A blocks */
.choices-hub__qa {
	padding: 18px 0;
	border-bottom: 1px solid var(--hub-border);
}

.choices-hub__qa:last-of-type {
	border-bottom: none;
	padding-bottom: 8px;
}

.choices-hub__qa h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--hub-primary);
	margin: 0 0 10px;
	letter-spacing: 0.5px;
	line-height: 1.65;
}

.choices-hub__qa > p {
	position: relative;
	margin: 0;
	padding-left: 24px;
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--hub-text);
}

.choices-hub__qa > p::before {
	content: "A";
	position: absolute;
	left: 0;
	top: -2px;
	font-family: "Crimson Text", Georgia, serif;
	font-style: italic;
	font-weight: 600;
	color: var(--hub-accent);
	font-size: 1.15rem;
	line-height: 1.85;
}

/* "more" link with subtle chevron animation */
.choices-hub__more {
	display: inline-block;
	margin-top: 10px;
	padding: 4px 0;
	font-size: 0.9rem;
	color: var(--hub-primary);
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 1px;
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, padding-right .2s ease;
}

.choices-hub__more:hover {
	border-bottom-color: var(--hub-primary);
	padding-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
	.choices-hub {
		margin: 48px auto 64px;
		gap: 24px;
	}
	.choices-hub__section {
		padding: 30px 24px 24px;
		border-radius: 8px;
	}
	.choices-hub__section h2 {
		font-size: 1.2rem;
		letter-spacing: 1px;
	}
	.choices-hub__section::before {
		top: 24px;
		height: 34px;
	}
}
