/* ─── AL Reviews — featured quote on dark + supporting cards (sketch 004 · D) ─── */

/* Featured: one review set large */
.al-feat {
	position: relative; overflow: hidden;
	background: var(--ink); color: #b0b0ba;
	border-radius: var(--r-xl); padding: 54px 60px 56px; margin-top: 48px;
}
.al-feat::before { content: ""; position: absolute; inset: 0; background: radial-gradient(660px 340px at 90% 0, rgba(227,73,58,.24), transparent 62%); }
.al-feat > * { position: relative; z-index: 1; }
.al-feat__mark { font-family: var(--font-display); font-size: 76px; line-height: .6; color: rgba(255,255,255,.14); display: block; margin-bottom: 6px; }
.al-feat__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.al-feat__stars svg { width: 18px; height: 18px; fill: var(--gold); }
.al-feat blockquote {
	margin: 0 0 28px; font-family: var(--font-display);
	font-size: clamp(21px, 2.6vw, 32px); line-height: 1.36; color: #fff;
	letter-spacing: -.025em; max-width: 900px;
}
.al-feat__who { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.al-feat__av { width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff !important; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1; flex: none; }
.al-feat__who b { display: block; font-family: var(--font-display); font-size: 16px; color: #fff; }
.al-feat__who div span { font-size: 13.5px; color: #8f8f99; }
.al-feat__job {
	margin-left: auto; font-size: 12.5px; color: #8f8f99;
	border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: 7px 14px;
}

/* Supporting: three smaller reviews */
.al-rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.al-rv {
	background: #fff; border-radius: var(--r-xl); padding: 28px 28px 26px;
	display: flex; flex-direction: column;
	box-shadow: 0 1px 2px rgba(23,23,26,.05), 0 12px 34px rgba(23,23,26,.09);
	transition: transform .25s ease, box-shadow .25s ease;
}
.al-rv:hover { transform: translateY(-5px); box-shadow: 0 2px 4px rgba(23,23,26,.06), 0 24px 52px rgba(23,23,26,.14); }
.al-rv__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.al-rv__stars svg { width: 15px; height: 15px; fill: var(--gold); }
.al-rv blockquote { margin: 0 0 22px; font-size: 15.5px; line-height: 1.66; color: var(--ink-2); }
.al-rv__who { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.al-rv__av { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff !important; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14.5px; line-height: 1; flex: none; }
.al-rv__who b { display: block; font-family: var(--font-display); font-size: 14.5px; color: var(--ink); }
.al-rv__who div span { font-size: 12.5px; color: var(--ink-3); }

/* Reviews are real copy now, not placeholders (Vikas, 2026-08-07) — the guard attribute is gone
   from index.html and reviews.html. Ronnen's wording replaces this before launch. */

@media (max-width: 1000px) { .al-rv-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px)  { .al-feat { padding: 34px 24px 36px; } .al-feat__mark { font-size: 56px; } }

/* Same figcaption reset leak — `.al-feat__who` and `.al-rv__who` are figcaptions. */
.al-feat__who, .al-rv__who {
	font-size: 17px;
	line-height: 1.65;
	font-style: normal;
	color: #b0b0ba;
}
