.read-notice-app {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 48px;
}

.read-notice-engagement {
    margin-bottom: 18px;
}

.read-notice-title {
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    margin: 12px 0 34px;
    letter-spacing: 0;
}

.read-notice-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
    gap: 34px;
    align-items: start;
}

.notice-panel,
.question-panel {
    min-width: 0;
}

.notice-card {
    background: #fff;
    border: 1px solid #222;
    padding: 10px;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.notice-card-inner {
    min-height: 160px;
    border: 1px solid #b9bec8;
    padding: 26px 30px;
}

.notice-card h2 {
    text-align: center;
    font-size: 17px;
    line-height: 1.2;
    margin: 0 0 2px;
    letter-spacing: 0;
}

.notice-card h3 {
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
    margin: 0 0 22px;
    letter-spacing: 0;
}

.notice-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.48;
    color: #111827;
}

.notice-loading {
    padding: 40px 12px;
    text-align: center;
    color: #64748b;
}

.question-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 14px;
}

.question-panel-header h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0;
}

.read-notice-meta {
    margin: 0 0 4px;
    color: #64748b;
    font-size: 13px;
}

.read-notice-question {
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 0;
}

.read-notice-question:first-child {
    padding-top: 0;
}

.read-notice-question legend {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.read-notice-choice {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    padding: 8px 0;
    cursor: pointer;
    color: #111827;
}

.read-notice-choice input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.read-notice-choice span {
    line-height: 1.35;
}

.read-notice-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.read-notice-results {
    margin-top: 18px;
    border: 1px solid #d8dee9;
    background: #f8fafc;
    padding: 16px;
}

.read-notice-results h3 {
    margin: 0 0 12px;
    font-size: 18px;
    letter-spacing: 0;
}

.read-notice-result {
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
}

.read-notice-result:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.read-notice-result strong {
    display: block;
    margin-bottom: 5px;
}

.read-notice-result.correct strong {
    color: #166534;
}

.read-notice-result.incorrect strong {
    color: #b91c1c;
}

.read-notice-error {
    margin: 0 0 18px;
    padding: 12px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.hidden {
    display: none !important;
}

@media (max-width: 820px) {
    .read-notice-app {
        width: min(100% - 20px, 680px);
        padding-top: 18px;
    }

    .read-notice-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .read-notice-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .notice-card-inner {
        padding: 22px 20px;
    }

    .question-panel-header {
        align-items: center;
    }
}
