.next-previous-block {
  background: var(--blue-02);
  padding: 60px 0;
}
.next-previous-block .heading {
  font-size: 28px;
  text-align: center;
  font-family: "RocheSans-Medium", "Arial", "Arial Narrow";
  margin-bottom: 32px;
  line-height: 1;
}
.next-previous-block-body {
  margin: auto;
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
}
.next-block-card,
.previous-block-card {
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  column-gap: 10px;
  box-shadow: 0px 3px 15px -3px rgba(16, 24, 40, 0.10), 0px 1px 6px -4px rgba(16, 24, 40, 0.05);
  width: 100%;
  max-width: 582px;
  margin: 0 auto;
}

.block-text {
  flex-grow: 2;
  height: 100%;
}

.block-text-small {
  color: #737373;
  margin-bottom: 2px;
}
.block-text-large {
  font-family: "RocheSans-Medium", "Arial", "Arial Narrow";
  font-size: 22px;
  margin-bottom: 0;
}
.next-previous-block-body .circle {
  border-radius: 40px;
  border: 1px solid var(--acBlueShade);
  padding: 10px;
  -webkit-transition: all ease-in-out .2s;
  -moz-transition: all ease-in-out .2s;
  -o-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}
.next-previous-block-body .circle img {
  margin-top: -7px;
  filter: invert(37%) sepia(72%) saturate(458%) hue-rotate(138deg) brightness(98%) contrast(94%);
}
.block-link {
  display: flex;
  align-items: center;
}
.block-link a {
  display: block;
  width: 45px;
  height: 45px;
}
.block-link a:hover {
  background: var(--acBlueShade);
  border: 1px solid var(--acBlueShade);
  transition: background ease-in-out .5s;
}
.block-link a:hover img {
  filter: invert(99%) sepia(1%) saturate(2%) hue-rotate(343deg) brightness(116%) contrast(100%);
}
.block-text-large a {
  color: var(--acBlueText);
}
.goto-training {
  margin-top: 32px;
}
.training-link {
  font-family: "RocheSans-Medium", "Arial", "Arial Narrow";
  font-size: 16px;
  text-decoration: underline;
}
.previous-block-card .circle img {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .next-previous-block .heading {
    font-size: 24px;
  }
  .next-previous-block-body .circle img {
    margin-top: -2px;
  }
}
@media (max-width: 768px) {
  .block-text-small {
    font-size: 16px;
  }
  .next-previous-block-body {
    flex-direction: column-reverse;
  }
}
@media (min-width: 769px) {
  .next-previous-block-body {
    display: flex;
    justify-content: center;
    grid-gap: 24px;
  }
  .next-block-card,
  .previous-block-card {
    width: calc(50% - 12px);
  }
  .previous-block-card {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .previous-block-card .block-text {
    text-align: right;
  }
}
