/* ============================================================
   Boletin Oficial Files
   Estilos del shortcode [decretos]
   ============================================================ */

.bod-lista {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.bod-item {
    margin: 0;
    padding: 0;
}

.bod-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #555555;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
    height: 100%;
}

.bod-link:hover {
    background-color: #f0f0f0;
    color: #333333;
    text-decoration: underline;
}

/* Ícono SVG */
.bod-svg {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}

/* Mensajes de estado */
.bod-error,
.bod-empty {
    color: #666;
    font-style: italic;
    padding: 8px 0;
}

.bod-error code {
    background: #f4f4f4;
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 13px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .bod-lista {
        grid-template-columns: 1fr;
    }

    .bod-link {
        flex-direction: row;
        text-align: left;
        padding: 10px 12px;
        font-size: 17px;
    }

    .bod-svg {
        width: 56px;
        height: 56px;
    }
}
