/**
 * Calculadora Alicia AI – Todo en Uno
 * All rules scoped under .alc-root to prevent style bleed in WordPress themes.
 */

.alc-root {
	--p: #244434;
	--p2: #2d5541;
	--ac: #F7AD00;
	--ac2: #ffc23d;
	--bg: #FCFCFA;
	--cd: #FFFFFF;
	--hd: #1D2939;
	--tx: #475467;
	--bd: #ECEFF3;
	--bd2: #E0E4EA;
	--key: #F4F6F5;
	--keyt: #1D2939;
	--keyh: #E9EDEB;
	--db: #16271F;
	--dt: #FFFFFF;
	--dm: rgba(255, 255, 255, .45);
	--mu: #98A2B3;
	--ib: #F8FAF9;
	--ok: #12B76A;
	--okb: #ECF8F1;
	--er: #F04438;
	--erb: #FEF3F2;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, .04);
	--shadow-md: 0 4px 16px rgba(16, 24, 40, .06);
	--shadow-lg: 0 12px 32px rgba(16, 24, 40, .10);
	--shadow-glow: 0 0 0 4px rgba(247, 173, 0, .12);

	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--bg);
	color: var(--tx);
	border-radius: 22px;
	border: 1px solid var(--bd);
	overflow: hidden;
	max-width: 740px;
	margin: 0 auto;
	box-sizing: border-box;
	box-shadow: var(--shadow-lg);
}
.alc-root.dk {
	--bg: #0E1A15;
	--cd: #16251D;
	--hd: #F5F7F6;
	--tx: #9FACA5;
	--bd: #223529;
	--bd2: #2c4034;
	--key: #1C2D24;
	--keyt: #ECF1EE;
	--keyh: #28392F;
	--db: #0A1410;
	--dt: #FFFFFF;
	--mu: #65786F;
	--ib: #131F19;
	--okb: #15291F;
	--erb: #2E1716;
	--shadow-lg: 0 12px 36px rgba(0, 0, 0, .45);
}
.alc-root *,
.alc-root *::before,
.alc-root *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.alc-root .ic {
	display: inline-flex;
	width: 1em;
	height: 1em;
	vertical-align: -.125em;
}
.alc-root .ic svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ===== HEADER ===== */
.alc-root .ac-header {
	background: linear-gradient(135deg, var(--p) 0%, var(--p2) 100%);
	padding: 17px 22px;
	display: flex;
	align-items: center;
	gap: 13px;
	position: relative;
	overflow: hidden;
}
.alc-root .ac-header::after {
	content: "";
	position: absolute;
	right: -50px;
	top: -50px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(247, 173, 0, .16) 0%, transparent 70%);
	pointer-events: none;
}
.alc-root .ac-header::before {
	content: "";
	position: absolute;
	left: 40%;
	bottom: -60px;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 70%);
	pointer-events: none;
}
.alc-root .ac-logo {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .15));
}
.alc-root .ac-brand {
	line-height: 1;
	position: relative;
	z-index: 1;
}
.alc-root .ac-brand-name {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -.4px;
	color: #fff;
}
.alc-root .ac-brand-name .ai {
	color: var(--ac);
}
.alc-root .ac-brand-sub {
	font-size: 10.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, .55);
	margin-top: 3px;
	letter-spacing: .2px;
}
.alc-root .ac-head-actions {
	margin-left: auto;
	display: flex;
	gap: 8px;
	position: relative;
	z-index: 1;
}
.alc-root .ac-head-btn {
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .18);
	color: rgba(255, 255, 255, .9);
	border-radius: 10px;
	padding: 7px 12px;
	font-family: inherit;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all .18s cubic-bezier(.4, 0, .2, 1);
}
.alc-root .ac-head-btn:hover {
	background: rgba(255, 255, 255, .18);
	transform: translateY(-1px);
}
.alc-root .ac-head-btn:active {
	transform: translateY(0) scale(.96);
}
.alc-root .ac-head-btn .ic {
	font-size: 14px;
}

/* ===== BODY ===== */
.alc-root .ac-body {
	padding: 18px;
}

