/* OL Monetization — carrousel de slide (le thème peut surcharger). */

.ol-slide { position: relative; max-width: 1400px; margin: 0 auto 32px; overflow: hidden; }
.ol-slide-track { display: flex; transition: transform .4s ease; }
.ol-slide-item { flex: 0 0 100%; min-width: 100%; }
.ol-slide-item figure {
    position: relative; margin: 0; width: 100%;
    aspect-ratio: var(--ol-slide-ratio, 16 / 7);
    overflow: hidden; background: #f2f2f2;
}
.ol-slide-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ol-slide-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 16px 20px; color: #fff; font-size: 1.1rem; font-weight: 600;
    background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
}
.ol-slide-bullets { display: flex; gap: 8px; justify-content: center; padding: 12px 0; }
.ol-slide-bullets button {
    width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0;
    background: #ccc; cursor: pointer;
}
.ol-slide-bullets button[aria-selected="true"] { background: #222; }
