.about-intro {
    background: #fff;
}

.about-intro__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 5.556rem; /* 80px */
    align-items: center;
}

.about-intro__media {
    position: relative;
    width: 100%;
    aspect-ratio: 634 / 394;
}

.about-intro__photo {
    position: absolute;
    border-radius: 1.389rem; /* 20px */
    overflow: hidden;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
}

.about-intro__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro__photo--main {
    left: 0;
    top: 0;
    width: 73.82%;
    height: 74.37%;
    z-index: 1;
}

.about-intro__photo--sub {
    left: 49.84%;
    top: 37.06%;
    width: 50.16%;
    height: 62.94%;
    z-index: 2;
    border: 0.278rem solid #fff;
}

.about-intro__badge {
    position: absolute;
    left: 61.67%;
    top: 8.88%;
    width: 22.71%;
    aspect-ratio: 1;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0.417rem 1rem rgba(0, 0, 0, 0.12));
}

.about-intro__badge-ring {
    width: 100%;
    height: 100%;
}

.about-intro__badge-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26.4%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ff9f21;
}

.about-intro__badge-icon img {
    width: 76%;
    height: 76%;
}

.about-intro__label {
    display: block;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.25rem; /* 18px */
    color: #ff9f21;
    margin-bottom: 0.5rem;
}

.about-intro__title {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 600;
    font-size: 2.5rem; /* 36px */
    line-height: 1.25;
    color: #000;
    margin-bottom: 1.667rem;
}

.about-intro__title span {
    color: #ff9f21;
}

.about-intro__desc {
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.25rem; /* 18px */
    line-height: 1.556; /* 28px */
    color: #131313;
    margin-bottom: 2.083rem;
}

.about-intro__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-intro__features li {
    display: flex;
    align-items: center;
    gap: 1.111rem; /* 16px */
}

.about-intro__features img {
    flex-shrink: 0;
    width: 1.875rem; /* 27px */
    height: 1.875rem;
}

.about-intro__features span {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem; /* 18px */
    color: rgba(24, 24, 24, 0.86);
}

@media (max-width: 1200px) {
    .about-intro__wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro__media {
        max-width: 34rem;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .about-intro__title {
        font-size: 1.75rem;
    }

    .about-intro__desc,
    .about-intro__features span {
        font-size: 1rem;
    }
}
