      :root {
          --sbroole-light-yellow-color: #FFF6CC;
          --sbroole-dark-yellow-color: #FFD100;
          --sbroole-light-grey-color: #DFE8E8;
          --sbroole-grey-color: #444;
          --sbroole-black-color: #000;
          --sbroole-white-color: #FFF;
      }

      #wrapper {
        background-color: var(--sbroole-white-color);
        position: relative;
        padding-top: 3.13rem;
        padding-bottom: 5.74rem;
      }

      #wrapper:before  {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 15%;
        /* background: linear-gradient(to bottom, var(--sbroole-light-yellow-color), transparent); */
        background: linear-gradient(to bottom, var(--sbroole-light-grey-color), transparent);
      }      
      
      #wrapper:after  {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 15%;
        /* background: linear-gradient(to top, var(--sbroole-light-yellow-color), transparent); */
        background: linear-gradient(to top, var(--sbroole-light-grey-color), transparent);
      }

      #sbroole-svg-left {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 300px!important; /* 300px pour résolution 1440x1024px */
        width: fit-content!important;
        color: #000!important;
        z-index: 0;
      }

      #sbroole-svg-right {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px!important; /* 300px pour résolution 1440x1024px */
        color: #000!important;
        z-index: 3;
      }

      .sbroole-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 64%;
        margin: 0 auto;
        z-index: 1;
      }

      .sbroole-header__badge {
        display: flex;
        align-items: center;
        gap: .31rem;
        background-color: var(--sbroole-dark-yellow-color);
        color: var(--sbroole-black-color);
        padding: .31rem .63rem;
        font-size: .75rem;
        border-radius: 1.56rem;
        font-weight: 600;
        box-shadow: 0 5px 15px -8px rgba(255, 209, 0, 0.5);
      }

      .sbroole-header__badge .material-icons {
        font-size: inherit;
      }

      .sbroole-header__logo {
        flex: 1 0 auto;
        height: 6.25rem;
      }

      .sbroole-header__text {
        flex: 1 0 auto;
        color: var(--sbroole-grey-color);
        font-size: 1.13rem;
        font-weight: 500;
        text-align: center;
      }

      .sbroole-carousel {
        margin-top: 1.56rem;
        position: relative;
        height: 15.63rem;
        z-index: 1;
        margin-left: auto;
        margin-right: auto;
      }

      .sbroole-carousel::before,
      .sbroole-carousel::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 25%;
        z-index: 2;
        pointer-events: none;
      }

      .sbroole-carousel::before {
        left: 0;
        background: linear-gradient(to right, var(--sbroole-white-color) 50%, transparent);
      }

      .sbroole-carousel::after {
        right: 0;
        background: linear-gradient(to left, var(--sbroole-white-color) 50%, transparent);
      }

      .sbroole-carousel__inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: .88rem;
      }

      .sbroole-carousel__item {
        display: inline-flex;
        border-radius: 1.56rem;
        justify-content: center;
        align-items: flex-end;
        flex-shrink: 0;
        overflow: hidden;
        position: relative;
        box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.5);
      }

      .sbroole-ticker {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 1);
        overflow: hidden;
        padding: .31rem 0;
        writing-mode: horizontal-tb;
      }

      .sbroole-ticker__track {
        display: flex;
        width: max-content;
        white-space: nowrap;
        animation: sbroole-ticker-scroll 12s linear infinite;
      }

      .sbroole-ticker__track span {
        display: inline-flex;
        align-items: center;
        gap: .4em;
        font-size: .75rem;
        font-weight: bold;
        color: var(--sbroole-white-color);
        letter-spacing: .03em;
        text-transform: uppercase;
      }

      .sbroole-ticker__logo {
        height: 1rem;
        width: auto;
        vertical-align: middle;
        display: inline-block;
        filter: brightness(0) invert(1);
      }

      @keyframes sbroole-ticker-scroll {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
      }

      .sbroole-carousel__item:nth-child(1n) {
        height: 11.44rem;
        width: 8.56rem;
      }

      .sbroole-carousel__item:nth-child(2n) {
        height: 13.31rem;
        width: 10rem;
      }

      .sbroole-carousel__item:nth-child(3n) {
        height: 15.63rem;
        width: 11rem;
      }

      .sbroole-carousel__item:nth-child(1n) .sbroole-ticker,
      .sbroole-carousel__item:nth-child(3n) .sbroole-ticker {
        transform: rotate(-5deg);
        left: -15%;
        right: -15%;
        width: 130%;
      }

      .sbroole-carousel__item:nth-child(2n) .sbroole-ticker {
        transform: rotate(5deg);
        left: -15%;
        right: -15%;
        width: 130%;
      }

      .sbroole-carousel__item:nth-child(2n) .sbroole-ticker__track {
        animation-direction: reverse;
      }

      .sbroole-carousel__item:nth-child(1) .sbroole-ticker { bottom: 14%; }
      .sbroole-carousel__item:nth-child(2) .sbroole-ticker { bottom: 42%; }
      .sbroole-carousel__item:nth-child(3) .sbroole-ticker { bottom: 12%; }
      .sbroole-carousel__item:nth-child(4) .sbroole-ticker { bottom: 59%; }
      .sbroole-carousel__item:nth-child(5) .sbroole-ticker { bottom: 22%; }

      .sbroole-information {
        display: flex;
        flex-direction: column;
        background-color: var(--sbroole-light-yellow-color);
        padding: 1.25rem;
        border-radius: 1.25rem;
        margin: 1.56rem auto 0;
        width: 70%;
        z-index: 1;
        position: relative;
        box-shadow: 0 5px 15px -8px rgba(255, 240, 173, 0.5);
      }

      .sbroole-information h3 {
        display: flex;
        flex: 1 0 auto;
        gap: .5rem;
        align-items: center;
        font-size: 1rem;
        font-weight: bold;
        color: var(--sbroole-black-color);
      }

      .sbroole-information h3 i {
        font-size: inherit;
        color: var(--sbroole-dark-yellow-color);
      }

      .sbroole-information p {
        font-size: .88rem;
        color: var(--sbroole-grey-color);
        margin-left: 1.25rem;
      }

      .sbroole-information p:last-of-type {
        margin-bottom: 0;
      }

      .sbroole-cta {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: fit-content;
        gap: .62rem;
        background-color: var(--sbroole-black-color);
        color: var(--sbroole-white-color);
        padding: .94rem 1.25rem;
        border-radius: 1.56rem;
        font-size: 1rem;
        font-weight: bold;
        margin: 3.13rem auto 0;
        transition: background-color .3s ease, color .3s ease;
        z-index: 1;
        position: relative;
        box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.25);
      }

      .sbroole-cta:hover {
        background-color: var(--sbroole-dark-yellow-color);
        color: var(--sbroole-black-color);
      }

      .sbroole-help {
        display: block;
          font-size: .88rem;
          color: var(--sbroole-black-color);
          margin: .94rem auto 0;
          width: fit-content;
          z-index: 1;
          position: relative;
      }

      .sbroole-help a {
        color: var(--sbroole-black-color);
      }

      .sbroole-help a:hover {
        text-decoration: underline;
      }

