card-callouts:not(.oj-complete) {
  visibility: hidden;
}

.cc-main {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  row-gap: 16px;
  background: url("../../images/components/card-callouts/background.png");
  padding: 16px;
}

.cc-main>div {
  background: #FFFFFF;
  box-shadow: 0px 8px 32px -10px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  height: 408px;
  overflow: hidden;
}

.cc-base-illustration {
  height: 172px;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.cc-illustration-01 {
  background: url("../../images/components/card-callouts/illustration-01.png");
}

.cc-illustration-02 {
  background: url("../../images/components/card-callouts/illustration-02.png");
}

.cc-illustration-03 {
  background: url("../../images/components/card-callouts/illustration-03.png");
}

.cc-illustration-04 {
  background: url("../../images/components/card-callouts/illustration-04.png");
}

.cc-callout-info {
  position: relative;
  height: 188px;
  padding: 20px 24px 28px 24px;
}

.cc-callout-title {
  margin-bottom: 4px;
}

.cc-callout-description {
  color: #161513;
  letter-spacing: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc-callout-button {
  position: absolute;
  bottom: 28px;
}

div.cc-main h2.cc-callout-title {
  margin-top: 0px;
}

@media only screen and (min-width: 600px) {
  .cc-main {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 16px;
    padding: 24px;
  }

  .cc-main>div {
    flex: 1 0 40%;
  }
}

@media only screen and (min-width: 1281px) {
  .cc-main {
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 24px;
    padding: 88px inherit;
  }

  .cc-main>div {
    max-width: 330px;
    flex: 1 0 20%;
  }
}