.about-split {
    max-width: var(--yoge-container-max, 1580px);
    margin: 0 auto 18px;
    min-height: 450px;
    height: 450px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    background: #f6f7f6;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.about-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.about-split__content {
    height: 100%;
    overflow-y: auto;
    padding: 22px 22px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.about-split__content::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.about-split__inner {
    max-width: 760px;
}

.about-chip {
    display: inline-block;
    border: 1px solid rgba(20, 26, 24, 0.45);
    border-radius: 999px;
    padding: 7px 18px;
    color: #181a17;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.about-split h2 {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(20, 26, 24, 0.15);
    font-size: clamp(34px, 3.9vw, 58px);
    line-height: 1.03;
    color: #181a17;
}

.about-lead {
    margin: 20px 0 18px;
    color: rgba(20, 25, 23, 0.78);
    font-size: 18px;
    line-height: 1.5;
    max-width: 92%;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-feature__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e5c466;
    display: grid;
    place-items: center;
    flex: 0 0 72px;
}

.about-feature__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.about-feature h3 {
    font-size: 36px;
    line-height: 1.06;
    color: #181a17;
}

.about-feature p {
    margin-top: 5px;
    color: rgba(20, 25, 23, 0.78);
    font-size: 16px;
}

.about-preview {
    width: 100%;
    height: 246px;
    object-fit: cover;
    border-radius: 24px;
    margin: 12px 0 22px;
}

.about-practice-title {
    font-size: clamp(42px, 4.6vw, 64px);
    line-height: 1.04;
    color: #181a17;
    font-weight: 500;
}

.about-practice-text {
    margin: 14px 0 20px;
    color: rgba(20, 25, 23, 0.72);
    font-size: 18px;
    line-height: 1.55;
    max-width: 95%;
}

.about-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 34px;
}

.about-lists ul {
    list-style: none;
}

.about-lists li {
    position: relative;
    padding-left: 34px;
    margin: 10px 0;
    color: #181a17;
    font-size: 17px;
    line-height: 1.35;
}

.about-lists li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(95, 143, 121, 0.65);
    display: grid;
    place-items: center;
    color: #448C74;
    font-size: 13px;
    line-height: 1;
}

.about-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 208px;
    height: 74px;
    border-radius: 999px;
    background: #e5c466;
    color: #181a17;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

@media (max-width: 991px) {
    .about-split {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 10px;
    }

    .about-split__media {
        min-height: 320px;
    }

    .about-split__media img {
        border-radius: 10px 10px 0 0;
    }

    .about-split__content {
        overflow: visible;
        padding: 18px 14px 14px;
    }

    .about-split__inner {
        padding-bottom: 0;
    }

    .about-feature h3 {
        font-size: 28px;
    }

    .about-practice-title {
        font-size: 34px;
    }

    .about-practice-text {
        font-size: 15px;
    }

    .about-lists {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .about-lists li {
        font-size: 15px;
        padding-left: 30px;
    }

    .about-btn {
        min-width: 150px;
        height: 54px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .about-split__media {
        min-height: 250px;
    }

    .about-chip {
        font-size: 10px;
        padding: 6px 14px;
    }

    .about-split h2 {
        margin-top: 14px;
        padding-top: 14px;
        font-size: 26px;
    }

    .about-lead {
        margin: 14px 0 14px;
        font-size: 14px;
        line-height: 1.45;
        max-width: 100%;
    }

    .about-feature {
        gap: 12px;
        margin-bottom: 12px;
    }

    .about-feature__icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .about-feature__icon img {
        width: 30px;
        height: 30px;
    }

    .about-feature h3 {
        font-size: 24px;
        line-height: 1.1;
    }

    .about-feature p {
        font-size: 14px;
    }

    .about-preview {
        height: 170px;
        border-radius: 14px;
        margin: 10px 0 16px;
    }

    .about-practice-title {
        font-size: 30px;
    }

    .about-practice-text {
        font-size: 14px;
        margin: 8px 0 12px;
    }

    .about-lists li {
        font-size: 14px;
        margin: 7px 0;
        padding-left: 28px;
    }

    .about-lists li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .about-btn {
        margin-top: 16px;
        min-width: 138px;
        height: 46px;
        font-size: 12px;
    }
}
