.tools-hero {
    margin-bottom: 2.5rem;
}

.tools-hero h1 {
    max-width: 1000px;
}

.tool-jump-nav {
    position: sticky;
    top: 92px;
    z-index: 20;
    width: 100%;
    margin-bottom: 2.5rem;
    padding: 0.7rem;
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    background: rgba(255, 250, 241, 0.97);
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.tool-jump-nav a {
    min-height: 44px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 0.55rem 0.8rem;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.tool-jump-nav a:hover,
.tool-jump-nav a:focus-visible {
    color: var(--white);
    background: var(--cobalt);
}

.tool-stack,
.kit-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tool-card,
.kit-sheet {
    min-width: 0;
    padding: clamp(1.1rem, 3vw, 2.2rem);
    background: var(--surface);
    border: 4px solid var(--ink);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.tool-card {
    scroll-margin-top: 160px;
}

.tool-card-header,
.kit-header {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.1rem 1.25rem;
    align-items: start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--line-soft);
}

.tool-card-header h2,
.kit-header h2,
.methodology-section h2 {
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.tool-card-header h2 {
    font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.tool-card-header p,
.kit-header p {
    max-width: 720px;
    margin-top: 0.55rem;
    color: var(--ink-soft);
}

.tool-number,
.kit-label {
    width: 58px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--coral);
    border: 3px solid var(--ink);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 850;
    box-shadow: 3px 3px 0 var(--ink);
}

.tool-kicker,
.kit-label {
    color: var(--cobalt);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.kit-label {
    width: auto;
    min-height: 28px;
    margin-bottom: 0.6rem;
    padding: 0.2rem 0.55rem;
    color: var(--ink);
    background: var(--sun);
    border: 2px solid var(--ink);
    border-radius: 999px;
    box-shadow: none;
}

.tool-layout {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1.4rem, 3vw, 2.5rem);
    align-items: start;
}

.tool-form,
.tool-result-panel,
.editable-list-wrap {
    min-width: 0;
}

.tool-form {
    padding: 1.2rem;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
}

.tool-form fieldset,
.kit-form fieldset {
    min-width: 0;
    margin: 0 0 1.25rem;
    padding: 1rem;
    border: 2px solid var(--line-soft);
    border-radius: var(--radius-small);
}

.tool-form legend,
.kit-form legend {
    padding: 0 0.35rem;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.field-grid,
.kit-meta-grid {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.kit-meta-grid.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field,
.table-field {
    min-width: 0;
}

.field-full {
    grid-column: 1 / -1;
}

.field > label,
.allocation-grid > label,
.check-grid > label,
.print-checklist > label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 800;
}

.field > label {
    min-height: 28px;
    margin-bottom: 0.4rem;
}

.tool-form input:not([type="checkbox"]):not([type="radio"]),
.tool-form select,
.kit-form input:not([type="checkbox"]),
.kit-form select,
.kit-form textarea,
.table-field input,
.table-field select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0.65rem 0.72rem;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 8px;
    font: inherit;
    line-height: 1.35;
}

.kit-form textarea,
.writing-field textarea {
    min-height: 110px;
    resize: vertical;
}

.tool-form input[type="checkbox"],
.tool-form input[type="radio"],
.kit-form input[type="checkbox"],
.print-checklist input[type="checkbox"],
.table-field input[type="checkbox"] {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    flex: 0 0 20px;
    margin: 0;
    accent-color: var(--cobalt);
}

.tool-form input:focus,
.tool-form select:focus,
.kit-form input:focus,
.kit-form select:focus,
.kit-form textarea:focus,
.table-field input:focus,
.table-field select:focus {
    outline: 4px solid var(--cobalt);
    outline-offset: 2px;
}

.check-grid,
.radio-row {
    display: grid;
    gap: 0.7rem;
}

.check-grid > label,
.radio-row > label {
    min-height: 36px;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.allocation-grid > label {
    min-width: 0;
    justify-content: space-between;
}

.allocation-grid label > span {
    min-width: 88px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tool-calculate {
    width: 100%;
    min-height: 50px;
    margin-top: 0.25rem;
}

.tool-result-panel {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: var(--white);
    border: 3px solid var(--ink);
    border-radius: var(--radius);
}

.tool-result-panel > h3,
.editable-list-wrap > h3,
.methodology-section h3,
.budget-summary h3 {
    margin-bottom: 1rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.2;
}

.tool-result:focus {
    outline: 4px solid var(--cobalt);
    outline-offset: 5px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.metric {
    min-width: 0;
    padding: 0.8rem;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 10px;
}

.metric-label,
.metric strong {
    display: block;
    overflow-wrap: anywhere;
}

.metric-label {
    margin-bottom: 0.25rem;
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.metric strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.15;
}

.result-list-block {
    margin-top: 1.25rem;
}

.result-list-block h4,
.game-result-card h4 {
    margin-bottom: 0.65rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.result-list-block ul {
    display: grid;
    gap: 0.5rem;
    list-style: none;
}

.result-list-block li {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(105px, 0.7fr) minmax(0, 1.3fr);
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line-soft);
}

.result-list-block li:last-child {
    border-bottom: 0;
}

.result-list-block li span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.result-note {
    margin-top: 1rem;
    padding: 0.8rem 0.9rem;
    color: var(--ink-soft);
    background: var(--paper);
    border-left: 4px solid var(--cobalt);
    font-size: 0.84rem;
    line-height: 1.55;
}

.warning-note {
    color: var(--ink);
    background: #fff0b8;
    border-left-color: var(--coral);
}

.table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border: 2px solid var(--ink);
    border-radius: 10px;
}

.result-table,
.kit-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--ink);
    background: var(--white);
    font-size: 0.8rem;
}

.schedule-table,
.budget-result-table {
    min-width: 560px;
}

.result-table th,
.result-table td,
.kit-table th,
.kit-table td {
    padding: 0.65rem 0.7rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line-soft);
}

.result-table thead th,
.kit-table thead th {
    color: var(--ink);
    background: var(--paper-deep);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.result-table tbody tr:last-child td,
.result-table tbody tr:last-child th {
    border-bottom: 0;
}

.schedule-table th {
    width: 36%;
}

.editable-list-wrap {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--sun);
    border: 3px solid var(--ink);
    border-radius: var(--radius);
}

.editable-list-wrap > p {
    margin-bottom: 1rem;
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.editable-list {
    display: grid;
    gap: 0.55rem;
}

.shopping-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 24px minmax(95px, 0.5fr) minmax(130px, 1.1fr) minmax(130px, 1fr);
    gap: 0.55rem;
    align-items: center;
    padding: 0.7rem;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 8px;
}

.shopping-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--cobalt);
}

