/* ============================================================
   Single Case Study — Figma-aligned layout (tokens: variables.css)
   ============================================================ */

/* Page shell: outer padding around the main white surface */
.ph-case-single__shell {
	padding-top: clamp(24px, 4vw, 40px);
	padding-bottom: clamp(32px, 5vw, 56px);
}

/* ── Hero ─────────────────────────────────────────────────── */
.ph-case-hero {
	border: 1px solid var(--ph-gray-light);
    padding: 40px;
    background: var(--ph-white);
    border-radius: 40px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-top: 20px;

}


.ph-case-hero__title {
	margin: 0 0 clamp(20px, 3vw, 28px);
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: var(--ph-fw-extra);
    line-height: 1.16;
    letter-spacing: -0.025em;
    color: #1a1a1a;
}

/* Meta row: category / completion / sessions / date pills + icons */
.ph-case-hero__meta {
	list-style: none;
	margin: 0 0 clamp(24px, 3.5vw, 32px);
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	align-items: center;
}

.ph-case-hero__meta li {
	margin: 0;
	padding: 0;
}

.ph-case-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 16px 8px 14px;
	border-radius: 999px;
	background: var(--ph-green-bg);
	border: 1px solid rgba(70, 159, 16, 0.22);
	color: var(--ph-green);
}

.ph-case-hero__pill--muted {
	background: #f3f4f6;
	border-color: #e5e7eb;
	color: var(--ph-gray);
}

.ph-case-hero__pill-icon {
	display: inline-flex;
	flex-shrink: 0;
	color: inherit;
	opacity: 0.92;
}

.ph-case-hero__pill-icon svg {
	display: block;
}

.ph-case-hero__pill-label {
	font-size: 0.9rem;
	font-weight: var(--ph-fw-semi);
	line-height: 1.25;
	letter-spacing: 0.01em;
}

.ph-case-hero__expert {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 24px;
	padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
	margin-bottom: clamp(24px, 3.5vw, 32px);
	background: var(--ph-gray-bg);
	border: 1px solid #e8ecf0;
	border-radius: 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ph-case-hero__expert-main {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.ph-case-hero__expert-photo {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--ph-border);
	flex-shrink: 0;
}

.ph-case-hero__expert-photo--placeholder {
	display: block;
	min-width: 64px;
	min-height: 64px;
	background: var(--ph-gray-bg);
}

.ph-case-hero__expert-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.ph-case-hero__expert-name {
	font-size: 18px;
	font-weight: var(--ph-fw-bold);
	color: #1a1a1a;
	letter-spacing: -0.01em;
}

.ph-case-hero__expert-role {
	font-size: 14px;
	font-weight: var(--ph-fw-medium);
	color: #6b7280;
	line-height: 1.45;
}

.ph-case-hero__expert-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex-shrink: 0;
}

.ph-case-summary {
	margin-bottom: 0;
	padding: clamp(20px, 2.5vw, 24px) clamp(22px, 3vw, 28px) clamp(20px, 2.5vw, 24px) clamp(22px, 3vw, 26px);
	border-left: 4px solid var(--ph-green);
}

.ph-case-summary__text {
	margin: 0;
	font-size: 17px;
	font-weight: var(--ph-fw-medium);
	line-height: 1.62;
	color: #374151;
}

.ph-case-summary__text p {
	margin: 0 0 0.65em;
}

.ph-case-summary__text p:last-child {
	margin-bottom: 0;
}

/* ── Body sections ────────────────────────────────────────── */
.ph-case-body {
	padding-bottom: clamp(8px, 2vw, 16px);
	border-top: 1px solid #eef2f6;
	margin-top: clamp(36px, 5vw, 48px);
}

/* Disclaimer + stats row (before “The Problem”) */
.ph-case-preface {
	margin-bottom: clamp(40px, 6vw, 56px);
}

.ph-case-disclaimer {
	margin-bottom: clamp(22px, 3vw, 28px);
	padding: clamp(22px, 3vw, 28px) clamp(24px, 4vw, 36px);
	text-align: center;
	background: #f7f8fa;
	border: 1px solid #e8ecf0;
	border-radius: 20px;
}

.ph-case-disclaimer:last-child {
	margin-bottom: 0;
}

.ph-case-disclaimer__text {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.65;
    font-style: italic;
    padding: 0 30px;
	font-weight: 500;
}

.ph-case-disclaimer__text p {
	margin: 0 0 0.65em;
}

.ph-case-disclaimer__text p:last-child {
	margin-bottom: 0;
}

