/* ─────────────────────────────────────────────
   downloads.css — GamingCompliance.io Reports library
   Single-page magazine-grade library of all comparison PDFs.
   Namespaced .dl-* to avoid collisions with site chrome.
───────────────────────────────────────────── */

.dl-page {
	background: var(--igc-bg, #050B1A);
	color: var(--igc-text, #e5e7eb);
	font-family: var(--igc-font-body, "DM Sans", system-ui, sans-serif);
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.dl-hero {
	position: relative;
	padding: 4rem 1.25rem 3rem;
	background:
		radial-gradient(1100px 700px at 12% -10%, rgba(59,130,246,0.10), transparent 60%),
		radial-gradient(900px 600px at 88% 0%, rgba(16,185,129,0.08), transparent 60%),
		linear-gradient(180deg, #060e22 0%, #050B1A 100%);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	overflow: hidden;
}
.dl-hero__inner {
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.dl-crumbs {
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin: 0 0 2rem;
}
.dl-crumbs a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}
.dl-crumbs a:hover { color: #fff; }
.dl-crumbs__sep {
	margin: 0 0.5em;
	color: rgba(255,255,255,0.3);
}
.dl-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f5c842;
	margin: 0 0 1.5rem;
}
.dl-hero__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #f5c842;
	box-shadow: 0 0 8px rgba(245,200,66,0.6);
}
.dl-hero__title {
	font-family: var(--igc-font-display, "DM Sans", sans-serif);
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 1.5rem;
	max-width: 18ch;
	color: #fff;
}
.dl-hero__dek {
	font-size: 1.1rem;
	line-height: 1.65;
	color: rgba(255,255,255,0.78);
	max-width: 62ch;
	margin: 0 0 2.5rem;
}

.dl-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0 0 2.5rem;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dl-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.dl-hero__stat-num {
	font-family: var(--igc-font-display, "DM Sans", sans-serif);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	line-height: 1;
	color: #fff;
	letter-spacing: -0.02em;
}
.dl-hero__stat-lbl {
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}

.dl-hero__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.dl-filter {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 999px;
	color: rgba(255,255,255,0.78);
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: all 0.18s ease;
}
.dl-filter:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.22);
	color: #fff;
}
.dl-filter.is-active {
	background: rgba(245,200,66,0.14);
	border-color: rgba(245,200,66,0.5);
	color: #f5c842;
}
.dl-filter__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.5em;
	height: 1.5em;
	padding: 0 0.4em;
	font-size: 0.7rem;
	background: rgba(0,0,0,0.3);
	border-radius: 999px;
	color: inherit;
	opacity: 0.85;
}

