/* ==========================================================================
   LLC Beige Flag Calculator — v1.1
   Brand: #0F172A (brand + text) · #7C3AED (alternate brand)
   Built for a light background. All tokens scoped to .cdt-app.
   ========================================================================== */

.cdt-app {
	/* body copy inherits the Astra theme font so it never fights the site */
	--cdt-font: inherit;
	--cdt-display: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;

	--cdt-ink: #0f172a;
	--cdt-ink-soft: #1e293b;

	--cdt-violet: #7c3aed;
	--cdt-violet-d: #6d28d9;
	--cdt-violet-l: #a78bfa;
	--cdt-violet-soft: #f5f3ff;
	--cdt-violet-line: #ddd6fe;

	--cdt-surface: #ffffff;
	--cdt-surface-2: #f8fafc;
	--cdt-border: #e2e8f0;
	--cdt-muted: #475569;
	--cdt-dim: #94a3b8;


	--cdt-warn: #e11d48;
	--cdt-good: #10b981;

	--cdt-r: 14px;
}

.cdt-app,
.cdt-app *,
.cdt-app *::before,
.cdt-app *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.cdt-app {
	max-width: 620px;
	margin: 32px auto;
	font-family: var(--cdt-font);
	color: var(--cdt-ink);
	background: var(--cdt-surface);
	border: 1px solid var(--cdt-border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 12px 32px rgba(15, 23, 42, .07);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

/* Font inherits, but do NOT force color here — it would override the
   button styles below on specificity and blank out their labels. */
.cdt-app button,
.cdt-app input {
	font-family: inherit;
}

.cdt-app input[type="text"] { color: var(--cdt-ink); }

.cdt-app :focus-visible {
	outline: 2px solid var(--cdt-violet);
	outline-offset: 2px;
	border-radius: 6px;
}

/* ============ HEADER ============ */

.cdt-header {
	padding: 34px 26px 24px;
	text-align: center;
	background: linear-gradient(180deg, var(--cdt-violet-soft) 0%, var(--cdt-surface) 100%);
	border-bottom: 1px solid var(--cdt-border);
}




.cdt-title {
	font-family: var(--cdt-display);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.12;
	margin-bottom: 8px;
	color: var(--cdt-ink);
}

.cdt-sub {
	font-size: 15px;
	color: var(--cdt-muted);
	max-width: 40ch;
	margin: 0 auto;
}

/* ============ QUIZ BODY ============ */

.cdt-body,
.cdt-results {
	padding: 22px 26px 28px;
}

.cdt-setup {
	display: grid;
	gap: 16px;
	margin-bottom: 8px;
}

.cdt-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--cdt-ink);
	margin-bottom: 8px;
}

.cdt-input {
	width: 100%;
	padding: 12px 15px;
	font-size: 15px;
	background: var(--cdt-surface-2);
	border: 1.5px solid var(--cdt-border);
	border-radius: 10px;
	transition: border-color .18s, background .18s;
}

.cdt-input::placeholder { color: var(--cdt-dim); }

.cdt-input:focus {
	border-color: var(--cdt-violet);
	background: var(--cdt-surface);
	outline: none;
}

.cdt-modes { display: flex; flex-wrap: wrap; gap: 8px; }
.cdt-mode { cursor: pointer; }
.cdt-mode input { position: absolute; opacity: 0; width: 0; height: 0; }

.cdt-mode span {
	display: inline-block;
	padding: 7px 15px;
	border-radius: 50px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--cdt-muted);
	background: var(--cdt-surface-2);
	border: 1.5px solid var(--cdt-border);
	transition: all .18s;
}

.cdt-mode:hover span { border-color: var(--cdt-violet-l); color: var(--cdt-ink); }

.cdt-mode input:checked + span {
	border-color: var(--cdt-violet);
	background: var(--cdt-violet-soft);
	color: var(--cdt-violet-d);
}

.cdt-mode input:focus-visible + span {
	outline: 2px solid var(--cdt-violet);
	outline-offset: 2px;
}

/* ============ PROGRESS ============ */

.cdt-progress-wrap {
	position: sticky;
	top: 0;
	z-index: 3;
	padding: 14px 0 14px;
	margin-bottom: 4px;
	background: linear-gradient(180deg, var(--cdt-surface) 74%, rgba(255, 255, 255, 0) 100%);
}

.cdt-progress-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--cdt-dim);
	margin-bottom: 7px;
}

