.banner-mobile {
  display: none;
}

@media screen and (max-width: 1023px) {
  .banner-mobile {
    display: block;
    width: 100%;
    padding: 0 0.75rem 0.75rem;
    overflow: hidden;
    background: #fff;
  }

  .banner-mobile .banner-slider {
    overflow: hidden;
    position: relative;
    border-radius: 14px;
    background: #fff;
  }

  .banner-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior: none;
    border-radius: 14px;
  }

  .banner-track::-webkit-scrollbar {
    display: none;
  }

  .banner-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .banner-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.05) 100%);
  }

  .banner-slide-copy {
    position: relative;
    z-index: 1;
    padding: 1rem 1.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 160px;
  }

  .banner-slide-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffb800;
    margin-bottom: 0.25rem;
  }

  .banner-slide h2 {
    font-size: 1.05rem;
    line-height: 1.15;
    margin: 0.15rem 0 0.3rem;
    color: #fff;
  }

  .banner-slide p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0 0 0.65rem;
    color: rgba(255,255,255,0.92);
  }

  .banner-slide-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: #ffb800;
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .banner-slide-btn:hover {
    opacity: 0.85;
  }

  .banner-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 3;
  }

  .banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .banner-dot.active {
    background: #ffb800;
    width: 14px;
    border-radius: 3px;
  }
}

/* ===== Banner PC ===== */

.banner-pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .banner-pc {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem 0;
    box-sizing: border-box;
  }

  .banner-pc-grid {
    display: flex;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .banner-pc-slider {
    flex: 2;
    position: relative;
    overflow: hidden;
  }

  .banner-pc-track {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
  }

  .banner-pc-track::-webkit-scrollbar {
    display: none;
  }

  .banner-pc-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 350px;
    scroll-snap-align: start;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .banner-pc-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .banner-pc-side-item {
    flex: 1;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .banner-pc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.12) 100%);
  }

  .banner-pc-copy {
    position: relative;
    z-index: 1;
    padding: 1.2rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
  }

  .banner-pc-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffb800;
    margin-bottom: 0.2rem;
  }

  .banner-pc-slide h2,
  .banner-pc-side-item h2 {
    font-size: 1.2rem;
    line-height: 1.15;
    margin: 0.1rem 0 0.3rem;
    color: #fff;
  }

  .banner-pc-slide p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0 0 0.6rem;
    color: rgba(255,255,255,0.92);
  }

  .banner-pc-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: #ffb800;
    color: #111;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .banner-pc-btn:hover {
    opacity: 0.85;
  }

  .banner-pc-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
  }

  .banner-pc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .banner-pc-dot.active {
    background: #ffb800;
    width: 14px;
    border-radius: 3px;
  }
}

/* ===== Banner Carousel ===== */
