/**
 * Expertis – Soát xét rủi ro hệ thống lương
 *
 * ĐỘ ƯU TIÊN — phần dễ sai nhất khi nhúng vào Elementor.
 *
 *   Theme + Elementor          ~0,2,1   (vd .elementor-widget-text-editor p)
 *   A. RESET   .epr.epr.epr :where(tag)  = 0,3,0   → thắng Elementor
 *   B. THIẾT KẾ .epr.epr.epr .lớp        = 0,4,0   → thắng cả reset lẫn Elementor
 *
 * Reset phải đủ cao để chặn kế thừa từ theme, nhưng phải THẤP HƠN phần thiết kế,
 * nếu không nó xoá sạch chính giao diện của công cụ. `:where()` có độ ưu tiên
 * bằng 0 nên giữ được khoảng cách đó mà không cần dùng !important.
 *
 * Khi thêm quy tắc mới, LUÔN viết đủ tiền tố `.epr.epr.epr`.
 */

/* ============================================================
   A. RESET — chặn mọi thứ theme và Elementor áp vào
   ============================================================ */

.epr.epr.epr,
.epr.epr.epr :where(*),
.epr.epr.epr :where(*)::before,
.epr.epr.epr :where(*)::after {
	box-sizing: border-box;
	min-width: 0;
}

.epr.epr.epr {
	display: block;
	float: none;
	clear: both;
	isolation: isolate;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
	border: 0;
	background: none;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: antialiased;
}

.epr.epr.epr :where(div, section, header, article, aside, p, span, strong, em, small,
h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, thead, tbody, tr, th, td,
figure, form, fieldset, legend, label, details, summary) {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	float: none;
	position: static;
	width: auto;
	max-width: none;
	min-height: 0;
	text-transform: none;
	letter-spacing: normal;
	text-shadow: none;
	box-shadow: none;
	border-radius: 0;
	font-family: inherit;
	font-weight: inherit;
	font-style: normal;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-align: inherit;
}

.epr.epr.epr :where(ul, ol) {
	list-style: none;
}

/*
 * Nhiều theme khai font chữ tiêu đề kèm !important (ví dụ ép Fraunces cho mọi h2).
 * !important thắng mọi độ ưu tiên, nên đây là chỗ duy nhất trong file buộc phải
 * dùng lại !important để giành lại quyền kiểm soát. Bên trong công cụ luôn dùng
 * font sans của hệ thiết kế: phần trang là editorial, phần công cụ là vận hành.
 */
.epr.epr.epr,
.epr.epr.epr :where(*) {
	font-family: inherit !important;
}

.epr.epr.epr :where(h1, h2, h3, h4, h5, h6) {
	line-height: 1.3;
}

.epr.epr.epr :where(table) {
	border-collapse: collapse;
	width: 100%;
}

.epr.epr.epr :where(details, summary) {
	display: block;
}

.epr.epr.epr :where(summary) {
	list-style: none;
	cursor: pointer;
}

.epr.epr.epr :where(summary)::-webkit-details-marker,
.epr.epr.epr :where(summary)::marker {
	display: none;
	content: '';
}

.epr.epr.epr :where(input, select, textarea) {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	border-radius: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	letter-spacing: normal;
	text-transform: none;
	width: 100%;
	max-width: 100%;
	min-height: 0;
	height: auto;
}

/* Button được dựng lại hoàn toàn, nên gỡ sạch trước rồi mới style. */
.epr.epr.epr :where(button) {
	all: unset;
	box-sizing: border-box;
	display: block;
	cursor: pointer;
	font-family: inherit;
	max-width: 100%;
}

.epr.epr.epr :where(a) {
	text-decoration: none;
	box-shadow: none;
	border: 0;
	background: none;
	font-family: inherit;
}

.epr.epr.epr :where(input, select, textarea, button, a, summary):focus-visible {
	outline: 2px solid var(--epr-brand);
	outline-offset: 2px;
}