.cdt-progress-track {
	height: 6px;
	background: var(--cdt-border);
	border-radius: 3px;
	overflow: hidden;
}

.cdt-progress-fill {
	height: 100%;
	width: 0;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--cdt-violet), var(--cdt-violet-l));
	transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

/* ============ QUESTIONS ============ */

.cdt-questions { display: grid; gap: 10px; }

.cdt-q {
	background: var(--cdt-surface);
	border: 1.5px solid var(--cdt-border);
	border-radius: var(--cdt-r);
	padding: 17px 18px 15px;
	transition: border-color .2s, background .2s;
}

.cdt-q.is-done {
	border-color: var(--cdt-violet-line);
	background: var(--cdt-violet-soft);
}

.cdt-q-num {
	font-size: 12px;
	font-weight: 600;
	color: var(--cdt-dim);
	margin-bottom: 5px;
}

.cdt-q-text {
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--cdt-ink);
	margin-bottom: 13px;
}

.cdt-opts { display: flex; flex-wrap: wrap; gap: 7px; }
.cdt-opt { cursor: pointer; flex: 1 1 auto; }
.cdt-opt input { position: absolute; opacity: 0; width: 0; height: 0; }

.cdt-opt span {
	display: block;
	text-align: center;
	padding: 9px 12px;
	border-radius: 9px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--cdt-muted);
	background: var(--cdt-surface);
	border: 1.5px solid var(--cdt-border);
	transition: all .16s;
	white-space: nowrap;
}

.cdt-opt:hover span { border-color: var(--cdt-violet-l); color: var(--cdt-ink); }

.cdt-opt input:checked + span {
	border-color: var(--cdt-violet);
	background: var(--cdt-violet);
	color: #fff;
}

.cdt-opt input:focus-visible + span {
	outline: 2px solid var(--cdt-violet);
	outline-offset: 2px;
}

/* ============ CTA ============ */

.cdt-go {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	margin-top: 20px;
	padding: 16px;
	border: none;
	border-radius: 11px;
	background: var(--cdt-violet);
	color: #fff;
	font-family: var(--cdt-display);
	font-size: 16.5px;
	font-weight: 600;
	letter-spacing: -.01em;
	cursor: pointer;
	transition: background .2s, transform .2s, box-shadow .2s;
	box-shadow: 0 4px 14px rgba(124, 58, 237, .25);
}

.cdt-go:hover:not(:disabled) {
	background: var(--cdt-violet-d);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(124, 58, 237, .32);
}

.cdt-go:disabled {
	background: var(--cdt-surface-2);
	color: var(--cdt-dim);
	box-shadow: none;
	cursor: not-allowed;
	border: 1.5px solid var(--cdt-border);
}

.cdt-go-emoji { font-size: 19px; }


/* ============ RESULTS ============ */

.cdt-results[hidden] { display: none; }

.cdt-score-card {
	background: var(--cdt-surface-2);
	border: 1px solid var(--cdt-border);
	border-radius: 18px;
	padding: 28px 24px 26px;
	text-align: center;
	margin-bottom: 12px;
}






@keyframes bfcWave {
	0%, 100% { transform: translateX(-58px) skewY(0deg); }
	50%      { transform: translateX(-58px) skewY(-1.6deg); }
}

.cdt-score-num {
	font-family: var(--cdt-display);
	font-size: 64px;
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1;
	color: var(--cdt-ink);
}

.cdt-score-pct { font-size: 30px; letter-spacing: -.02em; }

.cdt-score-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--cdt-dim);
	margin-top: 5px;
	margin-bottom: 16px;
}

.cdt-tier {
	font-family: var(--cdt-display);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--cdt-violet-d);
	margin-bottom: 9px;
	line-height: 1.22;
}

.cdt-verdict {
	font-size: 14.5px;
	color: var(--cdt-muted);
	line-height: 1.62;
	max-width: 44ch;
	margin: 0 auto;
}




/* bars */
.cdt-bars {
	background: var(--cdt-surface);
	border: 1px solid var(--cdt-border);
	border-radius: var(--cdt-r);
	padding: 20px 22px;
	margin-bottom: 12px;
}

.cdt-bars h4 {
	font-family: var(--cdt-display);
	font-size: 15px;
	font-weight: 600;
	color: var(--cdt-ink);
	margin-bottom: 15px;
}

.cdt-bar-row { margin-bottom: 13px; }
.cdt-bar-row:last-child { margin-bottom: 0; }

