*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--rci-font-body);
	color: var(--rci-text);
	background: var(--rci-white);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rci-container {
	width: min(100% - (var(--rci-gutter, 1.5rem) * 2), var(--rci-container));
	margin-inline: auto;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	left: 1rem;
	top: 1rem;
	z-index: 100000;
	background: var(--rci-navy);
	color: var(--rci-white);
	padding: 0.75rem 1rem;
}

.site-main {
	min-height: 40vh;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* wpautop wraps leading HTML comments in empty <p> tags — hide them so they add no spacing. */
.site-main > p:empty {
	display: none;
	margin: 0;
}

.site-footer {
	margin-top: 0;
}

.rci-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--rci-font-display);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 0;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.rci-btn:hover,
.rci-btn:focus-visible {
	transform: translateY(-1px);
}

/* Hostinger preview / staging notice */
.rci-preview-banner {
	background: #082844;
	color: #fff;
	font-size: 0.82rem;
	line-height: 1.4;
	text-align: center;
	padding: 0.55rem 1rem;
}

.rci-preview-banner a {
	color: #f0d9a0;
	text-decoration: underline;
	font-weight: 700;
}
