/* ==========================================================================
   Made in USA block — frontend
   Typography matches the machine-selector block: Georama (sans), Georgia (serif).
   Selectors are double-scoped (.rm-made-usa .rm-made-usa__*) to win over the
   theme's content heading/paragraph styles.
   ========================================================================== */

.rm-made-usa {
	--rm-font-sans:  'Georama', 'Verdana', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--rm-font-serif: Georgia, Times, serif;

	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 60px 0 30px;
	box-sizing: border-box;
}

.rm-made-usa *,
.rm-made-usa *::before,
.rm-made-usa *::after {
	box-sizing: border-box;
}

.rm-made-usa .rm-made-usa__badge {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	border: 1px solid #a5a5a5;
}

.rm-made-usa .rm-made-usa__badge img {
	display: block;
	width: 54px;
	height: auto;
}

.rm-made-usa .rm-made-usa__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	flex: 1 1 auto;
}

.rm-made-usa .rm-made-usa__title {
	margin: 0;
	padding: 0;
	font-family: var(--rm-font-sans);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	color: #000;
}

.rm-made-usa .rm-made-usa__text {
	margin: 0;
	padding: 0;
	font-family: var(--rm-font-serif);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.8;
	color: #000;
}

/* Mobile — stack the badge above the text */
@media (max-width: 600px) {
	.rm-made-usa {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 20px 0;
	}

	.rm-made-usa .rm-made-usa__title {
		font-size: 20px;
	}

	.rm-made-usa .rm-made-usa__text {
		font-size: 16px;
		line-height: 1.7;
	}
}
