:root {
	--elv-content-ink: #121b1a;
	--elv-content-teal: #0b7774;
	--elv-content-teal-dark: #075c5a;
	--elv-content-gold: #e4b51b;
	--elv-content-cream: #f4f0e7;
	--elv-content-paper: #fbfaf7;
	--elv-content-border: rgba(18, 27, 26, .15);
	--elv-content-muted: #5d6966;
}

.elv-content-landing {
	width: min(1100px, 100%);
	margin: 0 auto;
	padding: clamp(30px, 4vw, 58px) 0 clamp(70px, 8vw, 110px);
	color: var(--elv-content-ink);
	font-family: "Noto Serif", Georgia, serif;
}

.elv-content-landing *,
.elv-content-landing *::before,
.elv-content-landing *::after {
	box-sizing: border-box;
}

.elv-content-intro {
	max-width: 820px;
	margin-bottom: 48px;
}

.elv-content-kicker {
	margin: 0 0 12px;
	color: var(--elv-content-teal);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.elv-content-intro h2 {
	margin: 0 0 18px;
	color: var(--elv-content-ink);
	font-family: "Noto Serif", Georgia, serif;
	font-size: clamp(38px, 5vw, 65px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.elv-content-intro > p:last-child {
	max-width: 720px;
	margin: 0;
	color: var(--elv-content-muted);
	font-size: 17px;
	line-height: 1.8;
}

.elv-content-card-grid {
	display: grid;
	margin-bottom: 30px;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.elv-content-card {
	min-height: 300px;
	padding: 30px;
	border: 1px solid var(--elv-content-border);
	background: #fff;
}

.elv-content-card-icon {
	display: grid;
	width: 54px;
	height: 54px;
	margin-bottom: 50px;
	place-items: center;
	border-radius: 50%;
	background: var(--elv-content-cream);
	color: var(--elv-content-teal);
}

.elv-content-card-icon svg {
	width: 27px;
	height: 27px;
}

.elv-content-card h3 {
	margin: 0 0 11px;
	font-family: "Noto Serif", Georgia, serif;
	font-size: 25px;
	font-weight: 500;
}

.elv-content-card p {
	margin: 0 0 24px;
	color: var(--elv-content-muted);
	font-size: 14px;
	line-height: 1.7;
}

.elv-content-card a {
	color: var(--elv-content-teal-dark);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.elv-content-card a span {
	margin-left: 6px;
	color: var(--elv-content-gold);
}

.elv-content-actions {
	display: flex;
	margin-top: 28px;
	flex-wrap: wrap;
	gap: 12px;
}

.elv-content-button {
	display: inline-flex;
	min-height: 50px;
	padding: 12px 22px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--elv-content-teal);
	border-radius: 0;
	background: var(--elv-content-teal);
	color: #fff !important;
	font-family: "Noto Serif", Georgia, serif;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.elv-content-button:hover,
.elv-content-button:focus-visible {
	border-color: var(--elv-content-teal-dark);
	background: var(--elv-content-teal-dark);
}

.elv-content-button-light {
	border-color: var(--elv-content-border);
	background: #fff;
	color: var(--elv-content-ink) !important;
}

.elv-content-button-light:hover,
.elv-content-button-light:focus-visible {
	border-color: var(--elv-content-gold);
	background: var(--elv-content-gold);
	color: var(--elv-content-ink) !important;
}

.elv-membership-form {
	padding: clamp(25px, 4vw, 45px);
	border-top: 4px solid var(--elv-content-gold);
	background: var(--elv-content-cream);
}

.elv-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.elv-membership-form label {
	display: grid;
	gap: 8px;
	color: var(--elv-content-ink);
	font-size: 13px;
	font-weight: 750;
}

.elv-membership-form input:not([type="checkbox"]):not([type="hidden"]),
.elv-membership-form select,
.elv-membership-form textarea {
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 11px 13px;
	border: 1px solid #9eafac !important;
	border-radius: 0;
	background: #fff !important;
	color: var(--elv-content-ink) !important;
	font: inherit;
	font-weight: 400;
	box-shadow: 0 1px 2px rgba(18, 27, 26, .08) !important;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.elv-membership-form textarea {
	min-height: 130px;
	resize: vertical;
}

.elv-membership-form input:not([type="checkbox"]):not([type="hidden"]):focus,
.elv-membership-form select:focus,
.elv-membership-form textarea:focus {
	border-color: var(--elv-content-teal) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(11, 119, 116, .18) !important;
}

.elv-membership-form input::placeholder,
.elv-membership-form textarea::placeholder {
	color: #73807e;
	opacity: 1;
}

.elv-form-wide {
	grid-column: 1 / -1;
}

.elv-form-consent {
	display: flex !important;
	max-width: 820px;
	margin: 25px 0 !important;
	align-items: flex-start;
	grid-template-columns: none !important;
	gap: 10px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.55;
}

.elv-form-consent input {
	width: 18px;
	height: 18px;
	min-height: 18px;
	margin-top: 2px;
	flex: 0 0 auto;
}

.elv-form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.elv-form-notice {
	display: grid;
	margin-bottom: 28px;
	padding: 20px 22px;
	gap: 5px;
	border-left: 4px solid;
	font-size: 14px;
	line-height: 1.6;
}

.elv-form-success {
	border-color: var(--elv-content-teal);
	background: rgba(11, 119, 116, .1);
}

.elv-form-error {
	border-color: #a63c32;
	background: #faecea;
}

.elv-form-notice ul {
	margin: 6px 0 0 19px;
}

@media (max-width: 780px) {
	.elv-content-card-grid,
	.elv-form-grid {
		grid-template-columns: 1fr;
	}

	.elv-form-wide {
		grid-column: auto;
	}
}

@media (max-width: 520px) {
	.elv-content-landing {
		padding-top: 10px;
	}

	.elv-content-card {
		min-height: 0;
	}

	.elv-content-card-icon {
		margin-bottom: 28px;
	}

	.elv-content-actions {
		align-items: stretch;
		flex-direction: column;
	}
}
