/**
 * Racine Carree Calculator — input preview + metric result panel overrides.
 */

.sn-racine-calc .sn-ci-calc__inputs {
	width: 100%;
	max-width: none;
}

@media (min-width: 1024px) {
	.sn-racine-calc .sn-ci-calc__inputs {
		width: min(100%, 420px);
		max-width: 420px;
		flex-shrink: 0;
	}

	.sn-racine-calc .sn-ci-calc__results {
		align-self: stretch;
		flex: 1 1 auto;
		min-width: 0;
	}
}

.sn-racine-calc__panel {
	padding-top: 0.25rem;
}

.sn-racine-calc__lead {
	margin: 0 0 1.25rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid #e2e8f0;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--color-text-muted, #64748b);
}

.sn-racine-calc__row {
	align-items: center;
}

.sn-racine-calc__row--preview {
	margin-top: 0.35rem;
}

.sn-racine-calc__sqrt-label {
	font-weight: 600;
	color: #334155;
	white-space: nowrap;
}

.sn-racine-calc__input-group {
	width: 100%;
}

.sn-racine-calc__input {
	text-align: right;
	font-weight: 600;
}

.sn-racine-calc__result-output {
	display: block;
	width: 100%;
	min-height: 2.75rem;
	padding: 0.625rem 0.875rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	background: #f8fafc;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: right;
	color: #0f172a;
}

.sn-racine-calc__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.65rem;
	width: 100%;
	margin-top: 0.35rem;
}

.sn-racine-calc__actions .sn-ci-calc__btn-calc {
	width: 100%;
}

.sn-racine-calc__actions .sn-calc-btn--clear {
	align-self: center;
}

.sn-racine-calc__placeholder {
	margin: 0 0 1rem;
	padding: 1rem 1.125rem;
	border-radius: 8px;
	background: #f1f5f9;
	border: 1px dashed #cbd5e1;
	color: #475569;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.sn-racine-calc__placeholder[hidden],
.sn-racine-calc__detail[hidden] {
	display: none !important;
}

.sn-racine-calc__metrics {
	margin-top: 0;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
}

.sn-racine-calc__steps {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.sn-racine-calc__steps-title {
	margin: 0 0 0.5rem;
	font-family: var(--font-heading, Sora, sans-serif);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #1e293b;
}

.sn-racine-calc__steps-list {
	margin: 0;
	padding-left: 1.2rem;
	color: #334155;
	font-size: 0.875rem;
	line-height: 1.55;
}

.sn-racine-calc__steps-list li + li {
	margin-top: 0.25rem;
}
