/* Advertorial Manager Plugin Styles */
.advert-mgr-container {
    display: flex;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.advert-mgr-image {
    width: 30%;
    box-sizing: border-box;
    padding-right: 15px;
}

.advert-mgr-text {
    width: 70%;
    box-sizing: border-box;
    padding-left: 15px;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .advert-mgr-container {
        flex-direction: column;
        margin: 15px auto;
        max-width: calc(100% - 20px);
    }

    .advert-mgr-image {
        width: 100%;
        padding-right: 0;
        padding-bottom: 15px;
    }
    
    .advert-mgr-text {
        width: 100%;
        padding-left: 0;
    }
}

/* Responsive design for tablet devices */
@media (max-width: 1240px) {
    .advert-mgr-container {
        margin: 20px 20px;
        max-width: calc(100% - 40px);
    }
}

/* Ensure images within ad code are responsive */
.advert-mgr-image img {
    max-width: 100%;
    height: auto;
}

/* Style the text content */
.advert-mgr-text p {
    margin-bottom: 1em;
}

.advert-mgr-text h1,
.advert-mgr-text h2,
.advert-mgr-text h3,
.advert-mgr-text h4,
.advert-mgr-text h5,
.advert-mgr-text h6 {
    margin-top: 0;
    margin-bottom: 0.5em;
} 