/*
 * ForgeWP Framework – Frontend Stylesheet
 * Version: 1.0.0
 *
 * Provides base styles for elements rendered on the public-facing site by
 * ForgeWP Framework. Intentionally minimal – themes should extend these
 * selectors rather than override them.
 * ============================================================================ */

/* ── Field wrapper ───────────────────────────────────────────────────────── */

.forgewp-field {
	margin-bottom: 1rem;
}

.forgewp-field + .forgewp-field {
	margin-top: 0;
}

/* ── Label ───────────────────────────────────────────────────────────────── */

.forgewp-field__label {
	display: block;
	margin-bottom: 4px;
	font-weight: 600;
}

/* ── Value ───────────────────────────────────────────────────────────────── */

.forgewp-field__value {
	display: block;
}

/* ── Field group container ───────────────────────────────────────────────── */

.forgewp-field-group {
	margin-bottom: 2rem;
}

/* ── Image fields ────────────────────────────────────────────────────────── */

.forgewp-field__value img {
	max-width: 100%;
	height: auto;
}

/* ── Repeater rows ───────────────────────────────────────────────────────── */

.forgewp-repeater-row {
	padding: 1rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.forgewp-repeater-row:last-child {
	border-bottom: none;
}
