.hero-section {
    position: relative;
    width: 100%;
    padding-top: 200px;
    padding-bottom: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 0 4vw;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0 6.5vw;
    }
}

.hero-section__bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-section__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
    padding-top: 0;
}

@media (max-width: 768px) {
    .hero-section__content {
        flex-direction: column;
        padding-top: 13vw;
        gap: 13vw;
    }
}

.hero-section__text-col {
    text-align: left;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section__text-col {
        width: 100%;
    }
}

.hero-section__title {
    color: var(--color-primary);
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.5vw;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-section__title {
        font-size: 10.5vw;
        margin-bottom: 2vw;
    }
}

.hero-section__subtitle {
    color: var(--color-primary);
    font-size: 1.5vw;
    font-weight: 600;
    letter-spacing: 0.025em;
}

@media (max-width: 768px) {
    .hero-section__subtitle {
        font-size: 4.5vw;
    }
}

.hero-section__img-col {
    position: relative;
    z-index: 10;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .hero-section__img-col {
        width: 100%;
        justify-content: center;
    }
}

.hero-section__img {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    border-radius: 0.3vw;
    aspect-ratio: 3 / 4;
}

@media (max-width: 768px) {
    .hero-section__img {
        max-width: 320px;
        border-radius: 1vw;
    }
}

.hero-section__scroll {
    position: absolute;
    bottom: 2vw;
    left: max(0px, calc((100% - 1400px) / 2));
    z-index: 11;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    line-height: 0;
    transition: opacity 0.3s ease;
}

.hero-section__scroll:hover {
    opacity: 0.75;
}

.hero-section__scroll:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.hero-section__scroll svg {
    width: 3.193vw;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-section__scroll {
        left: 0;
        bottom: 4vw;
    }
}

@media (max-width: 768px) {
    .hero-section__scroll svg {
        width: 10vw;
    }

    .hero-section__scroll {
        bottom: 6vw;
    }
}

/* Modifier class from removing tailwind pt-[10vw] class in expo content */
.expo__scroll-content--padded {
    padding-top: 10vw;
}