header {
    position: fixed;
    width: 100%;
}
.inner .content:not(header .content) {
    padding: 45px 0;
    gap: 0;
}
.wrapper.inner .content.no-top {
    padding-top: 0;
}
.hero {
    position: relative;
    min-height: 75vh;
    isolation: isolate;
    display: grid;
    align-items: center;
}
.hero::before, .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color__2);
    z-index: -1;
}
.hero::after {
    background: url(../images/people/people.webp);
    background-position: center;
    background-size: cover;
    opacity: 0.1;
}

.hero h1 {
    color: white;
    font-weight: 200;
    max-width: 25ch;
    margin-bottom: 5vh;
}
.icons {
    display: flex;
    gap: 25px;
}   
.subhero, .accent {
    background: var(--color__3);
    color: white;
}
.accent p {
    margin-bottom: 0;
    text-align: center;
}
h3 {
  font-size: clamp(18px, 5vw, 32px);
  line-height: 125%;
  font-weight: 200;
  text-transform: none;
  margin-bottom: 15px;
}
ol, ul {
    margin-top: 0;
}
.wrapper.inner section.accent p a {
    color: white;
    text-underline-position: under;
}

@media only screen and (max-width: 465px) {
    .wrapper.inner {
        padding-top: 0;
    }
    .hero {
        padding-top: 75px;
    }
}