/* ---------- ABOUT ---------- */
.services-content .its-about {
  background: #f1f1f1;
}
.services-content .its-about .about-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.services-content .its-about .about-text {
  flex: 1;
}
.services-content .its-about .about-image {
  flex: 1;
  text-align: center;
}
.services-content .its-about .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.services-content .its-about .about-image iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .services-content .its-about .about-grid {
    flex-direction: column-reverse;
  }
  /* DOM order is already [media, text] when media is on the left —
     reversing it too (the rule above) would flip mobile to [text, media]
     instead of keeping media first like the default (right) case ends up. */
  .services-content .its-about .about-grid--media-left {
    flex-direction: column;
  }
}
