.embed-anything-elementor-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.embed-anything-elementor-iframe {
    width: 100%;
    border: none;
    transition: height 0.3s ease;
}

/* Fixed Height Mode (controlled via Elementor responsive control) */
.eae-fixed-height .embed-anything-elementor-iframe {
    height: 500px; /* Default fallback desktop */
}

/* Auto Height Mode with defaults */
.eae-auto-height .embed-anything-elementor-iframe {
    height: auto !important; /* JS can still adjust dynamically if enabled */
    min-height: 500px; /* Desktop default */
}

/* Tablet default for auto height */
@media (max-width: 1024px) {
    .eae-auto-height .embed-anything-elementor-iframe {
        min-height: 400px;
    }
}

/* Mobile default for auto height */
@media (max-width: 767px) {
    .eae-auto-height .embed-anything-elementor-iframe {
        min-height: 300px;
    }
}