.cdt-bar-hd {
	display: flex;
	justify-content: space-between;
	font-size: 13.5px;
	margin-bottom: 5px;
}

.cdt-bar-hd span:first-child { color: var(--cdt-muted); font-weight: 500; }
.cdt-bar-hd span:last-child { color: var(--cdt-ink); font-weight: 700; }

.cdt-bar-track {
	height: 8px;
	background: var(--cdt-border);
	border-radius: 4px;
	overflow: hidden;
}

.cdt-bar-fill {
	height: 100%;
	width: 0;
	border-radius: 4px;
	background: var(--cdt-violet);
	transition: width 1s cubic-bezier(.4, 0, .2, 1);
}

.cdt-fill-warn { background: var(--cdt-warn); }
.cdt-fill-good { background: var(--cdt-good); }

/* tip */
.cdt-tip {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--cdt-violet-soft);
	border: 1px solid var(--cdt-violet-line);
	border-radius: 12px;
	padding: 15px 16px;
	margin-bottom: 18px;
}

.cdt-tip-icon { font-size: 19px; flex-shrink: 0; line-height: 1.4; }
.cdt-tip p { font-size: 13.5px; line-height: 1.6; color: var(--cdt-ink-soft); }

/* actions */
.cdt-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cdt-btn {
	flex: 1 1 160px;
	padding: 14px;
	border-radius: 11px;
	font-family: var(--cdt-display);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
}

.cdt-btn-share {
	border: none;
	background: var(--cdt-ink);
	color: #fff;
}

.cdt-btn-share:hover { background: var(--cdt-ink-soft); transform: translateY(-1px); }

.cdt-btn-ghost {
	background: var(--cdt-surface);
	border: 1.5px solid var(--cdt-border);
	color: var(--cdt-muted);
}

.cdt-btn-ghost:hover { border-color: var(--cdt-violet); color: var(--cdt-violet-d); }


@keyframes bfcFall {
	to { transform: translateY(105vh) rotate(300deg); opacity: 0; }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 560px) {
	.cdt-app { margin: 20px auto; border-radius: 16px; }
	.cdt-header { padding: 28px 18px 20px; }
	.cdt-title { font-size: 26px; }
	.cdt-body, .cdt-results { padding: 18px 16px 24px; }
	.cdt-score-num { font-size: 54px; }
	.cdt-tier { font-size: 21px; }
	.cdt-opt { flex: 1 1 100%; }
	.cdt-opt span { white-space: normal; }
}

/* ============ MOTION PREFERENCES ============ */

