.field-intro {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.seniority-grid,
.notice-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.result-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.notice-result-grid > div {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--accent-soft);
}

.notice-result-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
}

.notice-result-grid strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
}

.result-summary {
    margin: 22px 0 0;
    font-size: 18px;
    font-weight: 600;
}

.threshold-note {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(31, 95, 74, 0.18);
    border-radius: var(--radius-md);
    background: var(--accent-soft);
}

.threshold-note p {
    margin: 6px 0 0;
}

.result-footnote {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.only-print {
    display: none;
}

@media (max-width: 760px) {
    .seniority-grid,
    .notice-result-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    @page {
        size: A4;
        margin: 14mm;
    }

    .site-header,
    .site-footer,
    .back-link,
    .no-print {
        display: none !important;
    }

    .notice-result-grid > div {
        min-width: 0;
        padding: 4mm;
    }

    .notice-result-grid span {
        margin-bottom: 2mm;
        font-size: 8.5pt;
    }

    .notice-result-grid strong {
        font-size: 11pt !important;
    }

    .only-print {
        display: block;
    }

    .site-main,
    .card,
    .result-card {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        border: 0;
        background: #ffffff;
        box-shadow: none;
    }

    .print-heading {
        margin-bottom: 18px;
        text-align: center;
    }

    .print-heading h1 {
        margin: 0;
        font-size: 22px;
    }

    .notice-result-grid > div,
    .threshold-note {
        background: #ffffff;
    }
}