.text__body iframe {
  width: 100%;
  aspect-ratio: 100 / var(--responsive-embed-ratio);
  max-width: 100%;
  border: none;
  margin: 1rem 0;
}

.text__body .responsive-embed iframe {
  height: auto;
}

/* Facebook specific */
.text__body iframe[src*="facebook.com"] {
  aspect-ratio: 16 / 9;
  min-height: 1100px;
}

/* YouTube specific */
.text__body iframe[src*="youtube.com"],
.text__body iframe[src*="youtu.be"] {
  aspect-ratio: 16 / 9;
}

/* Instagram specific */
.text__body iframe[src*="instagram.com"] {
  aspect-ratio: 1 / 1;
  min-height: 450px;
}

/* LinkedIn specific */
.text__body iframe[src*="linkedin.com"] {
  aspect-ratio: 16 / 9;
  min-height: 400px;
}

/* Generic fallback for other iframes */
.text__body iframe:not([src*="facebook.com"]):not([src*="youtube.com"]):not([src*="youtu.be"]):not([src*="instagram.com"]):not([src*="linkedin.com"]) {
  aspect-ratio: 16 / 9;
}
