.wrapper, .kelp-card-callout .callout-container {
  max-width: 1140px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.wrapper--large {
  max-width: 1440px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.wrapper--small {
  max-width: 768px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.mobile-only {
  display: block;
}
@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.dark-background {
  background-color: var(--primary-color);
}

.wrapper > div figure, .kelp-card-callout .callout-container > div figure {
  position: relative;
}
.wrapper > div:nth-child(odd) figure:after, .kelp-card-callout .callout-container > div:nth-child(odd) figure:after {
  left: -2rem;
  bottom: -2rem;
  z-index: -1;
  background-color: var(--accent-color);
}
.wrapper > div:nth-child(even) figure:after, .kelp-card-callout .callout-container > div:nth-child(even) figure:after {
  left: -2rem;
  bottom: -2rem;
  z-index: -1;
  background-color: var(--tertiary-color);
}
.wrapper > div:nth-child(2n) figure:after, .kelp-card-callout .callout-container > div:nth-child(2n) figure:after {
  width: 60%;
  left: -1rem;
}
.wrapper > div:nth-child(3n) figure:after, .kelp-card-callout .callout-container > div:nth-child(3n) figure:after {
  width: 85%;
  bottom: -1rem;
}

article > figure {
  position: relative;
  margin-bottom: 2rem !important;
}
article:nth-child(odd) figure:after {
  left: -2rem;
  bottom: -2rem;
  z-index: -1;
  background-color: var(--accent-color);
}
article:nth-child(even) figure:after {
  left: -2rem;
  bottom: -2rem;
  z-index: -1;
  background-color: var(--tertiary-color);
}
article:nth-child(2n) figure:after {
  width: 60%;
  left: -1rem;
}
article:nth-child(3n) figure:after {
  width: 85%;
  bottom: -1rem;
}

.wp-block-image img {
  width: 100%;
}

.kelp-card-callout {
  background-color: var(--tertiary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden !important;
}
.kelp-card-callout .callout-container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
}
@media only screen and (max-width: 600px) {
  .kelp-card-callout .callout-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.kelp-card-callout-content {
  background-color: #ffffff;
  max-width: 555px;
  padding: 3rem;
  margin: 3rem 3rem 3rem 0;
  z-index: 1;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .kelp-card-callout-content {
    margin: 3rem 1rem;
  }
}
.kelp-card-callout-content h2 {
  font-size: 41px;
}
.kelp-card-callout-content p {
  font-size: 20px;
}
.kelp-card-callout-content .button {
  margin-top: 2rem;
}
.kelp-card-callout img {
  position: absolute;
  max-width: 100%;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kelp-card-callout.align-content-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.kelp-card-callout.align-content-left img {
  left: unset;
  right: 0;
}