#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 6.6875rem var(--padding-side);
    background: var(--yellow100, #FCF4D0);
}

#about > span {
    display: inline-block;
    color: var(--black, #000);
    text-align: center;
    font-size: var(--fs-normal);
    font-style: normal;
    font-weight: 700;
    line-height: 118.75%;
    letter-spacing: -0.02rem;
    margin-bottom: 1.875rem;
}

#about > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 4rem;
}

#about > div > strong {
    color: var(--black, #000);
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-h2);
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: -0.05rem;
}

#about > div > p {
    color: var(--black, #000);
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: var(--fs-bigger);
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%;
    letter-spacing: -0.0225rem;
}

#about > ul {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 3rem;
}

#about > ul > li {
    display: flex;
    flex-direction: column;
    width: 18.75rem;
    height: auto;
    border-radius: 1.5625rem;
    background: var(--white, #FFF);
    box-shadow: var(--shadow2);
    padding: 2.4375rem 1.875rem;
    gap: 1.5rem;
}

#about > ul > li > i {
    display: inline-block;
    font-size: 4rem;
    color: var(--yellow200);
}

#about > ul > li > strong {
    color: var(--Gray400, #3A3A3A);
    font-family: "Noto Sans KR";
    font-size: var(--fs-h4);
    font-style: normal;
    font-weight: 700;
    line-height: 121.429%;
    letter-spacing: -0.035rem;
}

#about > ul > li > p {
    color: var(--Gray400, #3A3A3A);
    font-size: var(--fs-biggest);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.025rem;
}

@media (max-width: 768px) {
    #about {
        padding: 6.6875rem var(--padding-side);
    }

    #about > ul {
        flex-direction: column;
        width: 100%;
    }

    #about > ul > li {
        position: relative;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    #about > ul > li > i {
        position: absolute;
    }

    #about > ul > li > strong, #about > ul > li > p {
        padding-left: 5.5rem;
    }
}