section.image:has(.full) {
  margin-top: calc(var(--gutter) * 2) !important;
}
section.image .img-wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
}
section.image .img-wrapper img,
section.image .img-wrapper iframe {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 10px;
}
section.image .img-wrapper .iframe {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
section.image .img-wrapper .iframe iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}