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

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

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

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

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


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

	--stu-r: 14px;
}

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

.stu-app {
	max-width: 620px;
	margin: 32px auto;
	font-family: var(--stu-font);
	color: var(--stu-ink);
	background: var(--stu-surface);
	border: 1px solid var(--stu-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. */
.stu-app button,
.stu-app input {
	font-family: inherit;
}

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

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

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

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




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stu-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(--stu-violet);
	color: #fff;
	font-family: var(--stu-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);
}

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

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

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


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

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

.stu-score-card {
	background: var(--stu-surface-2);
	border: 1px solid var(--stu-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); }
}

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

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

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

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

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




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

@media (prefers-reduced-motion: reduce) {
	.stu-app *,
	.stu-app *::before,
	.stu-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 ============ */

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

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

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

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

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





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

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

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

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

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

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

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

/* reciprocity: the two-sided read */









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

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

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

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

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

.stu-real strong { color: var(--stu-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 ============ */

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

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

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

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

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

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

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

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

.stu-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 */






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

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

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

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

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

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





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

/* headline pair: alignment and blind spots */






/* the per-dimension table */









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

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

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

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

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

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

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

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

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

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

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

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

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

/* milestone checklist */
.stu-milestones { display: grid; gap: 8px; margin-top: 4px; }

.stu-ms { cursor: pointer; display: block; }
.stu-ms input { position: absolute; opacity: 0; width: 0; height: 0; }

.stu-ms-box {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 13px 15px;
	border-radius: 11px;
	border: 1.5px solid var(--stu-border);
	background: var(--stu-surface);
	transition: all .16s;
}

.stu-ms:hover .stu-ms-box { border-color: var(--stu-violet-l); }

.stu-ms input:checked + .stu-ms-box {
	border-color: var(--stu-violet);
	background: var(--stu-violet-soft);
}

.stu-ms input:focus-visible + .stu-ms-box { outline: 2px solid var(--stu-violet); outline-offset: 2px; }

.stu-tick {
	flex-shrink: 0;
	width: 19px;
	height: 19px;
	margin-top: 1px;
	border-radius: 6px;
	border: 1.5px solid var(--stu-border);
	background: var(--stu-surface);
	position: relative;
	transition: all .16s;
}

.stu-ms input:checked + .stu-ms-box .stu-tick {
	background: var(--stu-violet);
	border-color: var(--stu-violet);
}

.stu-ms input:checked + .stu-ms-box .stu-tick::after {
	content: "";
	position: absolute;
	left: 5.5px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.stu-ms-text { font-size: 14px; line-height: 1.5; color: var(--stu-ink); }

/* the duration headline */
.stu-duration {
	background: var(--stu-ink);
	border-radius: 18px;
	padding: 28px 24px;
	text-align: center;
	margin-bottom: 12px;
}

.stu-dur-k { font-size: 13px; font-weight: 600; color: var(--stu-violet-l); margin-bottom: 8px; }

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

.stu-dur-d { margin-top: 9px; font-size: 14px; color: #cbd5e1; }

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

.stu-timeline h4 {
	font-family: var(--stu-display);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.stu-timeline > p {
	font-size: 13px;
	line-height: 1.55;
	color: var(--stu-muted);
	margin-bottom: 18px;
}

.stu-track-wrap { position: relative; padding-bottom: 8px; }

.stu-track {
	height: 10px;
	border-radius: 5px;
	background: var(--stu-border);
	overflow: hidden;
}

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

.stu-track-fill.is-behind { background: #f59e0b; }
.stu-track-fill.is-stalled { background: #e11d48; }

.stu-track-meta {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--stu-dim);
}

.stu-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 16px;
}

.stu-comp {
	background: var(--stu-surface-2);
	border: 1px solid var(--stu-border);
	border-radius: 10px;
	padding: 14px 12px;
	text-align: center;
}

.stu-comp-k { font-size: 12px; font-weight: 600; color: var(--stu-muted); margin-bottom: 4px; }

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

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

.stu-missing h4 {
	font-family: var(--stu-display);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}

.stu-missing ul { list-style: none; }

.stu-missing li {
	position: relative;
	padding: 9px 0 9px 26px;
	border-top: 1px solid var(--stu-border);
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--stu-ink-soft);
}

.stu-missing li:first-child { border-top: none; }

.stu-missing li::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 15px;
	width: 11px;
	height: 11px;
	border-radius: 4px;
	border: 1.5px solid var(--stu-dim);
}

/* the decision date */
.stu-decide {
	background: var(--stu-violet-soft);
	border: 1px solid var(--stu-violet-line);
	border-radius: var(--stu-r);
	padding: 20px 22px;
	margin-bottom: 12px;
	text-align: center;
}

.stu-decide h4 {
	font-family: var(--stu-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--stu-violet-d);
	margin-bottom: 8px;
}

.stu-decide-date {
	font-family: var(--stu-display);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--stu-ink);
	margin-bottom: 9px;
}

.stu-decide p {
	font-size: 13.5px;
	line-height: 1.62;
	color: var(--stu-ink-soft);
	max-width: 46ch;
	margin: 0 auto;
}
