/**
 * HomeRunner Conversion Kit - Core Styles
 * Global styles for all conversion tools
 */

/* Reset & Base */
.hrck-container {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.5;
	color: #111827;
}

/* Utility Classes */
.hrck-hidden {
	display: none !important;
}

.hrck-visible {
	display: block !important;
}

.hrck-fade-in {
	animation: hrckFadeIn 0.3s ease-in;
}

@keyframes hrckFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Screen Reader Only */
.hrck-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
