    .horizontal-slide-wrapper {
      position: relative;
    }
    .horizontal-slide-container {
      position: sticky;
      top: 0%;  /* 여기서 세로 위치 조절 */
      z-index: 10;
      display: flex;
      align-items: center;
      overflow-x: auto;
      height: 100vh;  /* 여기서 높이 조절 */
      margin: 0 auto;
      scrollbar-width: none;
    }
    .horizontal-slide-cards-box {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: max-content;
      height: 100%;
      padding: 0 5vh;
      display: flex;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(1.2em);
      -webkit-backdrop-filter: blur(1.2em);
      border-radius: 1em;
      gap: 12em;
    }
    .horizontal-slide-card {
      flex-shrink: 0;
      text-align: center;
      font-size: 2vh;
      background: orange;
      border: 0.1em solid #7777ff;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 12, 30);
      backdrop-filter: blur(0.8em);
      -webkit-backdrop-filter: blur(0.8em);
      border-radius: 0.8em;
      box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.08);
      height: 40vh;
      aspect-ratio: 2.5/3;
    }