.shopping-row [contenteditable] {
    min-width: 0;
    min-height: 32px;
    padding: 0.3rem 0.4rem;
    border: 1px dashed var(--line-soft);
    border-radius: 5px;
    overflow-wrap: anywhere;
}

.shopping-row [contenteditable]:focus {
    background: #e5efff;
    outline: 3px solid var(--cobalt);
}

.shopping-quantity {
    font-weight: 800;
}

.shopping-note {
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.tool-actions,
.kit-actions {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    margin-top: 1.5rem;
}

.tool-actions .btn,
.kit-actions .btn {
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
}

.action-status {
    min-height: 1.5em;
    color: var(--cobalt);
    font-size: 0.78rem;
    font-weight: 800;
}

.action-status.is-warning {
    color: var(--coral-dark);
}

.game-results {
    display: grid;
    gap: 0.8rem;
}

.game-result-card {
    min-width: 0;
    padding: 1rem;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 10px;
}

.game-result-card p {
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.55;
}

.game-result-card p + p {
    margin-top: 0.55rem;
}

.game-meta {
    color: var(--cobalt) !important;
    font-weight: 750;
}

.game-why {
    color: var(--ink) !important;
}

.methodology-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.methodology-section .section-intro {
    margin-top: -1rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.methodology-grid article {
    min-width: 0;
    padding: 1.25rem;
    background: var(--surface);
    border: 3px solid var(--ink);
    border-radius: var(--radius);
}

.methodology-grid p {
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.65;
}

.local-storage-notice {
    position: relative;
    max-width: 940px;
    margin: 0 auto 3rem;
    padding: 1.35rem 7rem 1.35rem 1.35rem;
    background: #e5efff;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
}

.local-storage-notice h2 {
    margin-bottom: 0.35rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.local-storage-notice p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.privacy-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.35rem 0.65rem;
    color: var(--white);
    background: var(--cobalt);
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.noscript-message {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff0b8;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
}

.kit-sheet {
    scroll-margin-top: 120px;
}

.kit-header {
    grid-template-columns: minmax(0, 1fr) auto;
}

.kit-header > div:first-child {
    min-width: 0;
}

.kit-header h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.kit-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.kit-action-status {
    grid-column: 2;
    justify-self: end;
}

.kit-form {
    min-width: 0;
}

.kit-meta-grid {
    margin-bottom: 1.4rem;
}

.checklist-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.print-checklist {
    display: grid;
    align-content: start;
    gap: 0.7rem;
}

.print-checklist > label {
    min-height: 34px;
    align-items: flex-start;
    line-height: 1.35;
}

.writing-field {
    margin-top: 1.25rem;
}

.kit-table {
    min-width: 720px;
    table-layout: fixed;
}

.shopping-table {
    min-width: 760px;
}

.shopping-table th:nth-child(1) { width: 62px; }
.shopping-table th:nth-child(2) { width: 25%; }
.shopping-table th:nth-child(3) { width: 13%; }
.shopping-table th:nth-child(4) { width: 18%; }
.shopping-table th:nth-child(5) { width: 14%; }
.shopping-table th:nth-child(6) { width: 90px; }

.run-table,
.contacts-table,
.rsvp-table,
.timeline-table {
    min-width: 850px;
}

.run-table th:nth-child(1),
.run-table th:nth-child(2),
.timeline-table th:nth-child(1) {
    width: 110px;
}

.run-table th:nth-child(3) { width: 28%; }
.run-table th:nth-child(4) { width: 15%; }
.run-table th:nth-child(5) { width: 25%; }
.run-table th:nth-child(6),
.timeline-table th:nth-child(5) { width: 80px; }

.budget-table {
    min-width: 760px;
}

.budget-table th:first-child { width: 22%; }
.budget-table th:last-child { width: 75px; }

.contacts-table th:first-child { width: 20%; }
.contacts-table th:nth-child(2) { width: 22%; }
.contacts-table th:nth-child(3) { width: 80px; }
.contacts-table th:nth-child(4) { width: 90px; }
.contacts-table th:last-child { width: 85px; }

.rsvp-table th:first-child { width: 20%; }
.rsvp-table th:nth-child(2) { width: 145px; }
.rsvp-table th:nth-child(3) { width: 95px; }
.rsvp-table th:nth-child(4) { width: 23%; }
.rsvp-table th:nth-child(5) { width: 18%; }
.rsvp-table th:last-child { width: 85px; }

.timeline-table th:nth-child(2) { width: 30%; }
.timeline-table th:nth-child(3) { width: 16%; }
.timeline-table th:nth-child(4) { width: 28%; }

.kit-table th,
.kit-table td {
    overflow-wrap: anywhere;
}

.kit-table tbody tr:last-child td,
.kit-table tbody tr:last-child th {
    border-bottom: 0;
}

.kit-table tfoot th,
.kit-table tfoot td {
    color: var(--ink);
    background: var(--sun);
    font-weight: 850;
}

.table-field {
    display: block;
}

.table-field input,
.table-field select {
    min-height: 38px;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
}

.table-field input[type="checkbox"] {
    min-height: 20px;
    height: 20px;
    margin: 0.35rem;
}

.row-remove {
    min-height: 36px;
    padding: 0.35rem 0.5rem;
    color: var(--white);
    background: var(--coral-dark);
    border: 2px solid var(--ink);
    border-radius: 7px;
    font-size: 0.7rem;
    font-weight: 800;
}

.add-row-button {
    margin-top: 1rem;
}

.budget-summary,
.rsvp-summary {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 10px;
}

.budget-summary,
.rsvp-summary p {
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.budget-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.rsvp-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.rsvp-summary strong {
    color: var(--ink);
}

@media (max-width: 900px) {
    .tool-layout,
    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .tool-form {
        order: 1;
    }

    .tool-result-panel {
        order: 2;
    }

    .kit-header {
        grid-template-columns: 1fr;
    }

    .kit-actions {
        justify-content: flex-start;
    }

    .kit-action-status {
        grid-column: 1;
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .tool-jump-nav {
        top: 126px;
        margin-bottom: 2rem;
    }

    .tool-card,
    .kit-sheet {
        border-width: 3px;
        border-radius: var(--radius);
        box-shadow: 5px 5px 0 var(--ink);
    }

    .tool-card-header,
    .kit-header {
        grid-template-columns: 1fr;
    }

    .tool-card-header h2,
    .kit-header h2 {
        font-size: 1.75rem;
    }

    .tool-number {
        width: 50px;
        min-height: 50px;
    }

    .field-grid,
    .kit-meta-grid,
    .kit-meta-grid.three-column,
    .checklist-columns,
    .rsvp-summary {
        grid-template-columns: 1fr;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .metric {
        display: grid;
        grid-template-columns: minmax(90px, 0.7fr) minmax(0, 1.3fr);
        gap: 0.6rem;
        align-items: baseline;
    }

    .metric-label {
        margin-bottom: 0;
    }

    .result-list-block li {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .shopping-row {
        grid-template-columns: 24px minmax(0, 1fr);
    }

    .shopping-row .shopping-quantity,
    .shopping-row .shopping-name,
    .shopping-row .shopping-note {
        grid-column: 2;
    }

    .tool-actions,
    .kit-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tool-actions .btn,
    .kit-actions .btn {
        width: 100%;
        min-width: 0;
        padding-inline: 0.55rem;
    }

    .action-status {
        grid-column: 1 / -1;
    }

    .local-storage-notice {
        padding: 1rem;
    }

    .privacy-badge {
        position: static;
        display: inline-flex;
        margin-top: 0.8rem;
    }
}

@media (max-width: 440px) {
    .tool-card,
    .kit-sheet {
        padding: 0.85rem;
    }

    .tool-card-header,
    .kit-header {
        gap: 0.8rem;
    }

    .tool-form,
    .editable-list-wrap {
        padding: 0.8rem;
    }

    .allocation-grid {
        grid-template-columns: 1fr;
    }

    .tool-actions,
    .kit-actions {
        grid-template-columns: 1fr;
    }

    .action-status {
        grid-column: 1;
    }
}

@media print {
    @page {
        size: auto;
        margin: 0.45in;
    }

    *,
    *::before,
    *::after {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    html,
    body {
        background: #fff !important;
        color: #000 !important;
        overflow: visible !important;
    }

    body::before,
    body > header,
    body > footer,
    .tools-hero,
    .tool-jump-nav,
    .local-storage-notice,
    .noscript-message,
    .methodology-section,
    .faq-section,
    .tool-actions,
    .kit-actions,
    .action-status,
    .add-row-button,
    .row-remove {
        display: none !important;
    }

    main {
        width: 100%;
        min-height: 0;
        padding: 0;
    }

    .tool-card,
    .kit-sheet {
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        background: #fff;
        border: 0;
        border-radius: 0;
    }

    body.tool-print-mode .tool-card {
        display: none !important;
    }

    body.tool-print-mode .tool-card.is-printing {
        display: block !important;
    }

    body.kit-print-mode .kit-sheet {
        display: none !important;
    }

    body.kit-print-mode .kit-sheet.is-printing {
        display: block !important;
    }

    body.print-all-kits .kit-sheet {
        display: block !important;
        break-after: page;
        page-break-after: always;
    }

    body.print-all-kits .kit-sheet:last-child {
        break-after: auto;
        page-break-after: auto;
    }

    .tool-card-header,
    .kit-header {
        display: block;
        margin-bottom: 0.25in;
        padding-bottom: 0.12in;
        border-bottom: 2px solid #000;
    }

    .tool-card-header h2,
    .kit-header h2 {
        font-size: 20pt;
    }

    .tool-card-header p,
    .kit-header p {
        margin-top: 0.08in;
        font-size: 9pt;
    }

    .tool-number,
    .kit-label {
        display: none;
    }

    .tool-layout {
        display: block;
    }

    .tool-form,
    .tool-result-panel,
    .editable-list-wrap {
        margin-bottom: 0.2in;
        padding: 0.1in;
        background: #fff;
        border: 1px solid #000;
        break-inside: avoid;
    }

    .tool-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.1in;
    }

    .tool-form fieldset,
    .tool-form .tool-calculate,
    .field-full,
    .allocation-grid,
    .check-grid,
    .radio-row {
        grid-column: 1 / -1;
    }

    .tool-form input:not([type="checkbox"]):not([type="radio"]),
    .tool-form select,
    .kit-form input:not([type="checkbox"]),
    .kit-form select,
    .kit-form textarea,
    .table-field input,
    .table-field select {
        min-height: 0;
        padding: 0.04in;
        color: #000;
        background: #fff;
        border: 1px solid #555;
        border-radius: 0;
    }

    .tool-form input[type="checkbox"],
    .tool-form input[type="radio"],
    .kit-form input[type="checkbox"],
    .print-checklist input[type="checkbox"],
    .table-field input[type="checkbox"] {
        width: 0.16in;
        min-width: 0.16in;
        height: 0.16in;
        min-height: 0.16in;
    }

    .metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .metric {
        display: block;
        padding: 0.07in;
    }

    .metric-label {
        margin-bottom: 0.03in;
    }

    .result-note,
    .budget-summary,
    .rsvp-summary {
        color: #000;
        background: #fff;
        border: 1px solid #555;
    }

    .table-scroll {
        overflow: visible;
        border-color: #000;
    }

    .result-table,
    .kit-table {
        min-width: 0;
        table-layout: fixed;
        font-size: 7.5pt;
    }

    .result-table th,
    .result-table td,
    .kit-table th,
    .kit-table td {
        padding: 0.05in;
    }

    .result-table thead th,
    .kit-table thead th,
    .kit-table tfoot th,
    .kit-table tfoot td {
        color: #000;
        background: #eee;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .table-field input,
    .table-field select {
        min-height: 0.2in;
        font-size: 7.5pt;
    }

    .shopping-row {
        grid-template-columns: 0.2in 0.45in 1.1fr 1fr;
        padding: 0.05in;
    }

    .shopping-row [contenteditable] {
        min-height: 0.2in;
        padding: 0.02in;
        border-color: #999;
    }

    .game-result-card,
    .methodology-grid article {
        border-color: #000;
    }

    .kit-meta-grid,
    .kit-meta-grid.three-column {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kit-form textarea,
    .writing-field textarea {
        min-height: 0.75in;
    }

    .checklist-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .print-checklist {
        gap: 0.08in;
        border-color: #000;
    }

    .print-checklist > label {
        min-height: 0.18in;
    }

    .kit-sheet form,
    .kit-sheet table,
    .checklist-columns,
    .kit-meta-grid {
        break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: none;
    }
}
