/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 76:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .temoignages-section {
    text-align: center;
    padding: 40px 20px;
  }

  .temoignages-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .videos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .video-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.2s ease;
  }

  .video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }

  .video-wrapper:hover {
    transform: scale(1.05);
  }

  .video-wrapper iframe {
    display: none;
    width: 100%;
    height: 0;
    border: none;
    border-radius: 12px;
    margin-top: 10px;
  }

  .video-wrapper.active {
    border-radius: 12px;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .video-wrapper.active img {
    display: none;
  }

  .video-wrapper.active iframe {
    display: block;
    height: 300px;
    width: 100%;
  }
</style>