.epr.epr.epr [hidden] {
	display: none !important;
}

/* ============================================================
   B. TOKEN
   ============================================================ */

.epr.epr.epr {
	--epr-ink: var(--exp-ink, #0A1140);
	--epr-ink-2: var(--exp-ink-2, #2A368C);
	--epr-brand: var(--exp-brand, #F87B1B);
	--epr-brand-2: var(--exp-brand-2, #FF9442);
	--epr-brand-ink: var(--exp-brand-ink, #BC580E);
	--epr-paper: var(--exp-paper, #F6F4F1);
	--epr-paper-2: var(--exp-paper-2, #FAF8F5);
	--epr-card: var(--exp-card, #FFFFFF);
	--epr-body: var(--exp-body, #1F2640);
	--epr-muted: var(--exp-muted, #525A73);
	--epr-line: var(--exp-line-l, rgba(10, 17, 64, .12));
	--epr-font: var(--exp-sans, 'Be Vietnam Pro', system-ui, sans-serif);

	--epr-high: #B3362B;
	--epr-medium: var(--exp-brand-ink, #BC580E);
	--epr-low: #8A6A1F;
	--epr-clear: #2E7D4F;

	font-family: var(--epr-font) !important;
	font-size: 16px;
	line-height: 1.6;
	color: var(--epr-body);
}

/* ============================================================
   C. GIAO DIỆN
   ============================================================ */

/* ---- Vỏ ---- */

.epr.epr.epr .epr__shell {
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-top: 4px solid var(--epr-brand);
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(10, 17, 64, .04), 0 10px 28px rgba(10, 17, 64, .05);
	overflow: hidden;
}

/* ---- Header ---- */

.epr.epr.epr .epr__header {
	padding: 30px 32px 24px;
	border-bottom: 1px solid var(--epr-line);
}

.epr.epr.epr .epr__eyebrow {
	display: block;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--epr-brand-ink);
}

.epr.epr.epr .epr__title {
	margin-bottom: 10px;
	font-size: 25px;
	font-weight: 700;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__lead {
	max-width: 62ch;
	margin-bottom: 14px;
	font-size: 15px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__scope {
	padding: 10px 14px;
	background: var(--epr-paper-2);
	border-left: 3px solid var(--epr-brand);
	border-radius: 0 8px 8px 0;
	font-size: 13px;
	color: var(--epr-muted);
}

/* ---- Tiến độ ---- */

.epr.epr.epr .epr__progress {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 32px;
	background: var(--epr-paper);
	border-bottom: 1px solid var(--epr-line);
}

.epr.epr.epr .epr__progress-bar {
	flex: 1;
	height: 4px;
	background: var(--epr-line);
	border-radius: 999px;
	overflow: hidden;
}

.epr.epr.epr .epr__progress-bar span {
	display: block;
	height: 100%;
	background: var(--epr-brand);
	border-radius: 999px;
	transition: width .25s ease;
}

.epr.epr.epr .epr__progress-text {
	flex: none;
	font-size: 12px;
	font-weight: 600;
	color: var(--epr-muted);
}

/* ---- Bước ---- */

.epr.epr.epr .epr__stage {
	padding: 34px 32px 36px;
}

.epr.epr.epr .epr__step-kicker {
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--epr-brand-ink);
}

.epr.epr.epr .epr__step-title {
	max-width: 34ch;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__step-help {
	max-width: 60ch;
	margin-bottom: 24px;
	font-size: 14.5px;
	color: var(--epr-muted);
}

/* ---- Bối cảnh ---- */

.epr.epr.epr .epr__context {
	display: grid;
	gap: 22px;
	max-width: 620px;
}

.epr.epr.epr .epr__field label,
.epr.epr.epr .epr__field-label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 650;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__field input {
	height: 52px;
	padding: 0 14px;
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	color: var(--epr-ink);
	max-width: 220px;
}

.epr.epr.epr .epr__bands {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.epr.epr.epr .epr__band {
	padding: 11px 18px;
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--epr-body);
}

.epr.epr.epr .epr__band:hover {
	border-color: var(--epr-brand);
}

.epr.epr.epr .epr__band.is-selected {
	background: var(--epr-ink);
	border-color: var(--epr-ink);
	color: var(--epr-card);
}

/* ---- Lựa chọn ---- */

.epr.epr.epr .epr__options {
	display: grid;
	gap: 10px;
	max-width: 760px;
}

.epr.epr.epr .epr__option {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 17px 20px;
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-radius: 12px;
	transition: border-color .15s ease, background .15s ease;
}

.epr.epr.epr .epr__option:hover {
	border-color: var(--epr-ink-2);
	background: var(--epr-paper-2);
}

.epr.epr.epr .epr__option-mark {
	flex: none;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	border: 2px solid var(--epr-line);
	border-radius: 50%;
}

.epr.epr.epr .epr__option.is-selected {
	border-color: var(--epr-brand);
	background: var(--epr-paper-2);
}

.epr.epr.epr .epr__option.is-selected .epr__option-mark {
	border-color: var(--epr-brand);
	background: radial-gradient(circle, var(--epr-brand) 0 4px, transparent 5px);
}

.epr.epr.epr .epr__option-label {
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--epr-body);
}

/* ---- Nút ---- */

.epr.epr.epr .epr__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.epr.epr.epr .epr__next {
	padding: 13px 28px;
	background: var(--epr-brand);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

.epr.epr.epr .epr__next:hover {
	background: var(--epr-brand-2);
}

.epr.epr.epr .epr__next[disabled] {
	background: var(--epr-line);
	color: var(--epr-muted);
	cursor: not-allowed;
}

.epr.epr.epr .epr__back,
.epr.epr.epr .epr__restart,
.epr.epr.epr .epr__copy {
	padding: 10px 20px;
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--epr-ink-2);
}

.epr.epr.epr .epr__back:hover,
.epr.epr.epr .epr__restart:hover,
.epr.epr.epr .epr__copy:hover {
	border-color: var(--epr-ink-2);
}

/* ---- Đang xử lý ---- */

.epr.epr.epr .epr__skeleton {
	display: grid;
	gap: 12px;
	max-width: 520px;
	margin-top: 20px;
}

.epr.epr.epr .epr__skeleton span {
	display: block;
	height: 14px;
	background: var(--epr-paper);
	border-radius: 6px;
	animation: epr-pulse 1.2s ease-in-out infinite;
}

.epr.epr.epr .epr__skeleton span:nth-child(2) {
	width: 82%;
	animation-delay: .12s;
}

.epr.epr.epr .epr__skeleton span:nth-child(3) {
	width: 64%;
	animation-delay: .24s;
}

@keyframes epr-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .45; }
}

@media (prefers-reduced-motion: reduce) {
	.epr.epr.epr .epr__skeleton span { animation: none; }
	.epr.epr.epr .epr__progress-bar span { transition: none; }
}

/* ---- Kết quả: kết luận ---- */

.epr.epr.epr .epr__verdict {
	padding: 22px 24px;
	background: var(--epr-ink);
	border-radius: 14px;
	border-top: 3px solid var(--epr-brand);
}

.epr.epr.epr .epr__verdict-label {
	display: block;
	margin-bottom: 6px;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
}

.epr.epr.epr .epr__verdict-lead {
	max-width: 58ch;
	font-size: 15px;
	color: rgba(255, 255, 255, .72);
}

.epr.epr.epr .epr__verdict[data-level="high"] .epr__verdict-label {
	color: #FFB48A;
}

.epr.epr.epr .epr__verdict[data-level="clear"] .epr__verdict-label {
	color: #9FD9B8;
}

/* ---- Kết quả: phơi nhiễm ---- */

.epr.epr.epr .epr__exposure {
	margin-top: 14px;
	padding: 20px 24px;
	background: var(--epr-paper);
	border: 1px solid var(--epr-line);
	border-radius: 14px;
}

.epr.epr.epr .epr__exposure-caption {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__exposure-caption strong {
	font-weight: 700;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__exposure-value {
	display: block;
	margin-bottom: 8px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__exposure-note {
	max-width: 60ch;
	font-size: 12.5px;
	color: var(--epr-muted);
}

/* ---- Kết quả: bản đồ ---- */

.epr.epr.epr .epr__map {
	margin-top: 26px;
}

.epr.epr.epr .epr__map-title,
.epr.epr.epr .epr__findings-title {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__map-rows {
	display: grid;
	gap: 10px;
}

.epr.epr.epr .epr__map-row {
	padding: 14px 18px;
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-radius: 12px;
}

.epr.epr.epr .epr__map-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.epr.epr.epr .epr__map-name {
	font-size: 15px;
	font-weight: 650;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__map-badge {
	flex: none;
	font-size: 12px;
	font-weight: 700;
}

.epr.epr.epr .epr__map-meter {
	height: 5px;
	background: var(--epr-line);
	border-radius: 999px;
	overflow: hidden;
}

.epr.epr.epr .epr__map-meter span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: var(--epr-clear);
}

.epr.epr.epr .epr__map-note {
	margin-top: 8px;
	font-size: 12.5px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__map-row[data-level="high"] .epr__map-badge { color: var(--epr-high); }
.epr.epr.epr .epr__map-row[data-level="high"] .epr__map-meter span { background: var(--epr-high); }
.epr.epr.epr .epr__map-row[data-level="medium"] .epr__map-badge { color: var(--epr-medium); }
.epr.epr.epr .epr__map-row[data-level="medium"] .epr__map-meter span { background: var(--epr-medium); }
.epr.epr.epr .epr__map-row[data-level="low"] .epr__map-badge { color: var(--epr-low); }
.epr.epr.epr .epr__map-row[data-level="low"] .epr__map-meter span { background: var(--epr-low); }
.epr.epr.epr .epr__map-row[data-level="clear"] .epr__map-badge { color: var(--epr-clear); }

/* ---- Kết quả: diễn giải ---- */

.epr.epr.epr .epr__insights {
	display: grid;
	gap: 10px;
	margin-top: 26px;
}

.epr.epr.epr .epr__insight {
	padding: 16px 20px;
	border-radius: 12px;
}

.epr.epr.epr .epr__insight p {
	max-width: 68ch;
}

.epr.epr.epr .epr__insight--primary {
	background: var(--epr-paper);
	border: 1px solid rgba(42, 54, 140, .22);
}

.epr.epr.epr .epr__insight--primary p {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__insight--note {
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
}

.epr.epr.epr .epr__insight--note p {
	font-size: 14px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__insight--good {
	background: #F2F8F4;
	border: 1px solid rgba(46, 125, 79, .28);
	border-left: 3px solid var(--epr-clear);
}

.epr.epr.epr .epr__insight--good p {
	font-size: 14.5px;
	color: var(--epr-body);
}

.epr.epr.epr .epr__insight--good .epr__insight-meta {
	color: var(--epr-clear);
}

.epr.epr.epr .epr__insight--risk {
	background: #FFF7F0;
	border: 1px solid rgba(248, 123, 27, .32);
	border-left: 3px solid var(--epr-brand);
}

.epr.epr.epr .epr__insight--risk p {
	font-size: 14.5px;
	color: var(--epr-body);
}

.epr.epr.epr .epr__insight-meta {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--epr-brand-ink);
}

.epr.epr.epr .epr__insight-cta {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 20px;
	background: var(--epr-brand);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 650;
	color: #fff;
}

.epr.epr.epr .epr__insight-cta:hover {
	background: var(--epr-brand-2);
	color: #fff;
}

/* ---- Kết quả: danh sách ---- */

.epr.epr.epr .epr__findings {
	margin-top: 28px;
	border: 1px solid var(--epr-line);
	border-radius: 12px;
	background: var(--epr-paper-2);
}

.epr.epr.epr .epr__findings summary {
	position: relative;
	padding: 14px 52px 14px 18px;
}

.epr.epr.epr .epr__findings summary span {
	display: block;
	font-size: 14px;
	font-weight: 650;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__findings summary small {
	font-size: 12.5px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__findings summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 700;
	color: var(--epr-brand-ink);
}

.epr.epr.epr .epr__findings[open] summary::after {
	content: '–';
}

.epr.epr.epr .epr__findings-list {
	display: grid;
	gap: 10px;
	padding: 0 14px 14px;
	counter-reset: epr-finding;
}

.epr.epr.epr .epr__finding {
	position: relative;
	padding: 16px 20px 16px 52px;
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-radius: 12px;
	counter-increment: epr-finding;
}

.epr.epr.epr .epr__finding::before {
	content: counter(epr-finding);
	position: absolute;
	top: 16px;
	left: 18px;
	font-size: 18px;
	font-weight: 700;
	color: var(--epr-brand);
}

.epr.epr.epr .epr__finding-axis {
	display: block;
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__finding-answer {
	margin-bottom: 6px;
	font-size: 13px;
	font-style: italic;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__finding-text {
	max-width: 68ch;
	font-size: 14.5px;
	color: var(--epr-body);
}

.epr.epr.epr .epr__finding-fix {
	max-width: 68ch;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px dashed var(--epr-line);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--epr-ink-2);
}

/* ---- Kết quả: căn cứ và lỗi ---- */

.epr.epr.epr .epr__sources {
	margin-top: 22px;
	padding-top: 14px;
	border-top: 1px solid var(--epr-line);
	font-size: 12px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__actions--result {
	margin-top: 20px;
}

.epr.epr.epr .epr__error {
	margin-top: 16px;
	padding: 12px 16px;
	background: #FDF2F0;
	border-left: 3px solid var(--epr-high);
	border-radius: 0 8px 8px 0;
	font-size: 14px;
	color: #8A2A21;
}

/* ---- Công khai thông số ---- */

.epr.epr.epr .epr__disclosure {
	border-top: 1px solid var(--epr-line);
	background: var(--epr-paper-2);
}

.epr.epr.epr .epr__disclosure summary {
	position: relative;
	padding: 18px 56px 18px 32px;
}

.epr.epr.epr .epr__disclosure summary span {
	display: block;
	font-size: 14px;
	font-weight: 650;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__disclosure summary small {
	font-size: 12.5px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__disclosure summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 32px;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 700;
	color: var(--epr-brand-ink);
}

.epr.epr.epr .epr__disclosure[open] summary::after {
	content: '–';
}

.epr.epr.epr .epr__disclosure-body {
	padding: 0 32px 28px;
}

.epr.epr.epr .epr__disclosure-block {
	margin-bottom: 24px;
}

.epr.epr.epr .epr__disclosure-block h4 {
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__disclosure-block p,
.epr.epr.epr .epr__disclosure-block li {
	max-width: 76ch;
	font-size: 14px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__disclosure-block p + p {
	margin-top: 8px;
}

.epr.epr.epr .epr__disclosure-block ul {
	display: grid;
	gap: 7px;
}

.epr.epr.epr .epr__disclosure-block li {
	position: relative;
	padding-left: 16px;
}

.epr.epr.epr .epr__disclosure-block li::before {
	content: '›';
	position: absolute;
	left: 0;
	color: var(--epr-brand);
	font-weight: 700;
}

.epr.epr.epr .epr__disclosure-block strong {
	font-weight: 650;
	color: var(--epr-ink);
}

.epr.epr.epr .epr__formula {
	display: grid;
	gap: 8px;
	padding: 16px 18px;
	background: var(--epr-card);
	border: 1px solid var(--epr-line);
	border-radius: 12px;
}

.epr.epr.epr .epr__formula p {
	display: flex;
	gap: 10px;
	font-size: 13.5px;
	color: var(--epr-body);
}

.epr.epr.epr .epr__formula p span {
	flex: none;
	width: 20px;
	height: 20px;
	background: var(--epr-ink);
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	color: #fff;
}

.epr.epr.epr .epr__disclosure-caution {
	margin-top: 10px;
	padding: 10px 14px;
	background: var(--epr-card);
	border-left: 3px solid var(--epr-brand);
	border-radius: 0 8px 8px 0;
}

.epr.epr.epr .epr__params {
	display: grid;
	max-width: 540px;
}

.epr.epr.epr .epr__params > div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	border-bottom: 1px dashed var(--epr-line);
	font-size: 13.5px;
}

.epr.epr.epr .epr__params > div:last-child {
	border-bottom: 0;
}

.epr.epr.epr .epr__params dt {
	color: var(--epr-muted);
}

.epr.epr.epr .epr__params dd {
	font-weight: 650;
	color: var(--epr-ink);
	text-align: right;
}

.epr.epr.epr .epr__disclosure-sources a {
	color: var(--epr-ink-2);
	border-bottom: 1px solid transparent;
}

.epr.epr.epr .epr__disclosure-sources a:hover {
	border-bottom-color: var(--epr-ink-2);
}

/* ---- Footer ---- */

.epr.epr.epr .epr__footer {
	padding: 18px 32px 22px;
	border-top: 1px solid var(--epr-line);
	background: var(--epr-card);
}

.epr.epr.epr .epr__footer p {
	max-width: 76ch;
	font-size: 12.5px;
	color: var(--epr-muted);
}

.epr.epr.epr .epr__footer strong {
	font-weight: 650;
	color: var(--epr-ink);
}

/* ============================================================
   D. RESPONSIVE
   ============================================================ */

@media (max-width: 780px) {
	.epr.epr.epr .epr__header,
	.epr.epr.epr .epr__stage,
	.epr.epr.epr .epr__footer,
	.epr.epr.epr .epr__disclosure-body,
	.epr.epr.epr .epr__progress {
		padding-left: 20px;
		padding-right: 20px;
	}

	.epr.epr.epr .epr__disclosure summary {
		padding-left: 20px;
		padding-right: 44px;
	}

	.epr.epr.epr .epr__disclosure summary::after {
		right: 20px;
	}

	.epr.epr.epr .epr__title { font-size: 22px; }
	.epr.epr.epr .epr__step-title { font-size: 21px; }
	.epr.epr.epr .epr__verdict-label { font-size: 23px; }
	.epr.epr.epr .epr__exposure-value { font-size: 25px; }
}

@media (max-width: 480px) {
	.epr.epr.epr { font-size: 15px; }

	.epr.epr.epr .epr__stage { padding-top: 26px; padding-bottom: 28px; }
	.epr.epr.epr .epr__title { font-size: 20px; }
	.epr.epr.epr .epr__step-title { font-size: 19px; }
	.epr.epr.epr .epr__option { padding: 15px 16px; }
	.epr.epr.epr .epr__option-label { font-size: 15px; }
	.epr.epr.epr .epr__exposure-value { font-size: 22px; }
	.epr.epr.epr .epr__verdict-label { font-size: 21px; }
	.epr.epr.epr .epr__band { flex: 1 1 100%; text-align: center; }
	.epr.epr.epr .epr__actions { flex-direction: column; }
	.epr.epr.epr .epr__actions button { width: 100%; text-align: center; }
	.epr.epr.epr .epr__finding { padding-left: 44px; }
}