.ph-case-stat-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ph-case-stat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100px;
	padding: 16px 12px;
	background: var(--ph-white);
	border: 1px solid #e8ecf0;
	border-radius: 15px;
}

.ph-case-stat-card__label {
	display: block;
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: var(--ph-fw-semi);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
	line-height: 1.3;
}

.ph-case-stat-card__value {
	display: block;
	font-size: 1.3rem;
	font-weight: var(--ph-fw-bold);
	line-height: 1.35;
	color: #1a1a1a;
}

.ph-case-stat-card__value--empty {
	font-weight: var(--ph-fw-medium);
	color: #c4c9d1;
}

.ph-case-stat-card--highlight {
	background: var(--ph-green-bg);
	border-color: rgba(70, 159, 16, 0.28);
}

.ph-case-stat-card--highlight .ph-case-stat-card__label,
.ph-case-stat-card--highlight .ph-case-stat-card__value:not(.ph-case-stat-card__value--empty) {
	color: var(--ph-green);
}

.ph-case-stat-card--highlight .ph-case-stat-card__value--empty {
	color: #a3c293;
}

@media (max-width: 960px) {
	.ph-case-stat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ph-case-stat-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
}

@media (max-width: 520px) {
	.ph-case-stat-grid {
		grid-template-columns: 1fr;
	}

	.ph-case-stat-card:last-child:nth-child(odd) {
		grid-column: auto;
	}
}

.ph-case-sec {
	margin-bottom: 2.5rem;
}
.single-report .ph-case-sec {
	margin-bottom: 6rem;
}

.ph-case-sec__heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 0 0 16px;
    font-size: 1.8rem;
    font-weight: var(--ph-fw-extra);
    line-height: 1.25;
    color: var(--ph-black);
}

.ph-case-sec__heading--compact {
	font-size: 1.8rem;
}

.ph-case-sec__num {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0 8px;
    border-radius: 50%;
    background: var(--ph-green-bg);
    font-size: 1.2rem;
    font-weight: var(--ph-fw-extra);
    color: var(--ph-green);
    box-shadow: 0 0px 10px 0 white;
}

/* Outcomes headings: clock / calendar instead of step number */
.ph-case-sec__num--svg {
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.ph-case-sec__num--svg svg {
	display: block;
	flex-shrink: 0;
	color: var(--ph-green);
}

.ph-case-sec__num--clock svg {
	width: 20px;
	height: 20px;
}

.ph-case-sec__num--calendar svg {
	width: 18px;
	height: 20px;
}

.ph-case-sec__prose--outcome-intro {
	margin-top: 0;
}

.ph-case-sec__title {
	font-weight: inherit;
	font-size: inherit;
}

.ph-case-sec > .ph-case-sec__heading,
.ph-case-split__col > .ph-case-sec__heading {
	margin-bottom: clamp(16px, 2.5vw, 22px);
}

/* White content surface under each section heading (sections 1–8) */
.ph-case-sec__card {
	background: var(--ph-white);
    border: 1px solid #e8ecf0;
    border-radius: 24px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 32px);
}

.ph-case-sec__card-sub {
	margin: 0 0 14px;
	font-size: 1.5rem;
	font-weight: var(--ph-fw-bold);
	line-height: 1.35;
	color: #1a1a1a;
}

.ph-case-sec__card-rule {
	margin: 0 0 20px;
	border: 0;
	border-top: 1px solid #eef2f6;
}

.ph-case-sec__card > .ph-case-callout:first-child {
	margin-top: 0;
}

.ph-case-sec__card > .ph-case-sec__prose:first-child {
	margin-top: 0;
}

.ph-case-sec__card > .ph-case-checklist:first-of-type {
	margin-top: 0;
}

.ph-case-sec__card .ph-case-checklist + .ph-case-chain-note {
	margin-top: 20px;
}

.ph-case-sec__prose--belief-lead {
	margin-bottom: 1em;
}

.ph-case-sec__prose--belief-lead p:last-child {
	margin-bottom: 1em;
}

.ph-case-sec__prose--belief-tail {
	margin-top: 1.25em;
	margin-bottom: 0;
}

.ph-case-sec__prose--belief-tail p:last-child {
	margin-bottom: 0;
}

.ph-case-sec__prose {
	font-size: 1.2rem;
	line-height: 1.7;
	color: var(--ph-gray-dark);
}

.ph-case-sec__prose p {
	margin: 0 0 1em;
}

.ph-case-sec__prose p:last-child {
	margin-bottom: 0;
}

