.hero-interior {
    position: relative;
    box-sizing: border-box;
    min-height: calc(100vh - 64px);
    color: #fff;
    padding: 40px 0;
}

.hero-interior__img,
.hero-interior__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-interior__img {
    object-fit: cover;
    z-index: 0;
}

.hero-interior__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-interior .container {
    height: 100%;
}

.hero-interior__container {
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    gap: 60px;
    z-index: 2;
}

.hero-interior__intro {
    display: grid;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.hero-interior__logo {
    height: 50px;
    width: auto;
    max-width: 100%;
}

h1.hero-interior__title {
    color: inherit;
    border: 0;
    padding: 0;
    margin: 0;
}

.hero-interior__subtitle {
    font: 400 24px/1 'Cera Pro';
    color: inherit;
    padding-bottom: 0;
}

.hero-interior__text {
    display: grid;
    gap: 16px;
}

.hero-interior__paragraphs p {
    color: inherit;
    padding: 0;
}

.hero-interior__paragraphs p strong,
.hero-interior__paragraphs p b {
    font-weight: 700;
}

@media only screen and (min-width: 1280px) {
    .hero-interior {
        min-height: calc(100vh - 196px);
    }

    .hero-interior__overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 1;
    }

    .hero-interior__intro {
        text-align: center;
        padding-bottom: 40px;
    }

    .hero-interior__logo {
        height: 64px;
        margin: 0 auto;
    }

    .hero-interior__text {
        grid-template-columns: 1fr 1fr;
        gap: 180px;
    }

    .hero-interior__text--three {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 80px;
    }
}

@media only screen and (min-width: 1920px) {
    .hero-interior {
        height: calc(100vh - 223px);
    }
}