@media (prefers-reduced-motion: reduce) {
	.cdt-app *,
	.cdt-app *::before,
	.cdt-app *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* ============ CRUSH-SPECIFIC ============ */





/* category breakdown */






/* what to do next */




/* the honest reminder, shown at every score */




/* ============ ORANGE PEEL SPECIFIC ============ */

.cdt-section-head {
	margin: 26px 0 12px;
	padding-top: 20px;
	border-top: 1px solid var(--cdt-border);
}

.cdt-section-head:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.cdt-section-head h3 {
	font-family: var(--cdt-display);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -.01em;
	margin-bottom: 4px;
}

.cdt-section-head p {
	font-size: 13px;
	line-height: 1.55;
	color: var(--cdt-muted);
}

/* the orange, which fills segment by segment with the score */





/* bars */
.cdt-bars {
	background: var(--cdt-surface);
	border: 1px solid var(--cdt-border);
	border-radius: var(--cdt-r);
	padding: 20px 22px;
	margin-bottom: 12px;
}

.cdt-bars h4 {
	font-family: var(--cdt-display);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}

.cdt-bar-row { margin-bottom: 13px; }
.cdt-bar-row:last-child { margin-bottom: 0; }

.cdt-bar-hd {
	display: flex;
	justify-content: space-between;
	font-size: 13.5px;
	margin-bottom: 5px;
}

.cdt-bar-hd span:first-child { color: var(--cdt-muted); font-weight: 500; }
.cdt-bar-hd span:last-child { color: var(--cdt-ink); font-weight: 700; }

.cdt-bar-track {
	height: 8px;
	background: var(--cdt-border);
	border-radius: 4px;
	overflow: hidden;
}

.cdt-bar-fill {
	height: 100%;
	width: 0;
	border-radius: 4px;
	background: var(--cdt-violet);
	transition: width 1s cubic-bezier(.4,0,.2,1);
}

/* reciprocity: the two-sided read */









/* advice */
.cdt-next {
	background: var(--cdt-violet-soft);
	border: 1px solid var(--cdt-violet-line);
	border-radius: var(--cdt-r);
	padding: 20px 22px;
	margin-bottom: 12px;
}

.cdt-next h4 {
	font-family: var(--cdt-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--cdt-violet-d);
	margin-bottom: 9px;
}

.cdt-next p {
	font-size: 14px;
	line-height: 1.62;
	color: var(--cdt-ink-soft);
}

/* honest limits */
.cdt-real {
	background: var(--cdt-surface-2);
	border: 1px solid var(--cdt-border);
	border-left: 3px solid var(--cdt-ink);
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 18px;
}

.cdt-real p {
	font-size: 13.5px;
	line-height: 1.62;
	color: var(--cdt-ink-soft);
}

.cdt-real strong { color: var(--cdt-ink); }

/* ============ BIRD TEST SPECIFIC ============ */

/* headline: turn-toward rate against the research benchmark */






/* tick sits ABOVE the label so the ticks stay aligned no matter how many
   lines each label wraps to */





/* response mix */










/* two-sided rates */





@media (max-width: 560px) {
}

/* ============ GHOSTLIGHTING SPECIFIC ============ */

.cdt-bars {
	background: var(--cdt-surface);
	border: 1px solid var(--cdt-border);
	border-radius: var(--cdt-r);
	padding: 20px 22px;
	margin-bottom: 12px;
}

.cdt-bars h4 {
	font-family: var(--cdt-display);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.cdt-bars > p {
	font-size: 13px;
	line-height: 1.55;
	color: var(--cdt-muted);
	margin-bottom: 16px;
}

.cdt-bar-row { margin-bottom: 15px; }
.cdt-bar-row:last-child { margin-bottom: 0; }

.cdt-bar-hd {
	display: flex;
	justify-content: space-between;
	font-size: 13.5px;
	margin-bottom: 5px;
}

.cdt-bar-hd span:first-child { color: var(--cdt-ink); font-weight: 600; }
.cdt-bar-hd span:last-child { color: var(--cdt-ink); font-weight: 700; }

.cdt-bar-track {
	height: 8px;
	background: var(--cdt-border);
	border-radius: 4px;
	overflow: hidden;
}

.cdt-bar-fill {
	height: 100%;
	width: 0;
	border-radius: 4px;
	background: var(--cdt-violet);
	transition: width 1s cubic-bezier(.4,0,.2,1);
}

.cdt-bar-fill.is-high { background: #e11d48; }


/* the section about the effect on you, styled to stand apart */





/* what this is not */






/* steady closing note */



/* ============ BREADCRUMBING SPECIFIC ============ */

/* the 2x2: contact against progression */










/* the gap readout */





/* what it is not */






.cdt-support {
	background: var(--cdt-surface-2);
	border: 1px solid var(--cdt-border);
	border-left: 3px solid var(--cdt-violet);
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 18px;
}

.cdt-support p {
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--cdt-ink-soft);
}

.cdt-support strong { color: var(--cdt-ink); }

@media (max-width: 560px) {
}

/* ============ FUTURE PROOFING SPECIFIC ============ */

/* each card asks the same question twice: you, then them */
.cdt-q { padding-bottom: 6px; }





.cdt-opt input:checked + span.is-unknown {
	background: var(--cdt-surface-2);
	border-color: var(--cdt-dim);
	color: var(--cdt-muted);
}

/* headline pair: alignment and blind spots */






/* the per-dimension table */









/* conversation prompts */
.cdt-talk {
	background: var(--cdt-violet-soft);
	border: 1px solid var(--cdt-violet-line);
	border-radius: var(--cdt-r);
	padding: 20px 22px;
	margin-bottom: 12px;
}

.cdt-talk h4 {
	font-family: var(--cdt-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--cdt-violet-d);
	margin-bottom: 6px;
}

.cdt-talk > p {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--cdt-ink-soft);
	margin-bottom: 12px;
}

.cdt-talk ol { padding-left: 20px; }

.cdt-talk li {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--cdt-ink-soft);
	margin-bottom: 8px;
	padding-left: 3px;
}

.cdt-talk li:last-child { margin-bottom: 0; }

