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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
	background-color: #f2a827;
	color: #fff7e7;
	line-height: 1.65;
	font-weight: 600;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: #fff;
}

a:hover {
	text-decoration: none;
}

main {
	display: flex;
	justify-content: center;
	padding: clamp(3rem, 6vw, 6.5rem) clamp(1.5rem, 8vw, 11rem);
}

.page {
	width: 100%;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.75rem);
}

.logo {
	width: min(420px, 90%);
	margin: 0 auto 25px;
}

.lede {
	/* font-size: 20px;
    letter-spacing: 0.4px; */
	margin: 0;
	/* line-height: 26px; */
}

section {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.section-heading {
	font-size: clamp(1.25rem, 1.8vw, 1.4rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
	color: #fff;
}

.section-heading a {
	color: inherit;
	text-decoration: none;
}

.section-heading a:focus-visible,
.section-heading a:hover {
	text-decoration: underline;
}

p,
ul {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.4px;
	line-height: 24px;
}

.meta {
	font-size: 16px;
	line-height: 1.5;
}

li {
	margin-bottom: 10px;
}

footer {
	margin-top: 40px;
	font-size: 18px;
	color: #fff;
}

.video-wrapper {
	border: 2px solid #fff7e7;
	border-radius: 12px;
	overflow: hidden;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 640px) {
	.page {
		gap: 1.75rem;
	}

	.logo {
		width: min(320px, 85%);
	}
}
