/**layout**/
.about-header {
    padding-top: 48px;
    padding-bottom: unset;
}

.about-kv-container img {
    width: 80vw;
    height: auto;
}

.header-greetings {
    padding: 16px 16px 24px 16px;
}

.section-about .content-container {
    margin: 0 20px;
    position: relative;
    z-index: 1;
    top: 25%
}

.bio-item {
    padding: 16px;
    border-top: 1px solid #333333;
}

.bio-item:last-child {
    border-bottom: 1px solid #333333;
}

/**layout ends**/

/**font style**/
.header-greetings h1 {
    font-size: 36px;
    text-align: left;
    font-weight: 600;
    margin: unset;
}

.header-greetings article {
    font-size: 15px;
    color: var(--grey66);
    margin-top: 8px;
}

.bio-item h2 {
    font-size: 24px;
    color: var(--main-black);
    font-weight: 600;
    text-align: left;
}

.bio-item ul {
    padding-left: 32px;
    list-style-type: disc;
}

.bio-item ul li {
    font-size: 13px;
    color: var(--grey66);
    margin-bottom: 8px;
}

/**font style ends**/

@media screen and (min-width: 425px) {

    /**layout**/
    .about-header {
        padding-top: 106px;
        display: flex;
        align-items: center;
        gap: 24px;
        margin-right: 48px;
        padding-bottom: 60px;
    }

    .about-kv-container img {
        width: 33vw;
        height: auto;
    }

    .bio-item {
        padding: 24px 48px;
        border-top: 1px solid #333333;
        display: flex;
        gap: 24px;
    }

    .bio-item h2 {
        display: block;
        width: 33vw;
    }

    .bio-item ul {
        width: 67vw;
    }

    /**layout ends**/

    /**font style**/
    .header-greetings h1 {
        font-size: 64px;
    }

    .header-greetings h1 span {
        display: block;
    }

    .header-greetings article {
        font-size: 16px;
        margin-top: 24px;
    }

    .bio-item h2 {
        font-size: 36px;
    }

    .bio-item ul {
        padding-left: 32px;
        list-style-type: disc;
    }

    .bio-item ul li {
        font-size: 16px;
        margin-bottom: 12px;
    }

    /**font style ends**/

}