.correction-wrap {
    background-color: #0b0f19;
    color: #ffffff;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    padding-bottom: 80px;
    line-height: 1.6;
}

.correction-wrap .badge-primary-soft {
    background: rgba(255, 183, 3, 0.15);
    color: #ffb703;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 12px;
}

.correction-wrap .section-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    word-break: keep-all;
}

.correction-wrap .section-title .text-accent {
    color: #ffb703;
}

.correction-wrap .section-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 40px;
    word-break: keep-all;
}

/* 카드 기본 스타일 */
.correction-card {
    background: #151c2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.correction-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 183, 3, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* 단계/번호 넘버링 뱃지 */
.step-number {
    width: 36px;
    height: 36px;
    background: #4f46e5;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* 태그 및 박스 요소 */
.info-chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    margin-right: 4px;
    margin-top: 6px;
}

.sub-info-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* 화살표 아이콘 연결 (PC 전용) */
@media (min-width: 992px) {
    .step-arrow-col {
        position: relative;
    }
    .step-arrow-col:not(:last-child)::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: -12px;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.2);
        font-size: 1.5rem;
        z-index: 2;
    }
}

@media (max-width: 768px) {
    .correction-wrap .section-title { font-size: 1.6rem; }
    .correction-card { padding: 24px 18px; }
}