
/*
* FX
*/

@media (min-width: 768px) {
  section:has(.bg-ring) {
    overflow: hidden;
  }

  .bg-ring.brand-1 {
    --ring-color: var(--theme-palette-color-1);
  }

  .bg-ring {
    position: relative;
  }

  .bg-ring:after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: 50%;
    width: 720px;
    height: 720px;
    border: 128px solid var(--ring-color, currentColor);;
    border-radius: 600px;
  }

  .bg-ring > * {
    position: relative;
    z-index: 1;
  }

  .wp-block-columns:has(.bg-ring-img) {
    overflow: hidden;
  }

  /* Image */
  .wp-block-columns:has(.bg-ring-img) {
    overflow: hidden;
  }

  .bg-ring-img {
    position: relative;
  }

  .bg-ring-img.brand-1 {
    --ring-color: var(--theme-palette-color-1);
  }

  .bg-ring-img:after {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 720px;
    height: 720px;
    border: 128px solid var(--ring-color, currentColor);
    border-radius: 992px;
    z-index: 0;
  }

  .bg-ring-img figure {
    position: relative;
    z-index: 1;
  }

}