html, body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    font-size: 22px;
    font-weight: 300;
}

h1,h2,h3,h4,h5,h6 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    width: 100%;
}

figure, figcaption, blockquote {
    margin: 0;
}

a {
    font-weight: inherit;
    text-decoration: none;
    color: inherit;
}
a:after,
a[href^="http"]:after {
    content: "\2197\0020";
    display: inline-block;
    white-space: nowrap;
    opacity: 0.3;
    margin-left: 0.15em;
    text-decoration: npne;
}

.events a {
    text-decoration: underline;
}
.events__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.events__item {
    margin-bottom: 1rem;
}

.section--references > * {
    margin-bottom: 2rem;
}

.references__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.25rem;
}
.references__item {
    display: inline-block;
    white-space: nowrap;
}

.quotes__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quotes__item {
    margin-bottom: 2rem;
}
.quote__block {
    /* font-style: italic; */
}
.quote__caption {
    margin-top: 1rem;
}

.wrap {
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
}
.wrap > * {
    flex-basis: 50%;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.header__nav, .header__title, .header__subtitle {
    line-height: 1;
    margin-top: -0.05em;
}
.header__nav {
    text-transform: uppercase;
}
.header__subtitle {
    font-weight: inherit;
}

.section {
    margin-bottom: 4rem;
}
.section__title {
    margin-bottom: 0.8rem;
}
.section + .section--cta {
    margin-top: -2rem;
}
.section--cta + .section--image {
  margin-top: -2rem;
}

.cta {
    display: flex;
    gap: 1.25rem;
}
.cta__text {
    margin: 0;
}
.cta__text, .cta__actions {
    flex-basis: 50%;
}


.mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 18px;
    }
    .wrap > * {
        flex-basis: 100%;
        max-width: 100%;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .cta {
        flex-direction: column;
    }
    .cta__text, .cta__actions {
        flex-basis: 100%;
    }
}
