:root {
  --sidebar-width: 22rem;
  --layout-gap: 6rem;
  --border-separator: 4px;
  --header-height: 62px;
}

@media (min-width: 1024px) {
  :root {
    --border-separator: 6px;
    --header-height: 95px;
  }
}
@media (min-width: 1150px) {
  :root {
    --header-height: 101px;
  }
}
@media (min-width: 1300px) {
  :root {
    --sidebar-width: 27rem;
    --layout-gap: 8rem;
  }
}
* + .link-cta {
  margin-top: var(--wp--preset--spacing--normal) !important;
}

.link-cta + * {
  margin-top: var(--wp--preset--spacing--m) !important;
}

.link-cta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 26px;
}
.link-cta a {
  display: block;
  position: relative;
  box-shadow: none;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
}
.link-cta a .bg {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}
.link-cta a:before {
  content: "";
  display: block;
  width: 100%;
  background: #7CBC9F;
  -webkit-clip-path: polygon(0 0, 257px 0%, 100px 100%, 0% 100%);
          clip-path: polygon(0 0, 257px 0%, 100px 100%, 0% 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: background 0.3s ease-in-out, -webkit-clip-path 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, clip-path 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, clip-path 0.3s ease-in-out, -webkit-clip-path 0.3s ease-in-out;
}
.link-cta a:after {
  content: "";
  display: block;
  width: 100%;
  background: linear-gradient(130deg, rgb(247, 255, 239) 0%, rgb(203, 212, 194) 100%);
  -webkit-clip-path: polygon(0 0, 250px 0%, 80px 100%, 0% 100%);
          clip-path: polygon(0 0, 250px 0%, 80px 100%, 0% 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  transition: opacity 0.3s ease-in-out;
}
.link-cta a .title {
  width: 50%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 60px;
  padding: 25px;
  position: relative;
  z-index: 5;
}
.link-cta a .title em {
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-20);
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  color: #194166;
}
.link-cta a:hover, .link-cta a:active, .link-cta a:focus {
  box-shadow: -5px -5px 0 0 rgba(125, 199, 255, 0.95);
}
.link-cta a:hover .bg, .link-cta a:active .bg, .link-cta a:focus .bg {
  transform: scale(1.05);
}
.link-cta a:hover:before, .link-cta a:active:before, .link-cta a:focus:before {
  background: #5aab86;
  -webkit-clip-path: polygon(0 0, 255px 0%, 107px 100%, 0% 100%);
          clip-path: polygon(0 0, 255px 0%, 107px 100%, 0% 100%);
}
.link-cta a:hover:after, .link-cta a:active:after, .link-cta a:focus:after {
  opacity: 0.9;
}
@media (min-width: 470px) and (max-width: 599px) {
  .link-cta a .title {
    width: 40%;
  }
}
@media (min-width: 600px) {
  .link-cta {
    flex-direction: row;
  }
  .link-cta a {
    width: calc(50% - 13px);
  }
  .link-cta a .title {
    width: 55%;
    padding: 25px 0 85px 25px;
    position: relative;
  }
  .link-cta a .title svg {
    position: absolute;
    bottom: 25px;
    left: 25px;
  }
}
@media (min-width: 782px) {
  .link-cta {
    justify-content: space-between;
  }
  .link-cta a {
    width: calc(33.33% - 18px);
  }
}
@media (min-width: 1024px) {
  .link-cta a .title {
    width: 50%;
    padding-bottom: 150px;
  }
}