/*
 * CSS du contenu généré par l'éditeur TipTap.
 * Inclus automatiquement par le moteur du CMS via $cms->contentCss().
 * NE PAS SUPPRIMER — nécessaire au bon affichage des articles.
 */

/* Alignement des images */
.align-left {
    float: left;
    margin: 0 1rem 0.5rem 0;
}
.align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.align-right {
    float: right;
    margin: 0 0 0.5rem 1rem;
}

/* Images dans le contenu */
.article-content img,
.article-single__content img,
.mag-article__content img,
.category-content img {
    max-width: 100%;
    height: auto;
}

/* Video embeds responsive */
.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* ratio 16:9 */
    height: 0;
    overflow: hidden;
    margin: 1.5rem 0;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* Fallback : iframes sans wrapper .video-embed */
.article-content iframe,
.article-single__content iframe,
.mag-article__content iframe,
.category-content iframe {
    max-width: 100%;
    border-radius: 8px;
}

/* Clearfix pour les floats */
.article-content::after,
.article-single__content::after,
.mag-article__content::after,
.category-content::after {
    content: '';
    display: table;
    clear: both;
}
