/*
 * Micro v2 — Custom Styles
 *
 * theme.json で管理しきれないスタイルをここに記述。
 * theme.json のトークンは var(--wp--preset--*) で参照可能。
 */

/* ─── Post Content ─── */
.wp-block-post-content {

    /* Headings */
    h2 {
        border-bottom: 4px solid #232323;
        padding: 0.5rem 1rem;
        margin-top: 4rem;
        /* 薄い斜めストライプ（/） */
        background-image: repeating-linear-gradient(-45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px);
    }

    h3 {}

    h4 {}

    h5 {}

    h6 {}

    /* Lists */
    ul {}

    ol {}

    li {}

    dl {}

    dt {}

    dd {}

    /* Tables */
    table {}

    thead {}

    tbody {}

    tfoot {}

    tr {}

    th {}

    td {}
}