.ph-case-callout {
	margin-top: 24px;
    padding: 35px;
    background: rgba(234, 245, 229, 0.3);
    border: 1px solid var(--ph-green);
    border-radius: 24px;
}

.ph-case-callout__title {
	margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: var(--ph-fw-bold);
    color: var(--ph-black);
}

/*
 * All case-study bullet row copy (font-size, weight, etc.)
 * — adjust here. Checklists wrap lines in .ph-case-bullet-text; rich-text lists
 *   use the grouped `li` selectors (same values, no class on editor markup).
 */
.ph-case-bullet-text,
.ph-case-single .ph-case-sec__prose ul:not(.ph-case-checklist) > li,
.ph-case-single .ph-case-summary__text ul > li,
.ph-case-single .ph-case-faq__answer-inner ul > li,
.ph-case-single .ph-case-chain-note ul > li,
.ph-case-single .ph-case-callout ul:not(.ph-case-checklist) > li {
	font-size: 1.2rem;
	line-height: 1.5;
	color: var(--ph-gray-dark);
}

.ph-case-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.ph-case-checklist--spaced {
	gap: 14px;
}

.ph-case-checklist--dense {
	gap: 10px;
}


.ph-case-checklist__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ph-case-checklist__icon {
	display: inline-flex;
}
.ph-case-checklist__icon svg {
	color: white;
    background: var(--ph-green);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    padding: 4px;
}

/* Rich-text lists (prose, summary, FAQ, chain note, callout): same green check as .ph-case-checklist */
.ph-case-single .ph-case-sec__prose ul,
.ph-case-single .ph-case-summary__text ul,
.ph-case-single .ph-case-faq__answer-inner ul,
.ph-case-single .ph-case-chain-note ul,
.ph-case-single .ph-case-callout ul:not(.ph-case-checklist) {
	list-style: none;
	margin: 0 0 1em;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ph-case-single .ph-case-sec__prose ul ul,
.ph-case-single .ph-case-summary__text ul ul,
.ph-case-single .ph-case-faq__answer-inner ul ul,
.ph-case-single .ph-case-chain-note ul ul,
.ph-case-single .ph-case-callout ul:not(.ph-case-checklist) ul {
	margin-bottom: 0;
	margin-top: 4px;
}

.ph-case-single .ph-case-sec__prose ul > li,
.ph-case-single .ph-case-summary__text ul > li,
.ph-case-single .ph-case-faq__answer-inner ul > li,
.ph-case-single .ph-case-chain-note ul > li,
.ph-case-single .ph-case-callout ul:not(.ph-case-checklist) > li {
	position: relative;
	padding-left: 32px;
	margin: 0;
	min-height: 1.4em;
}

.ph-case-single .ph-case-sec__prose ul > li::before,
.ph-case-single .ph-case-summary__text ul > li::before,
.ph-case-single .ph-case-faq__answer-inner ul > li::before,
.ph-case-single .ph-case-chain-note ul > li::before,
.ph-case-single .ph-case-callout ul:not(.ph-case-checklist) > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 20px;
	height: 20px;
	background: no-repeat center / 20px 20px
		url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2211%22%20fill%3D%22%23469F10%22%2F%3E%3Cpath%20d%3D%22M20%206L9%2017l-5-5%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222.25%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
}

/* Chain of incidents — plain note below list */
.ph-case-chain-note {
	margin-top: 20px;
	padding: 16px 22px;
	text-align: center;
	background: #f3f4f6;
	border: 1px solid #e8ecf0;
	border-radius: 10px;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #4b5563;
}

.ph-case-chain-note p {
	margin: 0 0 0.5em;
}

.ph-case-chain-note p:last-child {
	margin-bottom: 0;
}

/* Two-column outcomes */
.ph-case-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 4vw, 40px);
	margin-bottom: clamp(52px, 7vw, 72px);
}

.ph-case-split__col {
	min-width: 0;
}

/* Related problems */
.ph-case-related-problems {
	margin-bottom: clamp(44px, 6vw, 64px);
}

.ph-case-related-problems__title {
	margin: 0 0 16px;
	font-size: 1.8rem;
	font-weight: var(--ph-fw-extra);
	color: var(--ph-black);
}

.ph-case-related-problems__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ph-case-related-problems__pill {
	display: inline-flex;
    align-items: center;
    padding: 4px 20px;
    border-radius: 999px;
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    font-size: 1rem;
    font-weight: var(--ph-fw-medium);
    color: var(--ph-black);
    text-decoration: none;
    transition: border-color var(--ph-transition), color var(--ph-transition);
}

