/* ==================================================
   About
================================================== */

.about {
    padding: 30px 0 60px;
    background: #fff;
}

.about__items {
    margin-top: 20px;
}

.about__inner {
    width: min(calc(100% - 48px), 1120px);
    margin: 0 auto;
}

.about__eyebrow {
    margin-bottom: 12px;
    color: #9b8a67;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
}

.about__title {
    margin: 0;
    color: #2f2f2f;
    font-size: clamp(2.7rem, 2.4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.about__items {
    max-width: 760px;
    margin: 10px auto 0;
}

.about__item {
    padding: 20px 0;
    border-bottom: 1.8px solid rgba(181, 147, 81, 0.18);
}

.about__item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about__number-wrap {
    flex-shrink: 0;
    width: 100px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1.8px solid rgba(181, 147, 81, 0.25);
}

.about__number {
    display: block;
    color: rgba(163, 148, 204, 0.8);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
}

.about__title-decoration img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.about__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(8px);
}

.about__heading {
    margin: 0;
    color: #2f2f2f;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0em;
}

.about__text {
    margin-top: 11px;
}

.about__text {
    margin-top: 12px;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #5f5a63;
}

/* Smartphone
-------------------------------------------------- */

@media (max-width: 767px) {

    .about {
        padding-top: 20px;
        padding-bottom: 20px;
        background: rgba(163, 148, 204, 0.08);
    }

    .about__inner {
        width: min(100% - 32px, 1200px);
    }

    .about__eyebrow {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .about__title {
        font-size: 2.6rem;
    }

    .about__title-decoration img {
        width: 180px;
    }

    .about__title-decoration {
        margin-top: 8px;
    }

    .about__number {
        font-size: 5.2rem;
    }

    .about__item {
        gap: 20px;
        padding: 16px 0;
    }

    .about__heading {
        font-size: 2rem;
        font-weight: 550;
    }

    .about__text {
        margin-top: 8px;
        font-size: 1.4rem;
        line-height: 1.8;
        color: #4f4a55
    }

    .about__number-wrap {
        width: 78px;
        justify-content: flex-start;
    }

    .about__item:last-child {
        border-bottom: none;
    }

}