    .artc-cards-container {
      display: flex;
      gap: 20px;
      flex-wrap: nowrap;
      padding: 0px 30px;
    }

    .artc-card {
      background: #F5F6E9;
      padding: 40px 20px;
      text-align: left;
      width: 286px;
      height: 400px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: background 0.3s;
    }

    .artc-card:hover {
      background: #EEFF75;
      /* Highlighted yellow */
    }

    .artc-slide-number {
      color: #000;
      font-size: 20px;
      font-family: GT America;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 20px;

    }

    .artc-slide-line {
      width: 100%;
      height: 1px;
      background: #ccc;
      margin: 8px 0 0 0;
    }

    .artc-slide-title {
      margin-top: auto;
      color: #000;
      font-size: 28px;
      font-family: Lyon Arabic Display;
      font-weight: 500;
      line-height: 30px;
    }

    /* === Mobile view === */
    @media (max-width: 767px) {
      .artc-cards-container {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .artc-card {
        scroll-snap-align: start;
      }
    }
    /***************Marquee Black*********************/
     .qcp-marquee-black{
         background-color: #000;
         color: #fff;
     }
    .qcp-marquee-black svg {
      width: 50px;
      height: 50px;
      stroke: #fff;
       margin-top:18px;
    }
    /* Responsive */
@media (max-width: 768px) {
 
  .qcp-marquee-black svg {
    width: 30px;
    height: 30px;
  }
}