@charset "utf-8";

.main-sec-06 {
    background: #fff;
}
.main-sec-06 .container {
    max-width: 1200px; /* 305*3 + 25*2 = 965, 넉넉하게 1000 */
    margin: 0 auto;
    padding: 0 18px;
}
.main-sec-06 h1 {
    font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
    font-size: 2.15rem;
    font-weight: 800;
    color: #191d51;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    text-align: center;
}
.main-sec-06 h4 {
    font-size: 1.08rem;
    color: #474868;
    font-weight: 400;
    margin: 0 0 46px 0;
    text-align: center;
    letter-spacing: -0.01em;
}
.issue-table {
    width: 100%;
    max-width: 100%;
}

.issue-header-row, .issue-row {
    display: flex;
    justify-content: space-between;    /* 좌-중앙-우 */
    align-items: stretch;              /* 높이 맞춤 */
    gap: 25px;                         /* 컬럼간 간격, 필요시 */
    width: 100%;
}

.issue-header-col, .issue-col {
    flex: 1 1 0;
    min-width: 220px;   /* 필요에 따라 크기 조절 */
    max-width: 350px;   /* 필요시 최대너비 제한 */
    text-align: center; /* 텍스트 중앙정렬 */
    background: #fff;
    border-radius: 5px;
    padding: 23px 0 16px 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}

.issue-header-col {
    font-size: 29px;
    line-height: 75px;
}

.issue-icon, .pxr-check-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.issue-header-issue {
    background: #f7f7f7;
    color: #222;
}
.issue-header-asis {
    background: linear-gradient(90deg, #FCC782 5%, #F15DAF 95%);
    color: #b04379;
}
.issue-header-pxr {
    background: linear-gradient(90deg, #00B9D9 5%, #EEE617 95%);
    color: #0a568a;
}

.issue-body {
    display: flex;
    flex-direction: column;
}
/* 각 행마다 gap과 하단 구분선 */
.issue-row {
    display: flex;
    gap: 30px;
    background: transparent;
}
.issue-row:last-child { border-bottom: none; }

.issue-col {
    flex: 1 1 0;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 27px 6px 20px 6px;
    background: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    text-align: center;
    background-clip: padding-box;
    margin: 0;
    position: relative;
    overflow: hidden; /* 침범 방지! */
}

/* 본문 박스 상하 라운드 */
.issue-row:first-child .issue-col { border-top-left-radius: 5px; border-top-right-radius: 5px; }
.issue-row:first-child .issue-col.issue-issue { border-top-left-radius: 5px; }
.issue-row:first-child .issue-col.issue-pxr   { border-top-right-radius: 5px; }
.issue-row:last-child .issue-col { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
.issue-row:last-child .issue-col.issue-issue { border-bottom-left-radius: 5px; }
.issue-row:last-child .issue-col.issue-pxr   { border-bottom-right-radius: 5px; }

/* 2. ISSUE 셀만 회색 실선 */
.issue-row:not(:last-child) .issue-col.issue-issue {
    border-bottom: 1.5px solid #e5e6ec !important;
}
/* 3. AS-IS, PXR 셀은 흰색 실선 */
.issue-row:not(:last-child) .issue-col.issue-asis,
.issue-row:not(:last-child) .issue-col.issue-pxr {
    border-bottom: 1.5px solid #fff !important;
    border-top: 1.5px solid #fff !important;
}


/* 양쪽 gap (흰색 경계) 완벽하게! */
.issue-col.issue-issue, .issue-col.issue-asis {
    position: relative;
    overflow: hidden;
}
.issue-row .issue-col.issue-issue::after,
.issue-row .issue-col.issue-asis::after {
    content: "";
    position: absolute;
    top: 0; right: -13px;
    width: 25px;
    height: 100%;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}
/* ISSUE 왼쪽 경계는 없음, PXR 오른쪽 경계도 없음 */
.issue-col.issue-pxr {
    border-left: none !important;
    overflow: hidden;
}

/* 셀 배경 및 내용 */
.issue-col.issue-issue { background: #fff; }
.issue-col.issue-asis {
    background: linear-gradient(90deg, #FDE3BD 5%, #F8ABD7 95%);
}
.issue-col.issue-pxr {
    background: linear-gradient(90deg, #74DCEB 5%, #F6F280 95%);
}

.issue-title {
    font-size: 1.05rem;
    color: #24262c;
    font-weight: 500;
    text-align: center;
    line-height: 1.58;
    margin-top: 0;
}
