/* Safe Landing Templates Styles */

/* Base Container */
.safe-landing-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Full Width Container Logic */
/* We want it to be as wide as possible but respecting some sane defaults if the content is text */
.safe-landing-container .entry-content,
.safe-landing-container .canvas-content {
    max-width: 100%; /* Your builder or blocks should control width */
}

/* Clearfix for floats just in case */
.safe-landing-container::after {
    content: "";
    display: table;
    clear: both;
}

/* Canvas Specifics */
.safe-landing-canvas {
    min-height: 80vh; /* Ensure it takes up decent vertical space */
    display: flex;
    flex-direction: column;
}

.canvas-content {
    flex-grow: 1;
}
