.hero {
    margin-top: 144px;
}

.hero h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 48px;
}

.hero h2 {
    font-size: 20px;
    line-height: 28px;
}

.hero .button {
    margin-top: 48px;
}

@media screen and (min-width: 768px) {
    .hero {
        margin-top: 196px;
    }

    .hero h1 {
        font-size: 72px;
        line-height: 80px;
    }
}

@media screen and (min-width: 1024px) {
    .hero {
        align-items: center;
        display: flex;
        margin-top: 0;
        margin-bottom: 0;
        height: 90vh;
    }
}

@media screen and (min-width: 1280px) {
    .hero__inner {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 80px;
        align-items: end;
    }

    .hero__inner > div:first-child {
        grid-column: span 3;
    }

    .hero__inner > div:last-child {
        grid-column: span 2;
        display: flex;
        justify-content: end;
    }
}

@media screen and (min-width: 1440px) {
    .hero h1 {
        font-size: 96px;
        line-height: 108px;
    }
}