.link {
  white-space: nowrap;
}
.link:not(.button) {
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
  color: var(--color-blue);
  text-decoration: none;
  font-size: 1.125rem;
}
@media (max-width: 576px) {
  .link:not(.button) {
    display: block;
    margin: 10px 0;
  }
}
.link:not(.button):after {
  display: inline-block;
  width: 8px;
  height: 10px;
  content: "";
  background-image: url("/assets/images/icons/arrow-blue.svg");
  background-repeat: no-repeat;
  margin-left: 10px;
  white-space: nowrap;
}
.link:not(.button):hover {
  color: var(--color-deep);
}
.link:not(.button):hover:after {
  margin-left: 15px;
  transition: 0.3s all ease-in-out;
}
.link:not(.button).frost:after {
  background-image: url("/assets/images/icons/arrow-frost.svg");
}
.link:not(.button).arrow-down:after {
  rotate: 90deg;
}

.container.no-pad-left {
  padding-left: 0;
}
.container.no-pad-right {
  padding-right: 0;
}

.wp-block-pulp-stats-block .container .title-area {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}
.wp-block-pulp-stats-block .container .title-area p {
  font-size: 1.125rem;
}
.wp-block-pulp-stats-block .container .layout {
  display: flex;
  justify-content: center;
  gap: 0;
}
@media (max-width: 992px) {
  .wp-block-pulp-stats-block .container .layout {
    flex-wrap: wrap;
  }
}
.wp-block-pulp-stats-block .container .layout .text-column {
  text-align: center;
  padding: 20px 2.5%;
  max-width: 33.33%;
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .wp-block-pulp-stats-block .container .layout .text-column {
    max-width: 100%;
    border-right: 0;
    padding: 25px 0;
  }
}
.wp-block-pulp-stats-block .container .layout .text-column .stat {
  color: var(--color-deep);
  font-weight: 600;
  margin-bottom: 5px;
}
.wp-block-pulp-stats-block .container .layout .text-column .title {
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: 20px;
}
.wp-block-pulp-stats-block .container .layout .text-column p {
  font-size: 1.125rem;
}
