/*
 * Site chrome (header/footer) and Content Builder section layout —
 * base layer only, not final design.
 */

.site-header {
	border-bottom: 1px solid var(--color-border);
	background: var(--color-bg-alt);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1rem;
}

.site-header__brand {
	display: flex;
	align-items: center;
	color: var(--color-text);
	text-decoration: none;
	font-weight: 700;
	font-size: var(--text-lg);
}

.site-header__logo {
	max-height: 44px;
	width: auto;
}

.site-header__nav ul {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header__nav a {
	color: var(--color-text);
	text-decoration: none;
}

.mega-menu {
	position: absolute;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	padding: 0.5rem;
}

.site-footer {
	border-top: 1px solid var(--color-border);
	background: var(--color-primary);
	color: #fff;
	margin-top: 3rem;
}

.site-footer__inner {
	padding-block: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.site-footer__social {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__social a,
.site-footer__nav a {
	color: #fff;
}

.site-footer__copyright {
	font-size: var(--text-sm);
	opacity: 0.8;
	margin: 0;
}

.sfe-section {
	padding-block: clamp(2rem, 5vw, 3.5rem);
}

.sfe-section__title {
	font-size: var(--text-2xl);
	margin-bottom: 1rem;
}

.sfe-section--hero {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.sfe-section--hero .sfe-section__body {
	flex: 1 1 320px;
}

.sfe-section--hero .sfe-section__media {
	flex: 1 1 320px;
}

.sfe-section--hero .sfe-section__media img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.sfe-section--cta {
	text-align: center;
	background: var(--color-bg);
	border-radius: 10px;
}

.sfe-feature {
	text-align: center;
}

.sfe-feature__icon img {
	max-width: 48px;
	margin-inline: auto;
}

.sfe-gallery__item img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.page-header,
.entry-header {
	margin-bottom: 1.5rem;
}

.entry-media img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}

.breadcrumbs {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.breadcrumbs a {
	color: inherit;
}

.pagination {
	display: flex;
	gap: 0.5rem;
	margin-top: 2rem;
}