/* ===== MODE BAR ===== */
.alc-root .mbar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 7px;
	margin-bottom: 16px;
}
.alc-root .mt {
	padding: 10px 4px;
	border: 1.5px solid var(--bd);
	background: var(--cd);
	font-family: inherit;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--tx);
	border-radius: 12px;
	cursor: pointer;
	transition: all .18s cubic-bezier(.4, 0, .2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	position: relative;
}
.alc-root .mt .ic {
	font-size: 16px;
	color: var(--mu);
	transition: color .18s;
}
.alc-root .mt:hover {
	border-color: var(--p);
	color: var(--p);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}
.alc-root .mt:hover .ic {
	color: var(--p);
}
.alc-root .mt:focus-visible {
	outline: 2px solid var(--ac);
	outline-offset: 2px;
}
.alc-root .mt.on {
	background: var(--p);
	border-color: var(--p);
	color: #fff;
	box-shadow: 0 4px 14px rgba(36, 68, 52, .28);
	transform: translateY(-1px);
}
.alc-root .mt.on .ic {
	color: var(--ac);
}

/* ===== SHELL ===== */
.alc-root .shell {
	background: var(--cd);
	border: 1px solid var(--bd);
	border-radius: 20px;
	padding: 16px;
	box-shadow: var(--shadow-md);
	animation: shellIn .3s cubic-bezier(.4, 0, .2, 1);
}
@keyframes shellIn {
	from { opacity: 0; transform: translateY(6px) scale(.99); }
	to { opacity: 1; transform: none; }
}

/* ===== TOP ACTIONS (clear) ===== */
.alc-root .topbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 10px;
}
.alc-root .clearbtn {
	background: var(--ib);
	border: 1.5px solid var(--bd2);
	color: var(--tx);
	border-radius: 10px;
	padding: 7px 13px;
	font-family: inherit;
	font-size: 11.5px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all .16s;
}
.alc-root .clearbtn .ic {
	font-size: 13px;
}
.alc-root .clearbtn:hover {
	background: var(--erb);
	border-color: rgba(240, 68, 56, .35);
	color: var(--er);
}
.alc-root .clearbtn:active {
	transform: scale(.96);
}
.alc-root .clearbtn.flash {
	animation: clearFlash .4s;
}
@keyframes clearFlash {
	0% { background: var(--erb); border-color: var(--er); color: var(--er); }
	100% { background: var(--ib); border-color: var(--bd2); color: var(--tx); }
}

