/* ===== INTERACTION LAYOUT ===== */

/*.interaction-section {
  padding: 4rem 0;
}*/

.interaction-section .container {
/*  max-width: 1120px;*/
/*  margin: 0 auto;*/
}

/* Video → Text vertical layout inside each item */
.interaction-grid {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2.5rem;
}

.interaction-item {
  flex: 1 1 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;     /* stack video then text */
  align-items: flex-start;     /* left-align everything */
}


/* ------ PHONE (VIDEO FRAME) ------ */
.phone-wrap {
  width: 100%;
  max-width: 260px;            /* real phone width */
  aspect-ratio: 9 / 19.5;
  max-height: 350px;
  border-radius: 32px;
  background: #000;
  overflow: hidden;            /* ensures round mask */
  box-shadow: 0 20px 40px rgba(0,0,0,0.55);
  margin-bottom: 1.2rem;       /* 👈 spacing between video and text */
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ------ TEXT BELOW VIDEO ------ */

.interaction-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #d7d7d7;
  margin-bottom: 0.4rem;
}

.interaction-text h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.interaction-text p {
  margin-bottom: 1rem;
  line-height: 1.45;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .interaction-grid {
    flex-direction: column;     /* 2 rows on smaller screens */
    gap: 3rem;
  }

  .phone-wrap {
    max-width: 260px;
    max-height: 280px;
  }
}

@media (max-width: 576px) {
  .phone-wrap {
    max-width: 220px;
    max-height: 260px;
  }
}
