/**
 * Front Page Block Editor Content Styles
 *
 * @package PNK_Group
 */

.front-page-editor-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem var(--spacing-sm, 1rem);
}

/* Ensure block editor content integrates seamlessly */
.front-page-editor-content > * {
    max-width: 100%;
}

/* Support for wide and full alignment */
.front-page-editor-content .alignwide {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.front-page-editor-content .alignfull {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

/* Responsive padding adjustments */
@media (max-width: 768px) {
    .front-page-editor-content {
        padding: 3rem var(--spacing-sm, 1rem);
    }
}

/* Ensure blocks have proper spacing */
.front-page-editor-content .wp-block {
    margin-bottom: 2rem;
}

.front-page-editor-content .wp-block:last-child {
    margin-bottom: 0;
}
