/* Restore default styles for WordPress blocks that Tailwind might strip */

/* Paragraphs & Generic Content */
.content p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.content figure {
    margin-bottom: 1.5rem;
    display: block;
}

/* Headings */
.wp-block-heading h1, h1.wp-block-heading, .content h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.wp-block-heading h2, h2.wp-block-heading, .content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.25rem; line-height: 1.3; }
.wp-block-heading h3, h3.wp-block-heading, .content h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.4; }
.wp-block-heading h4, h4.wp-block-heading, .content h4 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.4; }
.wp-block-heading h5, h5.wp-block-heading, .content h5 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.4; }
.wp-block-heading h6, h6.wp-block-heading, .content h6 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.4; }

/* Lists */
ul.wp-block-list, ol.wp-block-list, .content ul, .content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
ul.wp-block-list, .content ul { list-style-type: disc; }
ol.wp-block-list, .content ol { list-style-type: decimal; }
.wp-block-list li, .content li { margin-bottom: 0.5rem; }

/* Quotes */
.wp-block-quote {
    border-left: 4px solid #ccc;
    margin: 1.5rem 0;
    padding: 1rem;
}
.wp-block-quote p {
    font-size: 1.25rem;
    font-style: italic;
}
.wp-block-quote cite {
    font-size: 0.875rem;
    color: #666;
}

/* Preformatted / Code */
.wp-block-preformatted, .wp-block-code {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    font-family: monospace;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

/* Tables */
.wp-block-table {
    margin-bottom: 1.5rem;
    width: 100%;
    border-collapse: collapse;
}
.wp-block-table td, .wp-block-table th {
    border: 1px solid #ddd;
    padding: 0.5rem;
}

/* Images */
.wp-block-image {
    margin-bottom: 1.5rem;
}
.wp-block-image figcaption {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

/* Separator */
hr.wp-block-separator {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 2rem 0;
}

/* Buttons */
.wp-block-button__link {
    text-decoration: none;
}
