.mb-layout {
    max-width: 800px;
    margin: 0 auto 40px;
}

.mb-widget {
    margin-bottom: 24px;
}

/* Text widget */
.mb-widget--text p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

/* Heading widget */
.mb-widget--heading h1,
.mb-widget--heading h2,
.mb-widget--heading h3 {
    color: #1e3a5f;
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Button widget */
.mb-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #2563EB;
    color: white !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.mb-btn:hover {
    background: #1d4ed8;
}
/* Image */
.mb-widget--image img {
    max-width: 100%;
    border-radius: 6px;
}

/* List */
.mb-widget--list ul,
.mb-widget--list ol {
    padding-left: 24px;
    color: #374151;
    line-height: 1.8;
}

/* Divider */
.mb-widget--divider hr {
    border: none;
}

/* Video */
.mb-widget--video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.mb-widget--video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Container */
.mb-widget--container {
    width: 100%;
}