/*
 * Returns & Refunds page (Phase 11) — page-specific styles.
 * Shell (page-head/section/closing) comes from policy-pages.css (.eh-policy).
 * Scoped under .eh-returns. `.section-divider` from the design bundle is dead
 * CSS (declared but unused in markup) and intentionally not ported.
 */

.eh-returns .eh-ret-lede {
	font-size: 18px;
	line-height: 1.75;
	color: rgba(248, 245, 240, 0.82);
	max-width: 680px;
	margin: 30px 0 0;
}

/* Section intro */
.eh-returns .eh-ret-intro {
	max-width: 740px;
	margin: 0 0 72px;
}
.eh-returns .eh-ret-intro h2 { margin-top: 18px; }
.eh-returns .eh-ret-intro p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--eh-ink-500);
	margin: 20px 0 0;
	max-width: 600px;
}

/* 2 x 2 policy card grid */
.eh-returns .eh-return-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: 1px solid var(--eh-line);
	border-left: 1px solid var(--eh-line);
}
@media (max-width: 760px) {
	.eh-returns .eh-return-grid { grid-template-columns: 1fr; }
}

.eh-returns .eh-return-card {
	padding: 56px 52px 60px;
	border-right: 1px solid var(--eh-line);
	border-bottom: 1px solid var(--eh-line);
	display: flex;
	flex-direction: column;
	gap: 22px;
	position: relative;
	overflow: hidden;
	transition: background .3s ease;
}
.eh-returns .eh-return-card:hover { background: var(--eh-cream-100); }

/* large ghost numeral */
.eh-returns .eh-return-card::after {
	content: attr(data-num);
	position: absolute;
	bottom: 16px;
	right: 28px;
	font-family: var(--eh-font-display);
	font-style: italic;
	font-size: 130px;
	color: var(--eh-forest-900);
	opacity: 0.04;
	line-height: 1;
	pointer-events: none;
	font-weight: 500;
}

.eh-returns .eh-rc-num {
	font-family: var(--eh-font-display);
	font-style: italic;
	font-size: 14px;
	color: var(--eh-gold-600);
}

.eh-returns .eh-rc-icon {
	width: 64px;
	height: 64px;
	border: 1px solid var(--eh-gold-500);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--eh-gold-500);
	flex-shrink: 0;
	margin-bottom: 4px;
}
.eh-returns .eh-rc-icon svg { width: 28px; height: 28px; }

.eh-returns .eh-rc-label {
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--eh-gold-600);
	font-weight: 700;
	margin-bottom: -8px;
}

.eh-returns .eh-return-card h3 {
	color: var(--eh-forest-900);
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 1.1;
	margin: 0;
}

.eh-returns .eh-return-card p {
	color: var(--eh-ink-700);
	font-size: 15px;
	line-height: 1.85;
	margin: 0;
	max-width: 460px;
}
