﻿/* =========================================================
   /css/report_ui.css
   제보하기 페이지 전용 UI
   반드시 news_font_clean.css 뒤에 로드
   ========================================================= */

.report-readable-page {
    background: #ffffff;
}

.report-page-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.report-page-head {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 2px solid #202632;
}

.report-page-kicker {
    margin-bottom: 8px;
    color: #1f5fae;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.report-page-title {
    margin: 0;
    color: #101827;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 760;
    letter-spacing: -0.075em;
}

.report-page-desc {
    max-width: 760px;
    margin: 11px 0 0;
    color: #667085;
    font-size: 15.5px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

/* =========================================================
   Layout
   ========================================================= */

.report-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.report-guide {
    display: grid;
    gap: 16px;
}

.report-guide-card {
    border: 1px solid #e4e8ef;
    border-radius: 18px;
    background: #ffffff;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.report-guide-card.primary {
    border-top: 3px solid #1f5fae;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.report-guide-label {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-bottom: 12px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef5ff;
    color: #1f5fae;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.report-guide-card h2 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.38;
    font-weight: 750;
    letter-spacing: -0.065em;
    word-break: keep-all;
}

.report-guide-card h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.report-guide-card p {
    margin: 10px 0 0;
    color: #5f6b7a;
    font-size: 14.5px;
    line-height: 1.72;
    word-break: keep-all;
}

.report-guide-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.report-guide-card li {
    position: relative;
    padding-left: 14px;
    color: #4b5563;
    font-size: 14.5px;
    line-height: 1.75;
}

.report-guide-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #1f5fae;
}

/* =========================================================
   Form
   ========================================================= */

.report-form {
    border: 1px solid #e4e8ef;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.report-form-head {
    padding: 24px 26px 20px;
    border-bottom: 1px solid #e4e8ef;
    background: #fbfcfe;
}

.report-form-head h2 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 750;
    letter-spacing: -0.06em;
}

.report-form-head p {
    margin: 7px 0 0;
    color: #7a8391;
    font-size: 13.5px;
}

.report-form-head p span {
    color: #c62828;
    font-weight: 700;
}

.report-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 20px;
    padding: 26px;
}

.report-form-group {
    min-width: 0;
}

.report-form-group.full {
    grid-column: 1 / -1;
}

.report-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 650;
    letter-spacing: -0.035em;
}

.report-form-group label span {
    color: #c62828;
}

.report-form-group input,
.report-form-group select,
.report-form-group textarea {
    width: 100%;
    border: 1px solid #cfd6df;
    border-radius: 13px;
    background: #ffffff;
    color: #111827;
    font-family: var(--font-news-clean, "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif);
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.report-form-group input,
.report-form-group select {
    height: 46px;
    padding: 0 14px;
}

.report-form-group textarea {
    min-height: 210px;
    padding: 14px;
    line-height: 1.72;
    resize: vertical;
}

.report-form-group input::placeholder,
.report-form-group textarea::placeholder {
    color: #a0a9b6;
}

.report-form-group input:focus,
.report-form-group select:focus,
.report-form-group textarea:focus {
    border-color: #1f5fae;
    box-shadow: 0 0 0 4px rgba(31, 95, 174, 0.11);
    background: #ffffff;
}

.report-check-label {
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    padding: 15px 16px;
    border: 1px solid #e4e8ef;
    border-radius: 14px;
    background: #f8fafc;
    cursor: pointer;
}

.report-check-label input {
    width: 16px !important;
    height: 16px !important;
    margin-top: 3px;
    flex: 0 0 auto;
}

.report-check-label span {
    color: #374151 !important;
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 500;
}

.report-help {
    margin-top: 8px;
    color: #8b95a1;
    font-size: 13px;
    line-height: 1.55;
}

/* =========================================================
   Buttons
   ========================================================= */

.report-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    padding: 20px 26px;
    border-top: 1px solid #e4e8ef;
    background: #fbfcfe;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #cfd6df;
    background: #ffffff;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.report-btn.gray:hover {
    border-color: #1f5fae;
    background: #f4f8ff;
    color: #1f5fae;
    transform: translateY(-1px);
}

.report-btn.primary {
    border-color: #1f5fae;
    background: #1f5fae;
    color: #ffffff;
}

.report-btn.primary:hover {
    background: #174b8f;
    border-color: #174b8f;
    transform: translateY(-1px);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
    .report-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .report-guide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .report-guide-card {
        padding: 19px;
    }

    .report-guide-card.primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .report-page-head {
        margin-bottom: 22px;
        padding-bottom: 18px;
    }

    .report-page-title {
        font-size: 29px;
        line-height: 1.32;
    }

    .report-page-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .report-guide {
        grid-template-columns: 1fr;
    }

    .report-form {
        border-radius: 16px;
    }

    .report-form-head {
        padding: 21px 20px 17px;
    }

    .report-form-head h2 {
        font-size: 20px;
    }

    .report-form-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 17px;
    }

    .report-form-group.full {
        grid-column: auto;
    }

    .report-form-group textarea {
        min-height: 180px;
    }

    .report-form-actions {
        display: grid;
        grid-template-columns: 1fr;
        padding: 18px 20px;
    }

    .report-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .report-page-title {
        font-size: 27px;
    }

    .report-guide-card h2 {
        font-size: 20px;
    }

    .report-form-group input,
    .report-form-group select {
        height: 44px;
    }

    .report-check-label {
        padding: 14px;
    }
}