/* Site Cloner theme base */
*,
*::before,
*::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.6;
	color: #1a1a1a;
	background: #fff;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

.sc-site-header,
.site-header {
	width: 100%;
}

.sc-branding {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.sc-branding img,
.custom-logo {
	max-height: 64px;
	width: auto;
}

.sc-nav .menu,
.sc-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.sc-nav a {
	text-decoration: none;
}

.sc-site-main {
	display: block;
	width: 100%;
}

.site-cloner-content {
	max-width: 100%;
}

.sc-site-footer,
.site-footer {
	width: 100%;
}

@media (max-width: 782px) {
	.sc-nav .menu,
	.sc-nav ul {
		flex-direction: column;
	}
}