/* ===== DISPLAY (calc) ===== */
.alc-root .disp {
	background: linear-gradient(160deg, var(--db) 0%, #0F1D17 100%);
	border-radius: 16px;
	padding: 18px 20px;
	margin-bottom: 13px;
	text-align: right;
	min-height: 94px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.alc-root .disp::after {
	content: "";
	position: absolute;
	left: -30px;
	top: -30px;
	width: 130px;
	height: 130px;
	background: radial-gradient(circle, rgba(247, 173, 0, .1) 0%, transparent 70%);
	pointer-events: none;
}
.alc-root .ex {
	font-size: 15px;
	color: var(--dm);
	font-weight: 500;
	min-height: 20px;
	word-break: break-all;
	line-height: 1.4;
	font-variant-numeric: tabular-nums;
	transition: opacity .15s;
}
.alc-root .rs {
	font-size: 34px;
	color: var(--dt);
	font-weight: 800;
	letter-spacing: -1px;
	word-break: break-all;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
	transition: transform .15s;
}
.alc-root .rs.bump {
	animation: bump .25s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes bump {
	0% { transform: scale(1); }
	40% { transform: scale(1.06); }
	100% { transform: scale(1); }
}
.alc-root .rs.er {
	color: #FF8A80;
	font-size: 21px;
}
.alc-root .deg {
	position: absolute;
	left: 18px;
	bottom: 16px;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .5px;
	color: var(--ac);
	background: rgba(247, 173, 0, .16);
	padding: 4px 9px;
	border-radius: 7px;
	cursor: pointer;
	border: 1px solid rgba(247, 173, 0, .28);
	z-index: 1;
	user-select: none;
	transition: all .15s;
}
.alc-root .deg:hover {
	background: rgba(247, 173, 0, .26);
}

/* ===== KEYS ===== */
.alc-root .spad {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 7px;
	margin-bottom: 7px;
}
.alc-root .spad.hide {
	display: none;
}
.alc-root .pad {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 7px;
}
.alc-root .k {
	border: none;
	border-radius: 13px;
	height: 52px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	background: var(--key);
	color: var(--keyt);
	transition: all .12s cubic-bezier(.4, 0, .2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}
.alc-root .k:hover {
	background: var(--keyh);
	transform: translateY(-1px);
}
.alc-root .k:active {
	transform: scale(.93);
}
.alc-root .k:focus-visible {
	outline: 2px solid var(--ac);
	outline-offset: 2px;
}
.alc-root .k.s {
	height: 43px;
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	border: 1.5px solid var(--bd);
	color: var(--tx);
}
.alc-root .k.s:hover {
	background: var(--key);
	border-color: var(--p);
	color: var(--p);
}
.alc-root .k.op {
	background: rgba(36, 68, 52, .09);
	color: var(--p);
	font-weight: 800;
}
.alc-root.dk .k.op {
	background: rgba(247, 173, 0, .11);
	color: var(--ac);
}
.alc-root .k.op:hover {
	background: rgba(36, 68, 52, .16);
}
.alc-root .k.eq {
	background: linear-gradient(135deg, var(--ac) 0%, var(--ac2) 100%);
	color: #1D2939;
	box-shadow: 0 3px 10px rgba(247, 173, 0, .3);
}
.alc-root .k.eq:hover {
	box-shadow: 0 5px 16px rgba(247, 173, 0, .42);
}
.alc-root .k.cl {
	color: #F04438;
}

/* ===== HISTORY ===== */
.alc-root .hist {
	margin-top: 13px;
	border-top: 1px dashed var(--bd2);
	padding-top: 11px;
}
.alc-root .hh {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.alc-root .ht {
	font-size: 10.5px;
	font-weight: 800;
	color: var(--mu);
	text-transform: uppercase;
	letter-spacing: .6px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.alc-root .hc {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--mu);
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: color .15s;
}
.alc-root .hc:hover {
	color: var(--er);
}
.alc-root .hl {
	margin-top: 9px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-height: 124px;
	overflow-y: auto;
}
.alc-root .hi {
	background: var(--key);
	border-radius: 10px;
	padding: 8px 12px;
	cursor: pointer;
	transition: all .14s;
}
.alc-root .hi:hover {
	background: var(--keyh);
	transform: translateX(2px);
}
.alc-root .hie {
	font-size: 11px;
	color: var(--mu);
	font-variant-numeric: tabular-nums;
}
.alc-root .hir {
	font-size: 15px;
	font-weight: 800;
	color: var(--hd);
	font-variant-numeric: tabular-nums;
}
.alc-root .hem {
	font-size: 12px;
	color: var(--mu);
	padding: 6px 0;
}

/* ===== SECTION LABEL / OPTION GROUPS ===== */
.alc-root .sec {
	font-size: 10.5px;
	font-weight: 800;
	color: var(--mu);
	text-transform: uppercase;
	letter-spacing: .6px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.alc-root .sec::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ac);
}
.alc-root .opg {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 16px;
}
.alc-root .ob {
	padding: 9px 14px;
	border: 1.5px solid var(--bd);
	background: var(--cd);
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--tx);
	border-radius: 10px;
	cursor: pointer;
	transition: all .16s;
}
.alc-root .ob:hover {
	border-color: var(--p);
	color: var(--p);
	transform: translateY(-1px);
}
.alc-root .ob.on {
	background: var(--p);
	border-color: var(--p);
	color: #fff;
	box-shadow: 0 3px 10px rgba(36, 68, 52, .2);
}

/* ===== FRACTION ROW ===== */
.alc-root .frow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.alc-root .fg {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}
.alc-root .fl {
	font-size: 9px;
	font-weight: 700;
	color: var(--mu);
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 2px;
}
.alc-root .ni {
	width: 64px;
	height: 46px;
	border: 2px solid var(--bd2);
	border-radius: 12px;
	background: var(--ib);
	font-family: inherit;
	font-size: 20px;
	font-weight: 800;
	color: var(--hd);
	text-align: center;
	outline: none;
	transition: all .16s;
	-moz-appearance: textfield;
	appearance: textfield;
}
.alc-root .ni::-webkit-inner-spin-button,
.alc-root .ni::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.alc-root .ni:focus {
	border-color: var(--p);
	background: var(--cd);
	box-shadow: var(--shadow-glow);
}
.alc-root .ni.er {
	border-color: var(--er);
	background: var(--erb);
}
.alc-root .dl {
	width: 64px;
	height: 2.5px;
	background: var(--hd);
	border-radius: 2px;
	margin: 2px 0;
}
.alc-root .osy {
	font-size: 25px;
	font-weight: 800;
	color: var(--p);
	margin-top: 14px;
}
.alc-root .eqs {
	font-size: 25px;
	font-weight: 800;
	color: var(--mu);
	margin-top: 14px;
}
.alc-root .rbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 66px;
}
.alc-root .rn,
.alc-root .rd {
	font-size: 23px;
	font-weight: 800;
	color: var(--p);
}
.alc-root .rln {
	width: 66px;
	height: 2.5px;
	background: var(--p);
	border-radius: 2px;
	margin: 2px 0;
}

/* ===== VISUAL BARS ===== */
.alc-root .vis {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed var(--bd2);
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.alc-root .vr {
	display: flex;
	align-items: center;
	gap: 11px;
}
.alc-root .vt {
	font-size: 11px;
	font-weight: 700;
	color: var(--p);
	min-width: 50px;
	font-variant-numeric: tabular-nums;
}
.alc-root .vb {
	flex: 1;
	height: 21px;
	background: var(--keyh);
	border-radius: 7px;
	display: flex;
	gap: 2px;
	padding: 2px;
	overflow: hidden;
}
.alc-root .vs {
	flex: 1;
	background: var(--cd);
	border-radius: 4px;
	transition: background .35s cubic-bezier(.4, 0, .2, 1);
}
.alc-root .vs.f {
	background: var(--ac);
}
.alc-root .vs.f2 {
	background: var(--p);
}
.alc-root .vp {
	font-size: 10.5px;
	font-weight: 600;
	color: var(--mu);
	min-width: 36px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

/* ===== GENERIC FIELDS (algebra / decimales / raices / porcentajes) ===== */
.alc-root .fld {
	width: 100%;
	height: 48px;
	border: 2px solid var(--bd2);
	border-radius: 13px;
	background: var(--ib);
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: var(--hd);
	padding: 0 15px;
	outline: none;
	transition: all .16s;
}
.alc-root .fld:focus {
	border-color: var(--p);
	background: var(--cd);
	box-shadow: var(--shadow-glow);
}
.alc-root .fld.mono {
	font-variant-numeric: tabular-nums;
	font-weight: 700;
}
.alc-root .hint {
	font-size: 11.5px;
	color: var(--mu);
	margin-top: 8px;
	line-height: 1.5;
}
.alc-root .run {
	width: 100%;
	height: 48px;
	background: linear-gradient(135deg, var(--p) 0%, var(--p2) 100%);
	border: none;
	border-radius: 13px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 16px rgba(36, 68, 52, .22);
	transition: all .16s;
}
.alc-root .run:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(36, 68, 52, .3);
}
.alc-root .run:active {
	transform: translateY(0) scale(.99);
}
.alc-root .run .ic {
	color: var(--ac);
	font-size: 17px;
}
.alc-root .row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
}
.alc-root .fwrap {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.alc-root .flab {
	font-size: 10px;
	font-weight: 700;
	color: var(--mu);
	text-transform: uppercase;
	letter-spacing: .5px;
}

/* ===== STEPS ===== */
.alc-root .steps {
	margin-top: 16px;
	background: var(--cd);
	border: 1px solid var(--bd);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.alc-root .sthead {
	background: var(--okb);
	border-bottom: 1px solid var(--bd);
	padding: 12px 18px;
	font-size: 11.5px;
	font-weight: 800;
	color: var(--p);
	text-transform: uppercase;
	letter-spacing: .5px;
	display: flex;
	align-items: center;
	gap: 7px;
}
.alc-root .stl {
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 13px;
}
.alc-root .si {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	opacity: 0;
	transform: translateY(6px);
	animation: stepIn .38s forwards;
}
@keyframes stepIn {
	to { opacity: 1; transform: none; }
}
.alc-root .snum {
	width: 23px;
	height: 23px;
	border-radius: 8px;
	background: var(--okb);
	color: var(--p);
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
	border: 1px solid rgba(36, 68, 52, .15);
}
.alc-root .sc {
	flex: 1;
	min-width: 0;
}
.alc-root .slab {
	font-size: 12.5px;
	font-weight: 800;
	color: var(--hd);
	margin-bottom: 3px;
}
.alc-root .sd {
	font-size: 12.5px;
	color: var(--tx);
	line-height: 1.55;
}
.alc-root .sm {
	font-size: 14px;
	font-weight: 700;
	color: var(--p);
	margin-top: 6px;
	background: var(--ib);
	border: 1px solid var(--bd);
	border-radius: 9px;
	padding: 8px 12px;
	display: inline-block;
	font-variant-numeric: tabular-nums;
	word-break: break-word;
}
.alc-root .fban {
	margin: 0 18px 18px;
	background: linear-gradient(135deg, var(--p) 0%, var(--p2) 100%);
	border-radius: 14px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.alc-root .fban::after {
	content: "";
	position: absolute;
	right: -20px;
	bottom: -30px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(247, 173, 0, .2) 0%, transparent 70%);
}
.alc-root .fbl {
	font-size: 10.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, .55);
	text-transform: uppercase;
	letter-spacing: .6px;
}
.alc-root .fbv {
	font-size: 25px;
	font-weight: 800;
	color: var(--ac);
	margin-top: 3px;
	letter-spacing: -.5px;
	position: relative;
	z-index: 1;
}

/* ===== MATRIX GRID ===== */
.alc-root .mx {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 8px;
}
.alc-root .mxw {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
}
.alc-root .mxg {
	display: grid;
	gap: 6px;
}
.alc-root .mxi {
	width: 50px;
	height: 44px;
	border: 2px solid var(--bd2);
	border-radius: 10px;
	background: var(--ib);
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	color: var(--hd);
	text-align: center;
	outline: none;
	transition: all .15s;
	-moz-appearance: textfield;
	appearance: textfield;
}
.alc-root .mxi::-webkit-inner-spin-button,
.alc-root .mxi::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.alc-root .mxi:focus {
	border-color: var(--p);
	background: var(--cd);
	box-shadow: var(--shadow-glow);
}
.alc-root .mxlab {
	font-size: 12px;
	font-weight: 800;
	color: var(--p);
	background: var(--okb);
	padding: 3px 10px;
	border-radius: 7px;
}
.alc-root .seg {
	display: flex;
	gap: 7px;
	margin-bottom: 13px;
	flex-wrap: wrap;
}

/* ===== ERRORS ===== */
.alc-root .err {
	font-size: 12.5px;
	color: var(--er);
	font-weight: 600;
	margin-top: 11px;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
}
.alc-root .err:empty {
	display: none;
}

/* ===== PLACE VALUE TABLE ===== */
.alc-root .pvtab {
	margin-top: 14px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
	gap: 7px;
}
.alc-root .pvc {
	background: var(--ib);
	border: 1px solid var(--bd);
	border-radius: 10px;
	padding: 9px 4px;
	text-align: center;
}
.alc-root .pvd {
	font-size: 19px;
	font-weight: 800;
	color: var(--p);
}
.alc-root .pvn {
	font-size: 9px;
	font-weight: 600;
	color: var(--mu);
	margin-top: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 560px) {
	.alc-root .mbar {
		grid-template-columns: repeat(4, 1fr);
	}
	.alc-root .rs {
		font-size: 27px;
	}
	.alc-root .mt {
		font-size: 10px;
	}
	.alc-root .row2 {
		grid-template-columns: 1fr;
	}
}
@media (prefers-reduced-motion: reduce) {
	.alc-root *,
	.alc-root *::before,
	.alc-root *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}
