/* =========================================================
   GLOBAL
   ========================================================= */

:root {
	--site-width: 1400px;
	--site-gutter: 20px;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
}

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

button,
input,
textarea,
select {
	font: inherit;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container {
	width: min(
		var(--site-width),
		calc(100% - (var(--site-gutter) * 2))
	);

	margin-inline: auto;
}


/* =========================================================
   FULL WIDTH SECTION
   ========================================================= */

.section {
	width: 100%;
}


/* =========================================================
   COMMON SECTION INNER
   ========================================================= */

.section__inner {
	width: min(
		var(--site-width),
		calc(100% - (var(--site-gutter) * 2))
	);

	margin-inline: auto;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


/* =========================================================
   WORDPRESS CONTENT
   ========================================================= */

.wp-block {
	max-width: var(--site-width);
	margin-inline: auto;
}