.hero--b2c {
	background: var(--gray-950);
}

.hero {
    margin-block-start: 5.5rem; /* 88px */
    padding-block-start: var(--vertical-space-sm);
}
@media screen and (min-width: 767px) {
	.hero {
		padding-block-start: var(--vertical-space-md);
	}
}

.hero__top-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 53.75rem; /* 860px */
}

.hero__title {
    text-align: center;
}

.hero__description {
    font-size: 1rem;
    text-align: center;
}
@media screen and (min-width: 767px) {
	.hero__description {
        font-size: 1.25rem;
		margin-bottom: 3rem;
	}
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.hero__ctas > * {
    width: 100%;
}
@media screen and (min-width: 767px) {
    .hero__ctas > * {
        width: auto;
    }
}

.hero__bottom-wrapper {
    aspect-ratio: 16/9;
    line-height: 0;
    margin-top: 3rem;
    width: 100%;
}
@media screen and (min-width: 767px) {
	.hero__bottom-wrapper {
		margin-top: 4.5rem;
	}
}

.hero__image {
    border-radius: 1.125rem 1.125rem 0 0;
    display: inline-block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

{################################################}
{################## B2B Theme ###################}
{################################################}

.hero--b2b {
    background: var(--gray-950);
    position: relative;
}

.hero__b2b-background {
    background: var(--white);
    border-radius: 0 0 1.25rem 1.25rem;
    left: 0;
    min-height: 90%;
    position: absolute;
    right: 0;
    top: 0;
}
@media screen and (min-width: 767px) {
	.hero__b2b-background {
		border-radius: 0 0 2.5rem 2.5rem;
		min-height: 76%;
	}
}

.hero--b2b .hero__main-wrapper {
	position: relative;
	z-index: 1;
}

.hero--b2b .hero__title,
.hero--b2b .hero__description {
	color: var(--black);
}