.pain_section {
    height: clamp(602px, 39.5vw, 902px);
    display: flex;
    align-items: center;
}

.pain_section__left {
    padding: clamp(69px, 4.5vw, 103px) 2.8vw clamp(69px, 4.5vw, 103px) 6vw;
    width: clamp(577px, 46.6vw, 1199px);
    height: 100%;
    background: #0C1116;
    align-content: center;
}

.pain_section__tag {
    margin-bottom: clamp(19px, 1.25vw, 29px);
    text-align: center;
    font-size: clamp(34px, 2.5vw, 62px);
    font-style: normal;
    font-weight: 600;
    line-height: 103%;
    color: #008BFF;
    background: linear-gradient(90deg, #008BFF 0%, #0C00C3 157.33%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pain_card {
    margin: 0 auto;
    padding: clamp(15px, 1vw, 23px);
    width: clamp(432px, 34.9vw, 898px);
    height: clamp(322px, 19.9vw, 436px);
    border-radius: clamp(38px, 2.5vw, 58px);
    border: 2px solid #004987;
    background: rgba(56, 56, 56, 0.40);
    backdrop-filter: blur(7.972779750823975px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(10px, 0.7vw, 16px);
}

.pain_row {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: clamp(8px, 0.5vw, 12px);
}

.pain_row__label {
    color: #FFF;
    text-align: center;
    align-content: center;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.44px;
}

.pain_row__no {
    color: #1B75FD;
    align-content: center;
    font-style: normal;
    font-weight: 600;
    line-height: 138%; /* 66.24px */
}

.pain_section__right {
    padding: clamp(69px, 4.5vw, 103px) 6vw clamp(69px, 4.5vw, 103px) 8.5vw;
    flex: 1;
    height: 100%;
    align-content: center;
    background-image: linear-gradient(90deg, #0C1116 0%, rgba(12,17,22,0) 18%), url("/images/bus-line/pain_bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.pain_copy {
    width: clamp(358px, 23.5vw, 538px);
}

.pain_copy__headline {
    margin-bottom: clamp(23px, 1.5vw, 35px);
    color: #FFF;
    font-style: normal;
    font-weight: 600;
    line-height: 138%; /* 66.24px */
}

.pain_copy__body {
    color: #FFF;
    font-style: normal;
    font-weight: 500;
    line-height: 148%; /* 47.36px */
}


/* 모바일 환경 최적화 */
@media (max-width: 1024px) {
    .pain_section {
        height: 100%;
        flex-direction: column;
    }

    .pain_section__left {
        padding: clamp(69px, 4.5vw, 103px) 6vw;
        width: 100%;
    }
    .pain_section__right {
        padding: clamp(69px, 4.5vw, 103px) 6vw;
        width: 100%;
        background-image: linear-gradient(180deg, #0C1116 0%, rgba(12,17,22,0) 18%), url("/images/bus-line/pain_bg.png");
    }

    .pain_copy {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .pain_card, .pain_copy {
        width: 88vw;
    }
}