/**
 * Lightweight Embeds - Responsive Styles
 * Version: 1.0.0
 */

/* Container for all embeds */
.lwe-embed {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 1.5em 0;
    overflow: hidden;
}

/* Responsive iframe wrapper */
.lwe-embed iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}

/* PDF Embeds */
.lwe-pdf-embed {
    min-height: 400px;
}

.lwe-pdf-embed iframe {
    width: 100%;
    height: 600px;
    min-height: 400px;
}

/* YouTube Embeds */
.lwe-youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.lwe-youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Instagram Embeds */
.lwe-instagram-embed {
    max-width: 658px;
    margin-left: auto;
    margin-right: auto;
}

.lwe-instagram-embed blockquote {
    margin: 0;
}

/* Google Docs/Sheets/Forms */
.lwe-google-doc-embed iframe,
.lwe-google-sheet-embed iframe,
.lwe-google-form-embed iframe {
    width: 100%;
    min-height: 400px;
}

.lwe-google-doc-embed {
    min-height: 400px;
}

.lwe-google-sheet-embed {
    min-height: 400px;
}

.lwe-google-form-embed {
    min-height: 400px;
}

/* Google Maps */
.lwe-google-map-embed {
    min-height: 400px;
}

.lwe-google-map-embed iframe {
    width: 100%;
    height: 400px;
    min-height: 400px;
}

/* Google Photos */
.lwe-google-photo-embed {
    text-align: center;
    padding: 2em;
    background: #f5f5f5;
    border-radius: 4px;
}

/* Fallback links */
.lwe-embed-fallback {
    margin-top: 1em;
    text-align: center;
    font-size: 0.9em;
}

.lwe-embed-fallback a {
    color: #0073aa;
    text-decoration: none;
    padding: 0.5em 1em;
    border: 1px solid #0073aa;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.2s ease;
}

.lwe-embed-fallback a:hover {
    background: #0073aa;
    color: #fff;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .lwe-embed {
        margin: 1em 0;
    }
    
    .lwe-pdf-embed iframe,
    .lwe-google-doc-embed iframe,
    .lwe-google-sheet-embed iframe,
    .lwe-google-form-embed iframe {
        height: 500px;
        min-height: 300px;
    }
    
    .lwe-youtube-embed {
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    }
    
    .lwe-instagram-embed {
        max-width: 100%;
    }
    
    .lwe-google-map-embed iframe {
        height: 300px;
        min-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .lwe-pdf-embed iframe,
    .lwe-google-doc-embed iframe,
    .lwe-google-sheet-embed iframe,
    .lwe-google-form-embed iframe {
        height: 400px;
        min-height: 250px;
    }
    
    .lwe-google-map-embed iframe {
        height: 250px;
        min-height: 250px;
    }
}

/* Print styles */
@media print {
    .lwe-embed iframe {
        display: none;
    }
    
    .lwe-embed-fallback {
        display: block;
    }
}










