/* The interrogation preview follows the approved Instagram creative. */
.room-section--conversation {
  --conversation-bg: #080b0c;
  display: flex;
  flex-direction: column;
  padding: 72px 0 84px;
  background: var(--conversation-bg);
}

.room-section--conversation .room-heading {
  order: 0;
  width: min(680px, calc(100% - 64px));
  margin: 0 auto 30px;
  padding: 0;
}
.room-heading .overline { margin: 0 0 13px; }
.room-heading h2 { margin: 0; line-height: .98; }
.room-headline-intro, .room-headline-main { display: block; }
.room-headline-intro {
  margin-bottom: 5px;
  color: var(--paper-bright);
  font-size: clamp(30px, 4.5vw, 44px);
}
.room-headline-main {
  color: var(--brass-bright);
  font-size: clamp(52px, 7.5vw, 70px);
}

.room-section--conversation .room-visual {
  order: 1;
  width: min(680px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: var(--conversation-bg);
  box-shadow: none;
}
.room-section--conversation .room-visual::after { content: none; }
.room-photo {
  overflow: hidden;
  border: 1px solid rgba(217, 208, 188, .16);
  -webkit-mask-image: linear-gradient(to bottom, #000 73%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 73%, transparent 100%);
}
.room-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1752 / 897;
  object-fit: cover;
  object-position: 68% center;
}

.room-conversation {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: min(480px, 100%);
  margin: -14px auto 0;
  padding: 0 12px 8px;
  list-style: none;
}
.room-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  max-width: 88%;
  min-width: 0;
}
.room-message--you { align-items: flex-end; align-self: flex-end; }
.room-speaker {
  margin: 0 10px 6px;
  color: #aeb0b5;
  font: 400 11px/1.3 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.room-message p {
  --bubble: #2c2c2e;
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 13px 19px;
  border-radius: 24px;
  background: var(--bubble);
  color: #f2f2f7;
  font: 400 clamp(16px, 1.7vw, 21px)/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-wrap: break-word;
}
.room-message--you p { --bubble: #007aff; color: #fff; }
.room-message p::before, .room-message p::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  height: 18px;
}
.room-message p::before { width: 16px; background: var(--bubble); }
.room-message p::after { width: 10px; background: var(--conversation-bg); }
.room-message--you p::before { right: -5px; border-bottom-left-radius: 14px; }
.room-message--you p::after { right: -10px; border-bottom-left-radius: 11px; }
.room-message--maria p::before { left: -5px; border-bottom-right-radius: 14px; }
.room-message--maria p::after { left: -10px; border-bottom-right-radius: 11px; }

.room-section--conversation .room-copy {
  order: 2;
  display: block;
  width: min(680px, calc(100% - 64px));
  margin: 38px auto 0;
  padding: 0;
}
.room-section--conversation .room-body { width: 100%; max-width: 720px; margin: 0; }
.room-section--conversation .approach-list { width: 100%; margin: 30px 0 0; }

/* Keep the photo and messages together at a readable scale on wide screens. */
@media (min-width: 1024px) {
  .room-section--conversation {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas: "heading visual" "copy visual";
    gap: 28px clamp(40px, 4.5vw, 64px);
    padding: clamp(72px, 7vw, 100px) max(32px, calc((100% - 1200px) / 2));
  }
  .room-section--conversation .room-heading,
  .room-section--conversation .room-visual,
  .room-section--conversation .room-copy {
    width: 100%;
    min-width: 0;
    margin: 0;
    align-self: start;
  }
  .room-section--conversation .room-heading { grid-area: heading; }
  .room-section--conversation .room-visual { grid-area: visual; }
  .room-section--conversation .room-copy { grid-area: copy; }
  .room-headline-intro { font-size: clamp(34px, 3.2vw, 44px); }
  .room-headline-main { font-size: clamp(52px, 4.75vw, 66px); }
  .room-section--conversation .room-body p { font-size: 17px; line-height: 1.65; }
  .room-section--conversation .approach-list { margin-top: 26px; }
  .room-section--conversation .approach-list li { padding: 16px 10px; font-size: 14px; }
  .room-conversation { gap: 14px; }
  .room-message p { padding: 12px 17px; font-size: 17px; }
}

@media (max-width: 720px) {
  .room-section--conversation { padding: 34px 0 44px; }
  .room-section--conversation .room-heading,
  .room-section--conversation .room-visual,
  .room-section--conversation .room-copy { width: calc(100% - 32px); }
  .room-section--conversation .room-heading { margin-bottom: 20px; }
  .room-heading .overline { margin-bottom: 12px; font-size: 10px; }
  .room-headline-intro { font-size: clamp(26px, 7.3vw, 35px); }
  .room-headline-main { font-size: clamp(39px, 11.2vw, 54px); }
  .room-photo img { aspect-ratio: 1.8; }
  .room-conversation { gap: 14px; margin-top: -9px; padding: 0 8px 4px; }
  .room-message { max-width: 94%; }
  .room-speaker { margin: 0 9px 5px; font-size: 9px; }
  .room-message p {
    padding: 10px 13px;
    border-radius: 20px;
    font-size: clamp(14px, 3.9vw, 17px);
    line-height: 1.4;
  }
  .room-section--conversation .room-copy { margin-top: 28px; }
  .room-section--conversation .room-body p { font-size: 15px; line-height: 1.6; }
  .room-section--conversation .approach-list { margin-top: 24px; }
}