.ph-case-related-problems__pill:hover {
	border-color: var(--ph-green);
	color: var(--ph-green);
}

/* Painhunter profile (Figma: after Related Problems) */
.ph-case-expert-card {
	margin-bottom: clamp(44px, 6vw, 64px);
	padding: clamp(22px, 3vw, 28px) clamp(22px, 3vw, 28px);
	background: var(--ph-white);
	border: 1px solid #e8ecf0;
	border-radius: 24px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.ph-case-expert-card__inner {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(16px, 3vw, 24px);
	align-items: flex-start;
}

.ph-case-expert-card__photo {
	width: 104px;
	height: 104px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--ph-border);
	flex-shrink: 0;
}

.ph-case-expert-card__photo--placeholder {
	display: block;
	width: 104px;
	height: 104px;
	background: var(--ph-gray-bg);
}

.ph-case-expert-card__body {
	flex: 1;
	min-width: min(100%, 200px);
}

.ph-case-expert-card__name {
	display: block;
	font-size: clamp(1.125rem, 2.5vw, 1.25rem);
	font-weight: var(--ph-fw-bold);
	color: var(--ph-black);
	line-height: 1.3;
	margin: 0 0 6px;
}

.ph-case-expert-card__badge {
	display: block;
	font-size: 0.9375rem;
	font-weight: var(--ph-fw-semi);
	line-height: 1.35;
	color: var(--ph-green);
	margin-bottom: 6px;
}

.ph-case-expert-card__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px clamp(20px, 4vw, 40px);
	margin: 0 0 clamp(20px, 3vw, 24px);
	padding: 0;
	width: fit-content;
}

.ph-case-expert-card__stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

.ph-case-expert-card__stat-label {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: var(--ph-fw-medium);
	line-height: 1.35;
	color: var(--ph-gray-mid);
}

.ph-case-expert-card__stat-value {
	margin: 0;
	font-size: 1.375rem;
	font-weight: var(--ph-fw-extra);
	line-height: 1.2;
	color: var(--ph-black);
}

.ph-case-expert-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 14px;
}

.ph-case-expert-card .ph-case-expert-card__btn-outline {
	font-weight: var(--ph-fw-semi);
	border-width: 1px;
}

.ph-case-expert-card .ph-case-expert-card__btn-primary {
	font-weight: var(--ph-fw-semi);
}

@media (max-width: 380px) {
	.ph-case-expert-card__stats {
		grid-template-columns: 1fr;
	}
}

/* Related cases */
.ph-case-related-cases {
	margin-bottom: clamp(44px, 6vw, 72px);
}

.ph-case-related-cases__title {
	margin: 0 0 20px;
	font-size: 1.8rem;
	font-weight: var(--ph-fw-extra);
	color: var(--ph-black);
}

.ph-case-related-cases__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ph-case-related-cases__item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-case-related-cases__card {
	padding: 20px 22px;
	background: var(--ph-white);
	border: 1px solid #e8ecf0;
	border-radius: 16px;
	color: inherit;
	transition: border-color var(--ph-transition), box-shadow var(--ph-transition);
}

.ph-case-related-cases__card:hover {
	border-color: rgba(70, 159, 16, 0.35);
	box-shadow: 0 4px 20px rgba(70, 159, 16, 0.08);
}

.ph-case-related-cases__card-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px 16px;
	margin-bottom: 8px;
}

.ph-case-related-cases__card-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: var(--ph-fw-bold);
	color: var(--ph-black);
	line-height: 1.25;
}

.ph-case-related-cases__card-published {
	margin: 0;
	flex-shrink: 0;
	margin-right: auto;
	max-width: 100%;
	font-size: 1rem;
	line-height: 1.35;
	color: var(--ph-gray-mid);
	text-align: right;
	align-self: center;
}

.ph-case-related-cases__card-desc {
	margin: 0 0 14px;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--ph-gray);
}

/* Bottom row: author (left) + CTAs (right) */
.ph-case-related-cases__card-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 20px;
	padding-top: 14px;
	margin-top: 2px;
	border-top: 1px solid #f3f4f6;
}

.ph-case-related-cases__card-bottom-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ph-case-related-cases__card-author {
	min-width: 0;
}

.ph-case-related-cases__ph {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ph-case-related-cases__ph img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.ph-case-related-cases__ph-name {
	font-size: 1.2rem;
	font-weight: var(--ph-fw-semi);
	color: var(--ph-black);
}

.ph-case-related-cases__card-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-right: auto;
	flex-shrink: 0;
}

