/**
 * Embed Block - Académie des Étoiles
 */

.ade-embed { margin: var(--ade-space-2xl) 0; }

.ade-embed__container {
    margin: 0 auto;
}

.ade-embed__heading {
    font-size: var(--ade-font-size-large);
    font-weight: 600;
    color: var(--ade-primary-dark);
    margin: 0 0 var(--ade-space-md) 0;
    text-align: center;
}

.ade-embed__description {
    font-size: var(--ade-font-size-base);
    color: var(--ade-gray-dark);
    margin: 0 0 var(--ade-space-lg) 0;
    text-align: center;
    line-height: 1.6;
}

.ade-embed__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: var(--ade-gray-lighter);
}

.ade-embed__wrapper--bordered {
    border: 2px solid var(--ade-gray);
    box-shadow: var(--ade-shadow-md);
}

/* Aspect ratio variants */
.ade-embed__wrapper--16-9 {
    padding-bottom: 56.25%; /* 16:9 */
}

.ade-embed__wrapper--4-3 {
    padding-bottom: 75%; /* 4:3 */
}

.ade-embed__wrapper--1-1 {
    padding-bottom: 100%; /* 1:1 */
}

.ade-embed__wrapper--21-9 {
    padding-bottom: 42.86%; /* 21:9 */
}

.ade-embed__wrapper--auto {
    padding-bottom: 0;
    min-height: 400px;
}

.ade-embed__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ade-embed__wrapper--auto .ade-embed__content {
    position: relative;
    height: auto;
    min-height: 400px;
}

.ade-embed__content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.ade-embed__wrapper--auto .ade-embed__content iframe {
    min-height: 400px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ade-embed__heading {
        font-size: var(--ade-font-size-base);
    }

    .ade-embed__description {
        font-size: var(--ade-font-size-small);
    }

    .ade-embed__wrapper--auto,
    .ade-embed__wrapper--auto .ade-embed__content,
    .ade-embed__wrapper--auto .ade-embed__content iframe {
        min-height: 300px;
    }
}
