/* Take-Home Paycheck Calculator
   Reuses the .age-hero / stat-tile shell from age-calculator.css; only the
   paycheck-specific pieces live here. */

.pay-tile {
    background: #fff;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: .75rem;
    padding: .85rem .75rem;
    text-align: center;
}

.pay-tile-label {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6c757d;
}

.pay-tile-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
    line-height: 1.2;
    margin: .15rem 0;
}

.pay-tile-sub {
    font-size: .68rem;
    color: #6c757d;
}

/* The 51 state links are a navigation block, not body copy — keep them quiet
   until hovered so they do not compete with the calculator itself. */
.paycheck-state-links a {
    color: #495057;
    padding: .15rem 0;
}

.paycheck-state-links a:hover {
    color: var(--calculator-color, #6366f1);
    text-decoration: underline !important;
}

@media print {
    .paycheck-state-links,
    .c4n-methodology,
    .loan-faq,
    .related-calculators-plain {
        display: none !important;
    }
}
