#hero {
    position: relative;
    padding: calc(400px + clamp(3rem, 10vh, 7rem)) 1rem clamp(4rem, 12vh, 8rem);
    z-index: 0;
    /* ensure it's behind any absolutely positioned children */
}
/* story */
h1 {
    margin-bottom: .5em;
}
.values {
    display: none;
}
.values .value {
    display: inline-block;
}
.values .divider-line {
    display: inline-block;
    width: 1px;
    height: 1.25em;
    background: var(--bodyTextColor);
    margin: 0 1em;
}
/* founders */
.bold {
    font-weight: 700;
}
#founders .feature-btn {
    color: var(--bodyTextColor);
    font-size: var(--bodyFontSize);
}
#founders .feature-btn::before {
    background-color: var(--bodyTextColor);
}
#founders .feature-btn:hover {
    color: var(--bodyTextColorWhite);
}
#founders .founder-profile {
    margin-bottom: 1em;
}
#founders .founder-profile .text {
    margin-bottom: 1em;
}
/* process */
.process-step {
    background-color: #393939;
    border-radius: 2em;
    padding: 1.5em;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.process-step .header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2em;
}
.process-step .number-box {
    flex-shrink: 0;
    height: 3rem;
    width: 3rem;
    background-color: var(--bodyTextColorWhite);
    border-radius: 3rem;
    text-align: center;
}
.process-step .number-box > * {
    margin-top: .22em;
    font-size: 2rem;
    color: var(--bodyTextColor);
}
.process-step .header h3 {
    margin-top: .5rem;

    display: inline-block;
}
/* sbs */
#sbs .sbs-image {
    width: 100%;
}
#sbs .text-content ul li {
    list-style-position: inside;
    margin-bottom: .5em;
}
@media (min-width: 55rem) {
    .values {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (min-width: 64rem) {
    #hero {
        min-height: 80vh;
        padding: calc(132px + clamp(3rem, 10vh, 7rem)) 1rem clamp(4rem, 12vh, 8rem);
        position: relative;
    }
    #story .text {
        max-width: 60rem;
    }
    #founders .container {
        display: flex;
        gap: 1.5rem;
    }
    #process .process-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3em;
    }
    #process .process-header .text {
        text-align: right;
        max-width: 40rem;
    }
    #process .process-container {
        display: flex;
        gap: 1rem;
    }
    #process .process-step {
        transition: transform 0.3s ease;
    }
    #process .process-step:hover {
        transform: translateY(-10px);
    }
    #sbs .container {
        display: flex;
        align-items: center;
    }
    #sbs .sbs-image {
        width: 50%;
    }
    #sbs .text-content {
        background-color: #D9D9D9;
        padding: 2rem;
    }
}