:root {
  --embed--border_radius: 11px;
}
/* Main styling */
.l__region {
  .paragraph.paragraph--type--oxfcms-embed {
    display: inline-block;
    .oxfcms-embed-wrapper {
      display: block;
      max-width: 100%;
      flex-direction: column;
      align-items: flex-start;
      font-size: 0;
      .oxfcms-embed-content {
        > * {
          margin: auto;
          display: block;
        }
        * {
          border-radius: var(--embed--border_radius);
        }
      }
      &:has(.oxfcms-caption),
      &:has(.lb-caption) {
        .oxfcms-embed-content {
          *:not(.oxfcms-caption-content) {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
          }
        }
        .oxfcms-caption-content {
          display: flex;
          width: 100%;
          box-sizing: border-box;
          max-width: 100%;
          overflow-wrap: break-word;
          word-wrap: break-word;
          white-space: normal;
          border-top-left-radius: 0;
          border-top-right-radius: 0;
        }
      }
    }
  }
}
