/* naonax\static\css\event\remote_code_event.css */

:root {
    --re-bg: #f4f7fb;
    --re-card: #ffffff;
    --re-text: #1f2937;
    --re-muted: #6b7280;
    --re-line: #dbe5f3;
    --re-primary: #2563eb;
    --re-primary-dark: #1d4ed8;
    --re-soft: #eef4ff;
    --re-danger-soft: #fff1f2;
    --re-shadow: 0 18px 50px rgba(25, 45, 80, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
    color: var(--re-text);
    background: radial-gradient(circle at top, #eaf2ff 0, var(--re-bg) 46%, #f9fbff 100%);
}

button,
input,
select,
textarea {
    font: inherit;
}

.re-page {
    width: 100%;
    min-height: 100vh;
    padding: 22px 14px 34px;
}

.re-top {
    max-width: 480px;
    margin: 0 auto 14px;
    text-align: center;
}

.re-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--re-primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.re-top h1 {
    margin: 10px 0 4px;
    font-size: 23px;
    letter-spacing: -0.04em;
}

.re-top p {
    margin: 0;
    color: var(--re-muted);
    font-size: 13px;
}

.re-shell {
    width: min(100%, 480px);
    margin: 0 auto;
}

.re-progress {
    margin-bottom: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(219, 229, 243, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 22px rgba(25, 45, 80, 0.06);
}

.re-progress span {
    display: block;
    margin-bottom: 7px;
    color: var(--re-muted);
    font-size: 12px;
    font-weight: 700;
}

.re-progress-bar {
    overflow: hidden;
    height: 7px;
    border-radius: 999px;
    background: #e5edf8;
}

.re-progress-bar i {
    display: block;
    width: 8%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa, #2563eb);
    transition: width 0.25s ease;
}

.re-back-btn {
    position: absolute;
    top: 8px;
    left: 16px;
    right: auto;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(15, 35, 80, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.re-back-btn:not(.is-beside-help) {
    left: 16px;
    right: auto;
}

.re-back-btn::before {
    content: '‹';
    margin-right: 4px;
    font-size: 17px;
    line-height: 1;
}

.re-back-btn[hidden] {
    display: none !important;
}

@media (max-width: 520px) {
    .re-back-btn {
        min-height: 30px;
        padding: 0 9px;
        font-size: 12px;
    }
}


.re-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.re-summary span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-weight: 800;
}

.re-form {
    position: relative;
}

.re-card {
    display: none;
    position: relative;
    min-height: 390px;
    padding: 26px 18px 20px;
    border: 1px solid rgba(219, 229, 243, 0.96);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--re-shadow);
}

.re-card.is-active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: reFade 0.22s ease;
}

@keyframes reFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.re-card h1,
.re-card h2 {
    margin: 0 0 20px;
    font-size: 25px;
    line-height: 1.28;
    text-align: center;
    letter-spacing: -0.045em;
}

.re-card h1 {
    font-size: 27px;
}

.re-small {
    margin: -8px auto 18px;
    max-width: 330px;
    color: var(--re-muted);
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

.re-help {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: var(--re-soft);
    color: var(--re-primary-dark);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.re-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
}

.re-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    width: 100%;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.re-btn:active {
    transform: translateY(1px) scale(0.997);
}

.re-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.re-btn-light {
    background: #f8fafc;
    color: #334155;
    border-color: #dbe5f3;
}

.re-field {
    display: block;
    margin: 0 0 13px;
}

.re-field span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.re-field em {
    color: var(--re-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}

.re-field input,
.re-field select,
.re-field textarea {
    width: 100%;
    height: 56px;
    border: 2px solid #c8d6ea;
    border-radius: 16px;
    padding: 0 14px;
    background: #fff;
    color: var(--re-text);
    font-size: 17px;
    font-weight: 700;
    outline: none;
}

.re-field input:focus,
.re-field select:focus,
.re-field textarea:focus {
    border-color: var(--re-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.re-file {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 116px;
    margin-bottom: 16px;
    border: 2px dashed #aac2e8;
    border-radius: 22px;
    background: #f7fbff;
    cursor: pointer;
}

.re-file input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.re-file span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--re-primary-dark);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(25, 45, 80, 0.08);
}

.re-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    margin: 10px 0 14px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.re-check input {
    width: 22px;
    height: 22px;
    accent-color: var(--re-primary);
}

.re-confirm-list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.re-confirm-list li {
    margin: 7px 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.re-confirm-list li::before {
    content: '✓';
    margin-right: 8px;
    color: #059669;
}

.re-result {
    margin-top: 14px;
    padding: 13px;
    border-radius: 18px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
}

.re-result strong {
    color: var(--re-primary-dark);
}

.re-result a {
    color: var(--re-primary-dark);
    font-weight: 800;
}

.re-complete .re-card {
    display: flex;
}

.re-done-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #059669;
    font-size: 36px;
    font-weight: 900;
}

.re-code-box {
    margin: 8px 0 20px;
    padding: 18px;
    border-radius: 22px;
    background: #f7fbff;
    text-align: center;
}

.re-code-box span {
    display: block;
    margin-bottom: 6px;
    color: var(--re-muted);
    font-size: 12px;
    font-weight: 800;
}

.re-code-box strong {
    color: var(--re-primary-dark);
    font-size: 25px;
    letter-spacing: 0.02em;
}

.re-toast {
    position: fixed;
    left: 50%;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 60;
    transform: translateX(-50%);
    width: min(calc(100% - 28px), 420px);
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.94);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.28);
}

.re-popover {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 70;
    transform: translate(-50%, -50%);
    width: min(calc(100% - 32px), 360px);
    padding: 20px 18px 16px;
    border-radius: 22px;
    background: #fff;
    color: #334155;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.26);
}

.re-popover button {
    position: absolute;
    top: 8px;
    right: 9px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 19px;
    cursor: pointer;
}

.re-popover p {
    margin: 0;
    padding-right: 22px;
    font-size: 14px;
    line-height: 1.55;
}

[hidden] {
    display: none !important;
}

@media (max-width: 360px) {
    .re-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .re-card {
        min-height: 372px;
        padding-left: 14px;
        padding-right: 14px;
        border-radius: 24px;
    }

    .re-card h1,
    .re-card h2 {
        font-size: 23px;
    }

    .re-btn {
        min-height: 56px;
        font-size: 16px;
    }
}

/* 2026-07-03 2단계: 모바일 시선 피로감 보정 */
.re-code-box-mini {
    margin: -4px 0 16px;
    padding: 12px;
}

.re-code-box-mini strong {
    font-size: 20px;
}

.re-file.is-filled {
    border-color: #60a5fa;
    background: #eff6ff;
}

.re-file.is-filled span {
    color: #1d4ed8;
}

.re-btn[disabled] {
    opacity: 0.68;
    cursor: wait;
}

@media (max-width: 520px) {
    .re-page {
        padding-top: 14px;
    }

    .re-top {
        margin-bottom: 10px;
    }

    .re-top h1 {
        font-size: 21px;
    }

    .re-top p {
        font-size: 12px;
    }

    .re-progress {
        margin-bottom: 9px;
        padding: 8px 10px;
    }

    .re-card {
        min-height: min(72svh, 430px);
        padding-top: 24px;
        padding-bottom: 18px;
    }

    .re-card h1,
    .re-card h2 {
        font-size: 24px;
    }

    .re-help {
        top: 8px;
        right: 14px;
    }
}


/* 2026-07-03 STEP4 보정: 이전 버튼을 질문 카드 좌측 상단으로 정렬 */
.re-card > .re-back-btn {
    left: 16px;
    right: auto;
}

.re-card > .re-back-btn.is-beside-help {
    left: 16px;
    right: auto;
}

/* 2026-07-03 STEP5: 첫 진입 휴대폰번호 확인 흐름 */
.re-existing-result {
    margin-top: 0;
    margin-bottom: 14px;
    text-align: center;
}

.re-existing-result p {
    margin: 6px 0;
}

.re-small-left {
    display: block;
    margin-top: 8px !important;
    color: var(--re-muted);
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

/* 2026-07-03 추가: 파일 첨부 후 이미지 미리보기 */
.re-file-guide {
    margin: -8px auto 12px;
    max-width: 360px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.re-file-preview {
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.re-file-preview-img {
    position: absolute;
    inset: 9px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border-radius: 16px;
    object-fit: contain;
    background: #f8fafc;
}

.re-file-preview.has-preview {
    border-style: solid;
    background: #eef6ff;
}

.re-file-preview.has-preview span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    min-height: 36px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 35, 80, 0.16);
}

@media (max-width: 520px) {
    .re-file-preview {
        min-height: 138px;
    }

    .re-file-guide {
        font-size: 11px;
    }
}


/* 2026-07-03 STEP8: 첫 화면 휴대폰번호 입력 안정감 보정 */
.re-coupon-word {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    padding: 4px 12px 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #ea580c;
    font-size: 0.82em;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.10);
}

.re-phone-field span {
    color: #1d4ed8;
}

.re-phone-field input {
    border-color: #93c5fd;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.re-phone-note {
    color: #475569;
    font-weight: 750;
}

@media (max-width: 520px) {
    .re-coupon-word {
        padding: 4px 10px 5px;
        font-size: 0.78em;
    }
}

/* STEP16: 긴 선택 제목 한 줄 표시 */
.re-card h2.re-one-line-title {
    white-space: nowrap;
    font-size: clamp(20px, 5vw, 25px);
    letter-spacing: -0.06em;
}

@media (max-width: 380px) {
    .re-card h2.re-one-line-title {
        font-size: 19px;
    }
}


.re-check-line {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin: 10px 0 14px;
    padding: 0 14px;
    border: 1px solid #dbe5f3;
    border-radius: 16px;
    background: #f8fbff;
    color: #1f2937;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.re-check-line input {
    width: 20px;
    height: 20px;
    accent-color: var(--re-primary);
}

.re-field input.is-disabled {
    background: #f3f6fb;
    color: #64748b;
}


/* STEP21: 바람세기 일부작동 체크박스 */
.re-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 4px 0 14px;
}

.re-check-grid .re-check-line {
    margin: 0;
    min-height: 54px;
}

@media (max-width: 360px) {
    .re-check-grid {
        grid-template-columns: 1fr;
    }
}


/* STEP23 - 바람방향 누락 기능 확인 문구 */
.re-split-question {
    line-height: 1.36;
}

.re-split-question .re-question-note {
    display: inline-block;
    color: #64748b;
    font-size: 18px;
    font-weight: 850;
}

.re-split-question .re-question-main {
    display: inline-block;
    margin-top: 6px;
}

.re-split-question .re-question-main em {
    font-style: normal;
    color: #2563eb;
}

@media (max-width: 420px) {
    .re-split-question .re-question-note {
        font-size: 16px;
    }
}


/* STEP24 - 운전모드 체크박스 */
.re-mode-grid .re-check-line:last-child {
    grid-column: 1 / -1;
}


.re-coupon-warn {
    margin: -6px auto 18px;
    max-width: 360px;
    color: #b45309;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
}


.re-duplicate-box {
    margin: -2px 0 14px;
    padding: 16px 14px;
    border-radius: 18px;
    background: #f8fafc;
    color: #243449;
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
}

.re-duplicate-box strong {
    display: block;
    margin-bottom: 6px;
    color: #1d4ed8;
    font-size: 18px;
    font-weight: 900;
}

.re-duplicate-box p {
    margin: 2px 0;
}

.re-field textarea {
    min-height: 116px;
    height: auto;
    padding: 14px;
    line-height: 1.45;
    resize: vertical;
}


.re-existing-file-note {
    margin: 8px 0 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #047857;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.45;
    text-align: center;
}


.re-existing-preview {
    width: 100%;
    margin: 10px 0 12px;
    padding: 12px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: #f8fbff;
    text-align: center;
}

.re-existing-preview p {
    margin: 0 0 8px;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.re-existing-preview img {
    display: block;
    max-width: 100%;
    max-height: 220px;
    margin: 0 auto 8px;
    border-radius: 14px;
    object-fit: contain;
    background: #fff;
}

.re-existing-preview a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}


.re-result-alert {
    color: #dc2626;
    font-weight: 800;
}

.re-lookup-home {
    text-align: left;
}

.re-report-list-title {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
    color: #2563eb;
}

.re-report-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.re-report-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: #10213a;
    font-size: 13px;
    font-weight: 800;
}

