/* ============================================================
   Movie section: demo videos by role
   Shared header/inner/title/lead come from section.css.
   ============================================================ */
.movie__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.movie__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid #c9d3e0;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(13, 30, 60, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (hover: hover) {
  .movie__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(13, 30, 60, 0.14);
    border-color: var(--brand-blue);
  }

  .movie__card:has(.movie__thumb--sales):hover {
    border-color: var(--brand-orange);
  }

  .movie__card:hover .movie__play {
    transform: scale(1.08);
  }
}

.movie__play {
  transition: transform 0.28s ease;
}

.movie__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: var(--brand-blue);
  /* White bubbles over brand-color background, KV-like. */
  background-image:
    radial-gradient(circle at 8% 18%,  rgba(255, 255, 255, 0.55) 46px, transparent 46.5px),
    radial-gradient(circle at 92% 78%, rgba(255, 255, 255, 0.55) 32px, transparent 32.5px),
    radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.60) 22px, transparent 22.5px),
    radial-gradient(circle at 22% 82%, rgba(255, 255, 255, 0.65) 18px, transparent 18.5px),
    radial-gradient(circle at 94% 28%, rgba(255, 255, 255, 0.40) 24px, transparent 24.5px),
    radial-gradient(circle at 12% 62%, rgba(255, 255, 255, 0.45) 34px, transparent 34.5px),
    radial-gradient(circle at 56% 88%, rgba(255, 255, 255, 0.50) 16px, transparent 16.5px),
    radial-gradient(circle at 42% 12%, rgba(255, 255, 255, 0.55) 14px, transparent 14.5px),
    radial-gradient(circle at 80% 52%, rgba(255, 255, 255, 0.55) 12px, transparent 12.5px),
    radial-gradient(circle at 36% 56%, rgba(255, 255, 255, 0.30)  9px, transparent 9.5px),
    radial-gradient(circle at 64% 36%, rgba(255, 255, 255, 0.35) 10px, transparent 10.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
}

.movie__thumb--sales {
  background-color: var(--brand-orange);
}

/* Play button — sits below the title; white disc, brand-color triangle */
.movie__play {
  margin-top: 4px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(13, 30, 60, 0.22);
}

.movie__play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent var(--brand-blue);
  margin-left: 3px;
}

.movie__thumb--sales .movie__play::before {
  border-color: transparent transparent transparent var(--brand-orange);
}

.movie__thumb-role {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.movie__thumb-brand {
  font-family: "Nunito", "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(13, 30, 60, 0.18);
}

.movie__meta {
  padding: 16px clamp(20px, 2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie__cta {
  font-family: "Nunito", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
}

/* Mobile */
@media (max-width: 768px) {
  .movie__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .movie__card {
    border-radius: 20px;
  }

  .movie__meta {
    padding: 14px 20px 18px;
  }

  .movie__play {
    width: 44px;
    height: 44px;
  }

  .movie__play::before {
    border-width: 8px 0 8px 12px;
    margin-left: 2px;
  }
}