/* ── GRID ─────────────────────────────────────────────────────────── */
.dl-grid-wrap {
	padding: 3.5rem 1.25rem;
	background: #050B1A;
}
.dl-grid {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (max-width: 880px) {
	.dl-grid { grid-template-columns: 1fr; }
}

/* ── CARD ─────────────────────────────────────────────────────────── */
.dl-card {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.5rem;
	padding: 1.5rem;
	background: linear-gradient(155deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 14px;
	position: relative;
	overflow: hidden;
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
	isolation: isolate;
}
@media (max-width: 640px) {
	.dl-card {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}
.dl-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; height: 3px;
	background: var(--dl-card-strip, linear-gradient(90deg, #f5c842, #f5c842));
	z-index: 2;
}
.dl-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255,255,255,0.22);
	background: linear-gradient(155deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
	box-shadow: 0 28px 60px -32px rgba(0,0,0,0.7);
}

/* Per-palette top strips */
.dl-card--uk-mt    { --dl-card-strip: linear-gradient(90deg, #3b82f6 0%, #3b82f6 50%, #10b981 50%, #10b981 100%); }
.dl-card--mt-cw    { --dl-card-strip: linear-gradient(90deg, #10b981 0%, #10b981 50%, #1378AC 50%, #1378AC 100%); }
.dl-card--uk-on    { --dl-card-strip: linear-gradient(90deg, #3b82f6 0%, #3b82f6 50%, #ef4444 50%, #ef4444 100%); }
.dl-card--on-ab    { --dl-card-strip: linear-gradient(90deg, #ef4444 0%, #ef4444 50%, #f59e0b 50%, #f59e0b 100%); }
.dl-card--fr-es    { --dl-card-strip: linear-gradient(90deg, #1378AC 0%, #1378AC 50%, #aa151b 50%, #aa151b 100%); }
.dl-card--latam    { --dl-card-strip: linear-gradient(90deg, #009739 0%, #009739 25%, #003893 25%, #003893 50%, #D91023 50%, #D91023 75%, #006847 75%, #006847 100%); }
.dl-card--on-igo   { --dl-card-strip: linear-gradient(90deg, #d92228 0%, #d92228 50%, #e87722 50%, #e87722 100%); }
.dl-card--nz-dia   { --dl-card-strip: linear-gradient(90deg, #012169 0%, #012169 50%, #c8102e 50%, #c8102e 100%); }
.dl-card--us-big-4 { --dl-card-strip: linear-gradient(90deg, #002868 0%, #002868 25%, #006B3F 25%, #006B3F 50%, #FFCB05 50%, #FFCB05 75%, #BB0000 75%, #BB0000 100%); }

/* Thumb (PDF cover preview) */
.dl-card__thumb {
	display: block;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #0a0f1f;
	border: 1px solid rgba(255,255,255,0.08);
	transition: border-color 0.22s ease;
	cursor: pointer;
	min-height: 0;
}
.dl-card__thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dl-card:hover .dl-card__thumb img { transform: scale(1.04); }
.dl-card__thumb-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: #fff;
	background: linear-gradient(160deg, rgba(8,12,28,0.25) 0%, rgba(8,12,28,0.85) 100%);
	opacity: 0;
	transition: opacity 0.22s ease;
}
.dl-card__thumb-overlay span {
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.dl-card__thumb:hover .dl-card__thumb-overlay,
.dl-card__thumb:focus-visible .dl-card__thumb-overlay { opacity: 1; }

/* Body */
.dl-card__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.dl-card__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 1rem;
	margin: 0 0 0.9rem;
}
.dl-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}
.dl-card__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.2rem 0.55rem;
	font-size: 0.74rem;
	font-weight: 500;
	border-radius: 6px;
	background: color-mix(in srgb, var(--chip) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--chip) 45%, transparent);
	color: color-mix(in srgb, var(--chip) 35%, #ffffff);
	white-space: nowrap;
}
.dl-card__meta {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-left: auto;
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.55);
}
.dl-card__title {
	font-family: var(--igc-font-display, "DM Sans", sans-serif);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0 0 0.3rem;
}
.dl-card__subtitle {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.62);
	margin: 0 0 0.9rem;
	font-style: italic;
}
.dl-card__desc {
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255,255,255,0.78);
	margin: 0 0 1rem;
	flex-grow: 1;
}
.dl-card__highlight {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.75rem;
	background: rgba(245,200,66,0.08);
	border: 1px solid rgba(245,200,66,0.2);
	border-radius: 6px;
	font-size: 0.78rem;
	color: #f5c842;
	margin: 0 0 1rem;
	width: fit-content;
	max-width: 100%;
}
.dl-card__highlight-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #f5c842;
	box-shadow: 0 0 6px rgba(245,200,66,0.6);
	flex-shrink: 0;
}
.dl-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: auto;
}

/* Buttons */
.dl-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1.1rem;
	font-family: var(--igc-font-body, "DM Sans", sans-serif);
	font-size: 0.88rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.18s ease;
	border: 1px solid transparent;
}
.dl-btn--primary {
	background: #fff;
	color: #0a0f1f;
}
.dl-btn--primary:hover {
	background: #f5c842;
	color: #1a1a2e;
	transform: translateY(-1px);
}
.dl-btn--ghost {
	background: transparent;
	border-color: rgba(255,255,255,0.18);
	color: rgba(255,255,255,0.85);
}
.dl-btn--ghost:hover {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.32);
	color: #fff;
}

/* ── CREDIBILITY STRIP ────────────────────────────────────────────── */
.dl-credibility {
	padding: 3rem 1.25rem;
	background: linear-gradient(180deg, #050B1A 0%, #080f24 100%);
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dl-credibility__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}
@media (max-width: 720px) {
	.dl-credibility__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.dl-cred-item {
	padding: 1.5rem;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
}
.dl-cred-num {
	font-family: var(--igc-font-display, "DM Sans", sans-serif);
	font-size: 2rem;
	font-weight: 700;
	color: #f5c842;
	line-height: 1;
	margin: 0 0 0.5rem;
}
.dl-cred-lbl {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.6rem;
}
.dl-cred-item p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255,255,255,0.7);
	margin: 0;
}

/* ── DIGEST CTA ───────────────────────────────────────────────────── */
.dl-digest {
	padding: 4rem 1.25rem;
	background: #050B1A;
}
.dl-digest__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
	align-items: center;
	padding: 2.5rem;
	background:
		radial-gradient(600px 400px at 100% 100%, rgba(245,200,66,0.08), transparent 60%),
		linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}
@media (max-width: 720px) {
	.dl-digest__inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.75rem;
	}
}
.dl-digest__eyebrow {
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f5c842;
	margin: 0 0 1rem;
}
.dl-digest__title {
	font-family: var(--igc-font-display, "DM Sans", sans-serif);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 1rem;
	max-width: 22ch;
}
.dl-digest__copy p {
	font-size: 0.98rem;
	line-height: 1.65;
	color: rgba(255,255,255,0.78);
	margin: 0 0 1.5rem;
	max-width: 50ch;
}
.dl-digest__pattern {
	position: relative;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1000px;
}
.dl-digest__doc {
	position: absolute;
	width: 110px;
	height: 150px;
	background: linear-gradient(180deg, #fff 0%, #e2e8f0 100%);
	border-radius: 4px;
	box-shadow: 0 12px 40px -10px rgba(0,0,0,0.6);
}
.dl-digest__doc:nth-child(1) { transform: rotate(-12deg) translateX(-50px); }
.dl-digest__doc:nth-child(2) { transform: rotate(0deg);                     z-index: 2; }
.dl-digest__doc:nth-child(3) { transform: rotate(12deg) translateX(50px); }
.dl-digest__doc:nth-child(1)::before,
.dl-digest__doc:nth-child(2)::before,
.dl-digest__doc:nth-child(3)::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; height: 4px;
	border-radius: 4px 4px 0 0;
}
.dl-digest__doc:nth-child(1)::before { background: linear-gradient(90deg, #3b82f6, #10b981); }
.dl-digest__doc:nth-child(2)::before { background: linear-gradient(90deg, #10b981, #1378AC); }
.dl-digest__doc:nth-child(3)::before { background: linear-gradient(90deg, #009739 25%, #003893 25%, #003893 50%, #D91023 50%, #D91023 75%, #006847 75%); }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.dl-faq {
	padding: 4rem 1.25rem;
	background: linear-gradient(180deg, #050B1A 0%, #080f24 100%);
}
.dl-faq__inner {
	max-width: 800px;
	margin: 0 auto;
}
.dl-faq__eyebrow {
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f5c842;
	margin: 0 0 1rem;
}
.dl-faq__title {
	font-family: var(--igc-font-display, "DM Sans", sans-serif);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 2rem;
}
.dl-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.dl-faq__item {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 0.18s ease;
}
.dl-faq__item[open] {
	border-color: rgba(245,200,66,0.3);
	background: rgba(255,255,255,0.05);
}
.dl-faq__item summary {
	padding: 1.1rem 1.25rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	color: #fff;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
}
.dl-faq__item summary::-webkit-details-marker { display: none; }
.dl-faq__item summary::after {
	content: "";
	margin-left: auto;
	width: 10px; height: 10px;
	border-right: 2px solid rgba(255,255,255,0.5);
	border-bottom: 2px solid rgba(255,255,255,0.5);
	transform: rotate(45deg);
	transition: transform 0.22s ease;
	flex-shrink: 0;
}
.dl-faq__item[open] summary::after {
	transform: rotate(-135deg);
	border-color: #f5c842;
}
.dl-faq__a {
	padding: 0 1.25rem 1.25rem;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255,255,255,0.78);
}

/* ── RELATED TOOLS ────────────────────────────────────────────────── */
.dl-related {
	padding: 4rem 1.25rem 5rem;
	background: #050B1A;
}
.dl-related__inner {
	max-width: 1180px;
	margin: 0 auto;
}
.dl-related__eyebrow {
	font-family: var(--igc-font-mono, "DM Mono", ui-monospace, monospace);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
	margin: 0 0 1rem;
}
.dl-related__title {
	font-family: var(--igc-font-display, "DM Sans", sans-serif);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 2rem;
}
.dl-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}
@media (max-width: 720px) {
	.dl-related__grid { grid-template-columns: 1fr; }
}
.dl-related__card {
	display: block;
	padding: 1.5rem;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
}
.dl-related__card:hover {
	background: rgba(255,255,255,0.06);
	border-color: rgba(245,200,66,0.4);
	transform: translateY(-2px);
}
.dl-related__icon {
	font-size: 1.8rem;
	margin: 0 0 0.8rem;
	display: block;
}
.dl-related__name {
	font-weight: 700;
	font-size: 1.05rem;
	color: #fff;
	margin: 0 0 0.4rem;
}
.dl-related__desc {
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(255,255,255,0.7);
}

/* ═════════════════════════════════════════════
   LIGHT MODE
═════════════════════════════════════════════ */
html.igc-light .dl-page {
	background: #f4f6f9;
	color: #1a1a2e;
}
html.igc-light .dl-hero {
	background:
		radial-gradient(1100px 700px at 12% -10%, rgba(59,130,246,0.08), transparent 60%),
		radial-gradient(900px 600px at 88% 0%, rgba(16,185,129,0.06), transparent 60%),
		linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
	border-bottom-color: #e2e8f0;
}
html.igc-light .dl-hero__title,
html.igc-light .dl-hero__stat-num,
html.igc-light .dl-card__title,
html.igc-light .dl-cred-lbl,
html.igc-light .dl-digest__title,
html.igc-light .dl-faq__title,
html.igc-light .dl-related__title,
html.igc-light .dl-related__name { color: #0f172a; }

html.igc-light .dl-crumbs { color: #64748b; }
html.igc-light .dl-crumbs a:hover { color: #0f172a; }
html.igc-light .dl-crumbs__sep { color: #94a3b8; }
html.igc-light .dl-hero__eyebrow,
html.igc-light .dl-digest__eyebrow,
html.igc-light .dl-faq__eyebrow { color: #b45309; }
html.igc-light .dl-hero__dot { background: #b45309; box-shadow: 0 0 8px rgba(180,83,9,0.3); }
html.igc-light .dl-hero__dek,
html.igc-light .dl-card__desc,
html.igc-light .dl-cred-item p,
html.igc-light .dl-faq__a,
html.igc-light .dl-related__desc { color: #475569; }
html.igc-light .dl-hero__stat-lbl,
html.igc-light .dl-card__meta,
html.igc-light .dl-related__eyebrow { color: #64748b; }
html.igc-light .dl-hero__stats { border-top-color: #e2e8f0; border-bottom-color: #e2e8f0; }

html.igc-light .dl-filter {
	background: #ffffff;
	border-color: #e2e8f0;
	color: #475569;
}
html.igc-light .dl-filter:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	color: #0f172a;
}
html.igc-light .dl-filter.is-active {
	background: rgba(180,83,9,0.08);
	border-color: rgba(180,83,9,0.4);
	color: #b45309;
}
html.igc-light .dl-filter__count {
	background: rgba(0,0,0,0.08);
}

html.igc-light .dl-grid-wrap,
html.igc-light .dl-digest,
html.igc-light .dl-related { background: #f4f6f9; }
html.igc-light .dl-credibility,
html.igc-light .dl-faq { background: #ffffff; border-color: #e2e8f0; }

html.igc-light .dl-card {
	background: #ffffff;
	border-color: #e2e8f0;
	box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
html.igc-light .dl-card:hover {
	background: #ffffff;
	border-color: #cbd5e1;
	box-shadow: 0 18px 40px -22px rgba(15,23,42,0.25);
}
html.igc-light .dl-card__subtitle { color: #64748b; }
html.igc-light .dl-card__chip {
	color: color-mix(in srgb, var(--chip) 70%, #000000);
}
html.igc-light .dl-card__highlight {
	background: rgba(180,83,9,0.08);
	border-color: rgba(180,83,9,0.2);
	color: #b45309;
}
html.igc-light .dl-card__highlight-dot { background: #b45309; box-shadow: 0 0 6px rgba(180,83,9,0.3); }
html.igc-light .dl-card__thumb {
	background: #f8fafc;
	border-color: #e2e8f0;
}

html.igc-light .dl-btn--primary {
	background: #0f172a;
	color: #ffffff;
}
html.igc-light .dl-btn--primary:hover {
	background: #b45309;
	color: #ffffff;
}
html.igc-light .dl-btn--ghost {
	border-color: #cbd5e1;
	color: #334155;
}
html.igc-light .dl-btn--ghost:hover {
	background: #f8fafc;
	border-color: #94a3b8;
	color: #0f172a;
}

html.igc-light .dl-cred-item {
	background: #f8fafc;
	border-color: #e2e8f0;
}
html.igc-light .dl-cred-num { color: #b45309; }

html.igc-light .dl-digest__inner {
	background:
		radial-gradient(600px 400px at 100% 100%, rgba(180,83,9,0.06), transparent 60%),
		linear-gradient(135deg, #ffffff, #f8fafc);
	border-color: #e2e8f0;
}
html.igc-light .dl-digest__copy p { color: #475569; }

html.igc-light .dl-faq__item {
	background: #ffffff;
	border-color: #e2e8f0;
}
html.igc-light .dl-faq__item[open] {
	background: #ffffff;
	border-color: rgba(180,83,9,0.4);
}
html.igc-light .dl-faq__item summary { color: #0f172a; }
html.igc-light .dl-faq__item summary::after {
	border-right-color: #94a3b8;
	border-bottom-color: #94a3b8;
}
html.igc-light .dl-faq__item[open] summary::after {
	border-right-color: #b45309;
	border-bottom-color: #b45309;
}

html.igc-light .dl-related__card {
	background: #ffffff;
	border-color: #e2e8f0;
}
html.igc-light .dl-related__card:hover {
	background: #ffffff;
	border-color: #b45309;
	box-shadow: 0 8px 24px -12px rgba(15,23,42,0.2);
}
