.tile {
  width: 100%;
  background-color: var(--color-background-grey);
  border-radius: 1rem;
  min-height: 30rem;
  height: 35rem;
  display: flex;
  overflow: hidden;
  position: relative;
}

.tile .tile__clip {
  width: 50%;
  height: 100%;
  align-self: flex-start;
  background-color: var(--color-background-grey);
  position: relative;
}

.tile__clip::after {
  content: '';
  width: 120%;
  height: 100%;
  position: absolute;
  right: -50%;
  bottom: 0;
  z-index: 2;
  clip-path: circle(98.7% at -15% 33%);
  -webkit-clip-path: circle(98.7% at -15% 33%);
  background-color: var(--color-background-grey);
}

.tile__text {
  position: absolute;
  top: 0;
  left: 0;
  margin: 2rem;
  width: 53%;
  z-index: 3;
}

.tile__text h1 {
  width: 80%;
  margin-bottom: 1rem;
  margin-top: unset;
  line-height: 3.2rem;
}
.tile__text p {
  line-height: 2.4rem;
  margin-bottom: 2rem;
  font-family: var(--condensed-font);
}

.tile .tile__image {
  width: 60%;
  height: 100%;
  overflow: hidden;
  align-self: flex-end;
  position: relative;
}

.tile__image img {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
}

.tile a.button {
  position: absolute;
  bottom: 0.8rem;
  left: 1.5rem;
  z-index: 2;
}



.breakpoint-mobile-only .tile,
.breakpoint-tablet-portrait .tile {
  display: block;
  height: auto;
  background: #fff;
  margin-bottom: 8em;
}

.breakpoint-mobile-only .tile,
.breakpoint-tablet-portrait .tile {
  display: block;
  height: auto;
  background: #fff;
  margin-bottom: 8em;
}

.breakpoint-mobile-only .tile .tile__clip,
.breakpoint-tablet-portrait .tile .tile__clip {
  width: 100%;
  height: 365px;
  position: absolute;
  background: #fff;
}

.breakpoint-mobile-only .tile .tile__clip:after,
.breakpoint-tablet-portrait .tile .tile__clip:after {
  content: '';
  width: 120%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  clip-path: circle(71% at 53% 136%);
  background-color: #fff;
}

.breakpoint-mobile-only .tile__image,
.breakpoint-tablet-portrait .tile__image {
  width: 100%;
  height: auto;
  overflow: initial;
}

.breakpoint-mobile-only .tile__image img,
.breakpoint-tablet-portrait .tile__image img {
  position: relative;
  width: 140%;
  height: auto;
  left: -20%;
}

.breakpoint-mobile-only .tile__text,
.breakpoint-tablet-portrait .tile__text {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 2rem;
}

.breakpoint-tablet-portrait .tile__text {
  min-height: 330px;
}

.breakpoint-mobile-only .tile .button,
.breakpoint-tablet-portrait .tile .button {
  width: auto;
  position: relative;
  margin: 0 2rem;
  display: block;
  left: auto;
  bottom: auto;
}

.breakpoint-mobile-only .front__tiles .grid-row  .col-m-6,
.breakpoint-tablet-portrait .front__tiles .grid-row  .col-m-6 {
  margin: 0;
}