.re-mini-edit {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eaf1ff;
    color: #2457e7;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}


/* 2026-07-04 STEP38: 이전/도움말 버튼을 제목과 겹치지 않게 위쪽으로 보정 */
.re-card > .re-back-btn {
    top: 8px;
}

.re-card > .re-help {
    top: 8px;
}

@media (max-width: 520px) {
    .re-card > .re-back-btn,
    .re-card > .re-help {
        top: 8px;
    }
}

/* STEP40 - 최종 확인 상세 요약 */
.re-confirm-detail-list li::before {
    content: none;
    margin: 0;
}

.re-confirm-detail-list .re-confirm-row {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 8px;
    align-items: start;
    padding: 9px 12px;
}

.re-confirm-label {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.re-confirm-value {
    color: #334155;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.38;
    text-align: right;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.re-confirm-row.is-small .re-confirm-value {
    font-size: 12px;
    line-height: 1.42;
}

@media (max-width: 380px) {
    .re-confirm-detail-list .re-confirm-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .re-confirm-value {
        text-align: left;
    }
}


/* =========================================================
   ✅ 이벤트 참여 전 안내 페이지
   - 휴대폰번호 입력 전에 쿠폰 수령 및 반려 기준을 짧게 안내
   ========================================================= */
.re-guide-box {
    margin: 18px 0 14px;
    padding: 16px 16px;
    border: 1px solid #cfe3ff;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    text-align: left;
}

.re-guide-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #174f9f;
    font-size: 16px;
    font-weight: 900;
}

.re-guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #e7f2ff;
    font-size: 18px;
}

.re-guide-box p {
    margin: 0;
    color: #54657a;
    font-size: 13px;
    line-height: 1.65;
    word-break: keep-all;
}

.re-notice-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.re-notice-list li {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px 13px;
    border-radius: 15px;
    background: #f7faff;
    border: 1px solid rgba(206, 222, 242, 0.72);
}

.re-notice-list strong {
    color: #0f5dcc;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.re-notice-list span {
    color: #53657a;
    font-size: 12px;
    line-height: 1.58;
    word-break: keep-all;
}

@media (max-width: 420px) {
    .re-notice-list li {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 11px 12px;
    }
}


/* 2026-07-13 추가: 이벤트 참여 대상 2026년도 구매자 한정 강조 */
.re-eligibility-alert {
    margin: 0 auto 16px;
    padding: 14px 14px;
    border: 2px solid #fb923c;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.14);
    text-align: left;
}

.re-eligibility-alert-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    color: #9a3412;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.re-eligibility-alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 38px;
    border-radius: 13px;
    background: #ffffff;
    color: #ea580c;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.04em;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.14);
}

.re-eligibility-alert p {
    margin: 0;
    color: #7c2d12;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    word-break: keep-all;
}

.re-notice-list li.is-important {
    border-color: #fdba74;
    background: #fff7ed;
}

.re-notice-list li.is-important strong {
    color: #c2410c;
}

.re-notice-list li.is-important span {
    color: #7c2d12;
    font-weight: 800;
}
