/* Add tints and filters to covers */
.wp-block-cover {
  isolation: isolate;
  &::after {
    position: absolute;
    inset: 0;
    content: "";
    mix-blend-mode: multiply;
  }
  &.about::after {
    background: rgb(14 72 122);
  }
  &.cookies,
  &.privacy,
  &.terms {
    &::after {
      background: linear-gradient(
        90deg,
        rgb(0 0 0 / 0) 0%,
        rgb(0 0 0 / 0.5) 33%,
        rgb(0 0 0 / 0.5) 67%,
        rgb(0 0 0 / 0) 100%
      );
    }
  }
  &.is-style-home::after {
    background: rgb(252 126 5 / 68%);
  }
  div {
    z-index: 2;
  }
}

/* Enhance alignleft images */
.is-layout-constrained > .alignleft {
  margin: 0.5em 1.5em 1em 0.5em !important;
  &.profile {
    width: 40%;
    @media (max-width: 875px) {
      margin: 0 0 1em !important;
      &,
      a,
      img {
        width: 100%;
        aspect-ratio: 3 / 1 !important;
      }
    }
    @media (max-width: 450px) {
      img {
        aspect-ratio: 1 / 1 !important;
      }
    }
  }
}
