/**
 * Container Block Frontend Styles
 */

.zonkey-container-wrapper {
    width: 100%;
}

.zonkey-container-inner {
    width: 100%;
}

/* Ensure nested blocks inherit text color */
.zonkey-container-wrapper h1,
.zonkey-container-wrapper h2,
.zonkey-container-wrapper h3,
.zonkey-container-wrapper h4,
.zonkey-container-wrapper h5,
.zonkey-container-wrapper h6,
.zonkey-container-wrapper p,
.zonkey-container-wrapper li {
    color: inherit;
}

/* Reset some block margins for better control */
.zonkey-container-inner > *:first-child {
    margin-top: 0;
}

.zonkey-container-inner > *:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zonkey-container-inner {
        /* Mobile devices can override padding if needed */
    }
}
