/* ==========================================================================
   Gutenberg Block Styles
   ========================================================================== */

/* Container Block */
.pagebuilder-container {
    position: relative;
}

.pagebuilder-container .container {
    position: relative;
    z-index: 1;
}

/* Alignments */
.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Block editor adjustments */
.wp-block {
    max-width: 100%;
}

/* InnerBlocks spacing */
.pagebuilder-module > .container > *:last-child {
    margin-bottom: 0;
}

/* Example: Hero Block Styles (uncomment when you create the hero block)
.pagebuilder-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.pagebuilder-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.pagebuilder-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.pagebuilder-hero .hero-content {
    position: relative;
    z-index: 2;
}

.pagebuilder-hero .hero-headline {
    font-weight: 800;
    line-height: 1.2;
}

.pagebuilder-hero .hero-subheadline {
    font-weight: 400;
    opacity: 0.9;
}
*/

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .pagebuilder-module {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}