.ph-case-related-cases__card-actions .ph-case-related-cases__btn {
	font-weight: var(--ph-fw-semi);
	border-width: 1px;
}

/* Directly under title row; same pill as hero */
.ph-case-related-cases__card-category {
	margin: 0 0 12px;
}

.ph-case-related-cases__card-category .ph-case-hero__pill {
	margin: 0;
	padding: 4px 8px;
    min-height: auto;
}

.ph-case-related-cases__card-category .ph-case-hero__pill svg{
	width: 14px;
	height: 14px;
}


.ph-case-faq__title {
	margin: 0 0 20px;
	font-size: 1.8rem;
	font-weight: var(--ph-fw-extra);
	color: var(--ph-black);
}

.ph-case-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ph-case-faq__item {
	position: relative;
	border: 1px solid var(--ph-border);
	border-radius: 14px;
	background: var(--ph-white);
	overflow: hidden;
}

.ph-case-faq__check {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ph-case-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	cursor: pointer;
	font-size: 17px;
	font-weight: var(--ph-fw-bold);
	color: var(--ph-black);
	line-height: 1.35;
	user-select: none;
}

.ph-case-faq__toggle {
	flex-shrink: 0;
	position: relative;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--ph-green-bg);
}

.ph-case-faq__toggle::before,
.ph-case-faq__toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	border-radius: 2px;
	background: var(--ph-green);
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease;
}

.ph-case-faq__toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.ph-case-faq__check:checked + .ph-case-faq__question .ph-case-faq__toggle::after {
	opacity: 0;
}

.ph-case-faq__answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 20px;
	transition: max-height 0.4s ease, opacity 0.25s ease, padding 0.35s ease;
}

.ph-case-faq__answer-inner {
	font-size: 15px;
	line-height: 1.55;
	color: var(--ph-gray);
}

.ph-case-faq__answer-inner p {
	margin: 0 0 0.65em;
}

.ph-case-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

.ph-case-faq__check:checked + .ph-case-faq__question + .ph-case-faq__answer {
	max-height: 480px;
	opacity: 1;
	padding: 0 20px 16px;
}

/* Report single — stacked session cards */
.single-report .ph-case-stat-grid{
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
.ph-case-sec .ph-report-session-card {
	margin-top: 18px;
}

.ph-case-sec .ph-report-session-card:first-of-type {
	margin-top: 0;
}

.ph-report-session-card__eyebrow {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--ph-navy, #0f2744);
}

.ph-report-session-card__bullets.ph-case-callout {
	margin-top: 18px;
	padding: clamp(20px, 3vw, 28px);
}

.ph-report-single__related-ac {
	margin-top: clamp(28px, 4vw, 40px);
}

.ph-report-session-card__head {
	margin-bottom: 12px;
}

.ph-report-session-card__title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--ph-navy, #0f2744);
}

.ph-report-session-card__date {
	margin: 4px 0 0;
	font-size: 14px;
	color: var(--ph-gray, #5c6670);
}

.ph-report-session-card__completion {
	display: flex;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 6px 14px;
	margin-bottom: 14px;
}

.ph-report-session-card__completion-label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ph-gray, #5c6670);
}

.ph-report-session-card__completion-pct {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ph-green, #2d6a4f);
}

.ph-report-session-card__bar {
	grid-column: 1 / -1;
	margin-top: 2px;
}

.ph-report-session-card__summary {
	margin-top: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
	.ph-case-hero__expert {
		flex-direction: column;
		align-items: stretch;
	}

	.ph-case-hero__expert-actions {
		justify-content: flex-start;
	}

	.ph-case-split {
		grid-template-columns: 1fr;
	}

	.ph-case-related-cases__card-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.ph-case-related-cases__card-published {
		margin-left: 0;
		width: 100%;
		max-width: none;
		text-align: left;
		white-space: normal;
	}

	.ph-case-related-cases__card-bottom {
		align-items: stretch;
	}

	.ph-case-related-cases__card-actions {
		margin-left: 0;
		justify-content: flex-start;
	}
	.ph-case-expert-card__inner{
		align-items: center;
		flex-direction: column;
		width: fit-content;
		margin: 0 auto;
	}
	.ph-case-expert-card__body{
		text-align: center;
	}
}

@media (max-width: 520px) {
	.ph-case-hero__expert-actions .ph-case-hero__btn {
		width: 100%;
		justify-content: center;
	}
}
