/**
 * Raw Fit — Feature Card (shared editor + frontend styles).
 * CSS custom properties fall back to hard values so the block also looks
 * correct inside the editor iframe where the theme stylesheet may be absent.
 */
.rf-feature-card {
	--rf-accent: #ddfe00;
	position: relative;
	padding: 28px 24px;
	border: 1px solid var(--line, #e6e8df);
	border-radius: var(--r-lg, 20px);
	background: var(--soft, #f6f8f2);
	box-shadow: var(--sh, 0 2px 5px -1px rgba(20, 30, 10, 0.08));
}

.rf-feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 3px;
	background: var(--rf-accent);
	border-radius: 0 0 3px 3px;
}

.rf-feature-card__n {
	font-family: var(--mono, "JetBrains Mono", ui-monospace, monospace);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-3, #8b9599);
	letter-spacing: 0.08em;
	margin-bottom: 14px;
}

.rf-feature-card__t {
	font-family: var(--disp, "Inter Tight", system-ui, sans-serif);
	font-size: 20px;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--ink, #0a1012);
	margin: 0 0 8px;
}

.rf-feature-card__d {
	font-size: 15px;
	line-height: 1.5;
	color: var(--ink-2, #4a5459);
	margin: 0;
}
