.slider-cartes {
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, var(--bleu-ardoise-fonce) 66.67%, transparent 66.67%);
    padding-top: clamp(1rem, 0.2958rem + 3.0047vw, 3rem);  
}

  .piste {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem;
  }

  .carte {
    display: flex;
    flex-direction: column;
    height: clamp(10rem, 7.5352rem + 10.5164vw, 17rem);
    aspect-ratio: 3/4;
    flex-shrink: 0;
    border: 6px solid #fff;
    border-radius: 3px;
    text-decoration: none;
    background: var(--blanc-doux);
    color: var(--bleu-ardoise-fonce);
    padding: 0.8rem;
    box-sizing: content-box;
    box-shadow: 0px 10px 12px -3px rgba(0, 0, 0, 0.1);
  }


  .carte h2 {
    font-size: clamp(0.72rem, 0.58rem + 0.55vw, 1rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .carte p {
    font-size: clamp(0.72rem, 0.6rem + 0.45vw, 0.98rem);
    font-weight: 400;
    line-height: 1.5;
  }

  .clic-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding: 0.55rem 0.75rem;
    font-size: clamp(0.72rem, 0.61rem + 0.4vw, 0.95rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bleu-ardoise-fonce);
    border: 1px solid var(--bleu-ardoise-fonce);
    border-radius: 0.2rem;
  }

  .clic-icon:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.2s ease;
  }
