/**
 * Gutenberg Default Styles Restoration
 * 
 * This stylesheet restores default Gutenberg/WordPress editor styles for pages
 * that are edited with the Gutenberg block editor. When using the Bricks builder
 * theme, default spacing, typography, and block styles are often removed. This
 * file re-applies those defaults within the .gutenberg-post-template wrapper.
 * 
 * Usage: Wrap Gutenberg-edited content with class="gutenberg-post-template"
 */

/* Gutenberg wrapper */
.gutenberg-post-template {
    /* Let Gutenberg blocks flow normally */
    max-width: 100%;
}

/* Typography defaults */
.gutenberg-post-template h1,
.gutenberg-post-template h2,
.gutenberg-post-template h3,
.gutenberg-post-template h4,
.gutenberg-post-template h5,
.gutenberg-post-template h6,
.gutenberg-post-template p,
.gutenberg-post-template ul,
.gutenberg-post-template ol,
.gutenberg-post-template blockquote {
    margin-bottom: 1.5rem;
}

/* Lists */
.gutenberg-post-template ul,
.gutenberg-post-template ol {
    padding-left: 1.5rem;
}

/* Block-level spacing */
.gutenberg-post-template .wp-block {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Alignments */
.gutenberg-post-template .alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}
.gutenberg-post-template .alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.gutenberg-post-template .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}
.gutenberg-post-template .alignwide {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.gutenberg-post-template .alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Blockquotes */
.gutenberg-post-template blockquote {
    padding-left: 1rem;
    border-left: 4px solid #ccc;
}

/* Tables */
.gutenberg-post-template table {
    width: 100%;
    border-collapse: collapse;
}
.gutenberg-post-template th,
.gutenberg-post-template td {
    border: 1px solid #ddd;
    padding: 0.75rem;
}

/* Code blocks */
.gutenberg-post-template pre {
    padding: 1rem;
    background: #f5f5f5;
    overflow: auto;
}
.gutenberg-post-template code {
    padding: 0.2rem 0.4rem;
    background: #f5f5f5;
    border-radius: 3px;
}

/* Separator */
.gutenberg-post-template hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #ccc;
}

/* Buttons */
.gutenberg-post-template .wp-block-button__link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: #000;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}
