/* Bloque nativo Tabla — UNTDF 2026 v2.14.0.
   Hoja compartida entre la página pública y el editor de bloques.
   No alcanza al bloque Plan de estudios ni a tablas HTML ajenas a core/table. */

.wp-block-table {
    --untdf-table-accent: #BE1C1D;
    max-width: 100%;
    margin-block: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.wp-block-table table th,
.wp-block-table table td,
.wp-block-details .wp-block-table table th,
.wp-block-details .wp-block-table table td {
    padding: .8rem 1rem;
    border: 1px solid #d8d8d8;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
}

.wp-block-table table th:not([class*="has-text-align-"]) {
    text-align: left;
}

.wp-block-table table thead {
    border-bottom: 2px solid var(--untdf-table-accent);
}

.wp-block-table table tfoot {
    border-top: 2px solid #bdbdbd;
    font-weight: 600;
}

.wp-block-table table:not(.has-background) th,
.wp-block-details .wp-block-table table:not(.has-background) th {
    background: #ededed;
    color: #333;
    font-weight: 700;
}

.wp-block-table:not(.has-background):not(.is-style-stripes) table:not(.has-background) tbody tr:nth-child(even) {
    background: #f6f6f6;
}

.wp-block-table.is-style-stripes {
    border-bottom: 0;
}

.wp-block-table.is-style-stripes table tbody tr:nth-child(odd) {
    background: #f2f2f2;
}

.wp-block-table figcaption {
    margin-top: .6rem;
    color: #555;
    font-size: .9375rem;
    line-height: 1.5;
    text-align: left;
}

.wp-block-table table a {
    text-decoration: underline;
    text-underline-offset: .15em;
}

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

/* Variante seleccionable: cabecera roja y una línea institucional superior. */
.wp-block-table.is-style-untdf-institucional {
    border-top: 3px solid var(--untdf-table-accent);
}

.wp-block-table.is-style-untdf-institucional table:not(.has-background) thead th {
    color: #fff;
    background: var(--untdf-table-accent);
    border-color: var(--untdf-table-accent);
}

/* Mismo tratamiento dentro de los acordeones institucionales existentes. */
.wp-block-details .wp-block-table table {
    min-width: 0;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .wp-block-table table th,
    .wp-block-table table td {
        padding: .7rem .8rem;
    }
    /* Mantiene las columnas y permite desplazamiento dentro del bloque. */
    .wp-block-table table,
    .wp-block-details .wp-block-table table {
        min-width: 34rem;
    }
}
