:root {
    --font-size-base: 1.3rem;
}

.hero {
    text-align: center;

    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    padding: 4rem 0 3rem;
    position: relative;
    left: calc(-50vw + 50%);
    width: calc(100vw);
    height: min-content;
    max-height: 300px;

    display: flex;
    justify-content: center;
}
.hero .container {
    width: 75%;
    /* display: flex; */
    /* align-items: center;
    justify-content: center; */
}
.hero h1 {
	color: var(--light);
	font-size: 3.5rem;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	letter-spacing: -0.02em;
}
.hero :is(h2,h3,h4,h5,h6) {
	color: var(--light);
	font-size: 1.05rem;
	opacity: 0.75;
	margin-bottom: 1.5rem;
}

section > h3:first-child {
    margin-top: 0; padding-top: 0;
}

.row > [class^="col"] > section {
    height: calc(100% - var(--spacing-base) * 2);
}

/* Bootstrap-compatible grid */
.row { display: flex; margin: .5rem -.6rem; align-items: stretch; }
.row [class^="col"] { padding: 0 .6rem; }
.row .col   { flex: 0 4 100%; }
.row .col-2 { flex: 0 2 16.66%; }
.row .col-3 { flex: 0 3 25%; }
.row .col-4 { flex: 0 4 33.33%; }
.row .col-5 { flex: 0 5 41.66%; }
.row .col-6 { flex: 0 6 50%; }
@media (max-width: 40rem) { .row { flex-direction: column; } }