.hero {
    position: relative;
    max-width: none;
    padding: 0;
    box-shadow: var(--shadow-md);
}

.hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    filter: contrast(0.5);
}

.hero__content {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 3rem;

    display: flex;
    flex-direction: column;

    gap: 1rem;

    background-color: rgba(0, 0, 0, 0.3);
}

.hero__title {
    color: var(--color-neutral-050);
    font-weight: 800;
    font-size: var(--text-5xl);
    line-height: var(--text-5xl--line-height);
}

.hero__subtitle {
    color: var(--color-neutral-100);
    font-size: var(--text-base);
    line-height: 0;
}

.hero__action {
    text-decoration: none;
    font-family: inherit;

    font-size: var(--text-sm);
    font-weight: 600;

    background-color: var(--color-primary-300);
    color: var(--color-neutral-950);

    padding: 0.75rem 1rem;
    max-width: max-content;

    box-shadow: var(--shadow-md);
}

.hero__action:hover {
    background-color: var(--color-primary-600);
    transition: 0.2s;
}

@media (min-width: 750px) {

    .hero__content {
        padding: 10rem;
    }

    .hero__title {
        font-size: var(--text-7xl);
    }

    .hero__action {
        font-size: var(--text-l);
    }
}

@media (min-width: 1000px) {

    .hero__title {
        font-size: var(--text-9xl);
    }

    .hero__action {
        font-size: var(--text-xl);
    }
}