/* ================================================
   WTS TRAVEL — Page-specific styles
   ================================================ */

/* ── Opening statement — widen to force exactly 2 lines ── */
.project-intro-wrap { max-width: 1080px; }

/* ── ① Mascot sticker grid
       columns masonry — GIFs play naturally, no cropping ── */
.sticker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 0.5rem;
}

.sticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.sticker-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.sticker-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── ② Video grid — 2 columns, natural heights ── */
.wts-video-grid {
  columns: 2;
  column-gap: 0.75rem;
  margin: 2rem 0 0.5rem;
}

.wts-video-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  position: relative;
}

.video-sound-btn {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(0, 0, 0, 0.52);
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
  z-index: 2;
}

.video-sound-btn:hover { background: rgba(0, 0, 0, 0.78); }

.wts-video-item video,
.wts-video-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  cursor: pointer;
}

/* ── ② Social media grid — 2 explicit equal columns ── */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-items: start;
  margin: 2rem 0 0.5rem;
}

.social-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-item {
  position: relative;
}

.social-item img,
.social-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  cursor: pointer;
}

.social-item iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 0.75rem;
  border: none;
}

/* ── ③ Launch grid — 1/3 video + 2/3 post ── */
.launch-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.75rem;
  align-items: start;
  margin: 2rem 0 0.5rem;
}

.launch-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.launch-item img,
.launch-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.launch-item iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 0.75rem;
  border: none;
}

.launch-item--post {
  overflow: hidden;
  border-radius: 0.75rem;
}

.launch-item--post iframe {
  width: 100%;
  aspect-ratio: 9 / 8;
  display: block;
  border: none;
  border-radius: 0.75rem;
}

/* ── ④ Booth grid ── */
.booth-grid {
  columns: 2;
  column-gap: 0.75rem;
  margin: 2rem 0 0.5rem;
}

.booth-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.booth-item img,
.booth-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

/* ── ⑤ Itinerary before/after comparison ── */
.itinerary-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 0.5rem;
  align-items: start;
}

.itinerary-panel {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.compare-iframe {
  width: 100%;
  height: 680px;
  border: none;
  border-radius: 0.75rem;
  background: var(--cream);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .sticker-grid  { grid-template-columns: repeat(2, 1fr); }
  .wts-video-grid { columns: 1; }
  .launch-grid   { columns: 2; }
  .booth-grid    { grid-template-columns: 1fr; }
  .itinerary-compare { grid-template-columns: 1fr; }
  .compare-iframe { height: 480px; }
}

@media (max-width: 480px) {
  .sticker-grid { columns: 2; }
  .launch-grid  { columns: 1; }
}
