/**
 * EXMACHINA Theme — Additional component styles
 * Loaded via functions.php (inc/enqueue.php)
 */

/* Editor styles for block editor */
.wp-block-button .wp-block-button__link {
    border-radius: var(--radius);
}

/* Block editor adjustments */
.block-editor-block-list__layout {
    font-family: var(--font-body);
}

/* Gallery */
.wp-block-gallery { display: grid; gap: 0.75rem; }

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.entry-content th, .entry-content td {
    border: 1px solid var(--color-border);
    padding: 0.5rem 0.75rem;
    text-align: left;
}
.entry-content th { background: var(--color-muted); font-weight: 600; }