/* --- Mobile (< 600px) --- */
@media only screen and (max-width: 599px) {

  .container {
    width: 540px!important;
  }

  #sbroole-svg-left,
  #sbroole-svg-right { display: none!important; }

  .sbroole-header {
    width: 90%;
    margin-top: 2rem;
  }

  .sbroole-header__logo { height: 4rem; }

  .sbroole-header__text { font-size: .9rem; }

  .sbroole-carousel { height: auto; }

  .sbroole-carousel__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: safe center; /* Crucial : on part de la gauche */
    gap: 1rem;
    
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sbroole-carousel__inner::-webkit-scrollbar { display: none; }

  .sbroole-carousel__item:nth-child(1n) { height: 10rem; width: 7.2rem; }
  .sbroole-carousel__item:nth-child(2n) { height: 10rem; width: 7.2rem; }
  .sbroole-carousel__item:nth-child(3n) { height: 10rem; width: 7.2rem; }

  .sbroole-ticker__track span { font-size: .55rem; }

  .sbroole-information { width: 90%; }

  .sbroole-cta {
    width: 90%;
    box-sizing: border-box;
    justify-content: center;
    margin-top: 2rem;
  }

  .sbroole-carousel::before {
    left: -15px;
    background: linear-gradient(to right, var(--sbroole-white-color) 10%, transparent);
  }

  .sbroole-carousel::after {
    right: -15px;
    background: linear-gradient(to left, var(--sbroole-white-color) 10%, transparent);
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* --- Tablettes et liseuses (600px - 767px) --- */
@media only screen and (min-width: 600px) and (max-width: 767px) {

  .container {
    width: 720px!important;
  }

  #sbroole-svg-left  { height: 150px!important; }
  #sbroole-svg-right { width:  150px!important; }

  .sbroole-header    { width: 85%; }
  .sbroole-information { width: 85%; }

  .sbroole-carousel__item:nth-child(1n) { height: 8.5rem;  width: 6.3rem; }
  .sbroole-carousel__item:nth-child(2n) { height: 9.9rem;  width: 7.4rem; }
  .sbroole-carousel__item:nth-child(3n) { height: 11.6rem; width: 8.2rem; }

  .sbroole-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .sbroole-carousel::before {
    left: -15px;
    background: linear-gradient(to right, var(--sbroole-white-color) 25%, transparent);
  }

  .sbroole-carousel::after {
    right: -15px;
    background: linear-gradient(to left, var(--sbroole-white-color) 25%, transparent);
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* --- Tablettes en mode paysage (768px - 991px) --- */
@media only screen and (min-width: 768px) and (max-width: 991px) {

  .container {
    width: 960px!important;
  }

  #sbroole-svg-left  { height: 200px!important; }
  #sbroole-svg-right { width:  200px!important; }

  .sbroole-header    { width: 75%; }
  .sbroole-information { width: 75%; }

  .sbroole-carousel__item:nth-child(1n) { height: 9.5rem;  width: 7.1rem; }
  .sbroole-carousel__item:nth-child(2n) { height: 11rem;   width: 8.3rem; }
  .sbroole-carousel__item:nth-child(3n) { height: 13rem;   width: 9.1rem; }

  .sbroole-carousel::before {
    left: -15px;
    background: linear-gradient(to right, var(--sbroole-white-color) 10%, transparent);
  }

  .sbroole-carousel::after {
    right: -15px;
    background: linear-gradient(to left, var(--sbroole-white-color) 10%, transparent);
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* --- Ordinateurs portables (992px - 1199px) --- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .container {
    width: 1140px!important;
  }

  #sbroole-svg-left  { height: 250px!important; }
  #sbroole-svg-right { width:  250px!important; }

  .sbroole-header    { width: 64%; }
  .sbroole-information { width: 64%; }

  .sbroole-carousel__item:nth-child(1n) { height: 10.5rem; width: 7.9rem; }
  .sbroole-carousel__item:nth-child(2n) { height: 12.2rem; width: 9.2rem; }
  .sbroole-carousel__item:nth-child(3n) { height: 14.3rem; width: 10.1rem; }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* --- Grands écrans (1200px - 1399px) --- */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container {
    width: 1320px!important;
  }
}

/* --- Très grands écrans (1400px et +) --- */
@media only screen and (min-width: 1400px) {

  .container {
    width: 1320px!important;
  }

  .sbroole-header {
    padding-left:3.5rem;
    padding-right: 3.5rem;
  }

  .sbroole-carousel::before,
  .sbroole-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35%;
    z-index: 2;
    pointer-events: none;
  }

  .sbroole-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--sbroole-white-color) 50%, transparent);
  }

  .sbroole-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--sbroole-white-color) 50%, transparent);
  }
}