.smt-1849-box {
    display: flex;
    overflow: hidden;
    background-color: #f9f9f9; /* Default background */
    border: 1px solid #ddd; /* Default border */
    /* border-radius set by controls */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.smt-1849-image-container,
.smt-1849-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.smt-1849-image-container {
    max-width: 50%; /* Force 50/50 split */
}

.smt-1849-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.smt-1849-content-container {
    padding: 30px;
}

.smt-1849-heading {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.smt-1849-subheading {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #666;
}

.smt-1849-caption {
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .smt-1849-box {
        flex-direction: column !important; /* Stack on mobile */
    }
    .smt-1849-image-container {
        max-width: 100%;
    }
}