/* 사업 소개(About Us) 섹션 스타일시트 */
/* ===== About ===== */
.section-about {
    min-height: unset;
    padding: var(--section-padding) 0;
    background: #090b10;
    border-top: 1px solid var(--section-divider, rgba(255, 255, 255, 0.18));
    color: var(--color-white);
    overflow: hidden;
    opacity: 1;
    transform: none;
}
.section-about__inner {
    width: 100%;
}
.section-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(48px, 6vw, 84px);
    align-items: start;
    min-width: 0;
}
.section-about__copy {
    max-width: 920px;
}
/* .section-about__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    z-index: 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
} */
.section-about__copy.is-revealed .section-about__overlay {
    height: 100%;
}
.section-about__eyebrow,
.section-about__title,
.section-about__desc {
    position: relative;
    z-index: 1;
}
.section-about__eyebrow {
    font-family: "Chakra Petch", sans-serif;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--color-point);
}
.section-about__title {
    font-family: "Chakra Petch", sans-serif;
    margin-bottom: 28px;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-white);
}
.section-about__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    word-break: keep-all;
}
/* index3.php 기반 텍스트 하이라이트 밑줄 효과 */
.about-highlight {
    display: inline;
    padding-bottom: 2px;
    background-image: linear-gradient(transparent calc(100% - 0.22em), var(--about-highlight-color, #c8ff00) calc(100% - 0.22em));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 700;
    color: #ffffff;
    transition: background-size 0.3s ease;
}

.about-highlight--mint { --about-highlight-color: #00ff9d; }
.about-highlight--lime { --about-highlight-color: #c8ff00; }
.about-highlight--yellow { --about-highlight-color: #ffea00; }
.about-highlight--blue { --about-highlight-color: #2f6bff; }