.cdt-support {
	background: var(--cdt-surface-2);
	border: 1px solid var(--cdt-border);
	border-left: 3px solid var(--cdt-violet);
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 18px;
}

.cdt-support p { font-size: 13.5px; line-height: 1.65; color: var(--cdt-ink-soft); }
.cdt-support strong { color: var(--cdt-ink); }

@media (max-width: 560px) {
}

/* ============ SITUATIONSHIP DURATION SPECIFIC ============ */

.cdt-date-row { display: grid; gap: 12px; margin-bottom: 6px; }

.cdt-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	color: var(--cdt-ink);
	background: var(--cdt-surface-2);
	border: 1.5px solid var(--cdt-border);
	border-radius: 10px;
	transition: border-color .18s, background .18s;
}

.cdt-input:focus { border-color: var(--cdt-violet); background: var(--cdt-surface); outline: none; }
.cdt-input.is-bad { border-color: var(--cdt-warn); background: var(--cdt-warn-soft); }
.cdt-date { font-family: var(--cdt-display); font-weight: 500; }

/* milestone checklist */










/* the duration headline */




/* the timeline */












/* missing milestones */






/* the decision date */




/* ============ COST OF DATING SPECIFIC ============ */

.cdt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cdt-grid .cdt-full { grid-column: 1 / -1; }

.cdt-field { min-width: 0; }

.cdt-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--cdt-ink);
	margin-bottom: 7px;
}

.cdt-sublabel {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--cdt-muted);
	margin-top: 2px;
}

.cdt-money { position: relative; }

.cdt-money-sym {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	font-weight: 600;
	color: var(--cdt-dim);
	pointer-events: none;
}

.cdt-money .cdt-input { padding-left: 34px; }

/* headline totals */
.cdt-totals {
	background: var(--cdt-ink);
	border-radius: 18px;
	padding: 26px 24px;
	text-align: center;
	margin-bottom: 12px;
}

.cdt-total-k { font-size: 13px; font-weight: 600; color: var(--cdt-violet-l); margin-bottom: 6px; }

.cdt-total-v {
	font-family: var(--cdt-display);
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.05;
	color: #fff;
}

.cdt-total-sub { margin-top: 10px; font-size: 14px; color: #cbd5e1; }

.cdt-total-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.14);
}

.cdt-split-k { font-size: 11.5px; font-weight: 600; color: #94a3b8; margin-bottom: 3px; }

.cdt-split-v {
	font-family: var(--cdt-display);
	font-size: 21px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -.02em;
}

/* breakdown */
.cdt-break {
	background: var(--cdt-surface);
	border: 1px solid var(--cdt-border);
	border-radius: var(--cdt-r);
	padding: 20px 22px;
	margin-bottom: 12px;
}

.cdt-break h4 {
	font-family: var(--cdt-display);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}

.cdt-line { margin-bottom: 13px; }
.cdt-line:last-child { margin-bottom: 0; }

.cdt-line-hd {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 13.5px;
	margin-bottom: 5px;
}

.cdt-line-hd span:first-child { color: var(--cdt-muted); font-weight: 500; }
.cdt-line-hd span:last-child { color: var(--cdt-ink); font-weight: 700; }

.cdt-line-track {
	height: 8px;
	background: var(--cdt-border);
	border-radius: 4px;
	overflow: hidden;
}

.cdt-line-fill {
	height: 100%;
	width: 0;
	border-radius: 4px;
	transition: width 1s cubic-bezier(.4,0,.2,1);
}

.cdt-c1 { background: var(--cdt-violet); }
.cdt-c2 { background: #a78bfa; }
.cdt-c3 { background: #f59e0b; }
.cdt-c4 { background: #10b981; }

/* the per-unit stats */
.cdt-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

.cdt-stat {
	background: var(--cdt-surface-2);
	border: 1px solid var(--cdt-border);
	border-radius: var(--cdt-r);
	padding: 16px 14px;
	text-align: center;
}

.cdt-stat-k { font-size: 12px; font-weight: 600; color: var(--cdt-muted); margin-bottom: 5px; }

.cdt-stat-v {
	font-family: var(--cdt-display);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1.1;
	color: var(--cdt-ink);
}

.cdt-stat-d { font-size: 11.5px; color: var(--cdt-dim); margin-top: 4px; line-height: 1.4; }

@media (max-width: 560px) {
	.cdt-grid { grid-template-columns: 1fr; }
	.cdt-total-v { font-size: 38px; }
}
