/* PERSONA CARD ── */
.persona-card {
	width: 100%;
	max-width: 960px;
	margin-top: 2.5rem;
	border-radius: 16px;
	overflow: hidden;
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.18),
		0 4px 16px rgba(0, 0, 0, 0.08);
	background: var(--dark-bg);
	font-family: var(--body-txt);
}

.recru-persona-card {
	width: 100%;
	max-width: 960px;
	margin-top: 2.5rem;
	/* box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.18),
		0 4px 16px rgba(0, 0, 0, 0.08); */
	background: var(--dark-bg);
	font-family: var(--body-txt);
}

/* ── PERSONA PHOTO SECTION ── */
.card-photo {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3.6;
	/* overflow: hidden; */
	background: #2a2c28;
}

.card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* Placeholder if no image */
.card-photo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #2a3a28 0%, #1a2a20 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.2);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* ── QUOTE BUBBLE ── */
.quote-bubble {
	position: absolute;
	bottom: -24px;
	left: 34px;
	width: 62%;
	background: var(--green-card);
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	/* slight rotation matching the reference */
	transform: rotate(1.5deg);
	transform-origin: bottom right;
}

.quote-bubble p {
	font-family: var(--display);
	font-size: clamp(1.2rem, 2.2vw, 2rem);
	color: var(--card-bg);
	line-height: 1.45;
	font-style: italic;
}

.recru-quote-bubble {
	position: absolute;
	top: -2px;
	left: 4px;
	width: 40%;
	background: var(--green-card);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	/* slight rotation matching the reference */
	transform: rotate(6.5deg);
	transform-origin: bottom right;
}

.recru-quote-bubble p {
	font-family: var(--display);
	font-size: clamp(1.2rem, 2.2vw, 1.5rem);
	color: var(--card-bg);
	line-height: 1.2;
	/* font-style: italic; */
}

/* ── DARK INFO SECTION ── */

.card-info {
	background: var(--dark-bg);
	padding: 52px 28px 28px;
	position: relative;
}

.card-info h3 {
	color: var(--paper);
	font-weight: 300;
}

.card-info ul {
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	list-style-type: disc;
	margin-left: 1.2rem;
}

.card-name {
	font-family: var(--display);
	font-size: clamp(1.6rem, 5vw, 2rem);
	color: var(--paper);
	line-height: 1.1;
	margin-bottom: 24px;
}

.persona-card-split {
	display: flex;
	columns: 1fr 1fr;
	gap: 3rem;
}
.bullet-list {
	display: flex;
	flex-direction: column;
}

/* ── DETAIL ROWS ── */
.detail-list {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 24px;
	row-gap: 10px;
	margin-bottom: 28px;
}

.detail-label {
	font-weight: 500;
	font-size: 0.87rem;
	margin-bottom: 6px;
	color: var(--card-bg);
	white-space: nowrap;
}

.detail-value {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

/* ── DIVIDER ── */
.card-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin-bottom: 24px;
}

/* ── BIO ── */
.card-bio {
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
	.quote-bubble {
		width: 68%;
		padding: 16px 16px 16px 14px;
		bottom: -20px;
	}

	.card-info {
		padding: 44px 20px 24px;
	}
}

/* ── PAGE: show two cards side by side on wide screens ── */
.cards-demo {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
