/*
 * AR Table Enhancements
 * Presentation-only improvements for the WordPress core Table block.
 * Responsive/mobile layout is intentionally handled by the site theme.
 */

.wp-block-table {
    margin-block: 1.5rem;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.98rem;
    line-height: 1.5;
}

.wp-block-table th,
.wp-block-table td {
    padding: 0.75rem 0.85rem;
    border: 1px solid #d8dee6;
    vertical-align: top;
    text-align: left;
}

.wp-block-table thead th {
    background: var(--main-colour, #4a6fa5);
    color: #fff;
    font-weight: 650;
    border-color: rgba(255, 255, 255, 0.28);
}

.wp-block-table tbody th {
    font-weight: 650;
    background: #f5f7f9;
}

.wp-block-table tbody tr:nth-child(even) td {
    background: #fafbfc;
}

.wp-block-table a {
    text-underline-offset: 0.14em;
    text-decoration-thickness: 0.08em;
}

.wp-block-table a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.wp-block-table figcaption {
    margin-top: 0.55rem;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.45;
}

@media print {
    .wp-block-table {
        overflow: visible !important;
    }

    .wp-block-table table {
        width: 100% !important;
    }

    .wp-block-table tr,
    .wp-block-table th,
    .wp-block-table td {
        break-inside: avoid;
    }
}
