.real-chat {
  width: min(390px, 100%);
  margin: auto;
  position: relative;
  transform: rotate(-1.5deg);
  filter: drop-shadow(0 30px 38px #002d4628);
}

.real-chat::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 6px solid var(--navy);
  border-radius: 32px;
  z-index: -1;
  background: var(--navy);
}

.real-chat img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
}

.real-chat figcaption {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 99px;
  background: #fff;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 9px 24px #002d4620;
}

@media (max-width: 600px) {
  .real-chat {
    width: min(340px, 92%);
    transform: rotate(-.8deg);
  }

  .real-chat img {
    max-height: 540px;
  }
}
