/**
 * Ready to go further? — full-width CTA section below page-layout__body.
 */

.page-go-further {
  position: relative;
  background-color: #E1F9F8 !important;
}

.page-go-further__wave {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  line-height: 0;
  background-color: #fff;
  overflow: hidden;
}

.page-go-further__wave svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  flex-shrink: 0;
  margin-bottom: -1px;
}

.page-go-further__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px var(--page-layout-gutter) 48px;
}

.page-go-further__intro {
  margin-bottom: 24px;
}

.page-go-further__intro-title {
  margin: 0 0 6px !important;
  font-family: "Work Sans", sans-serif !important;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-default, #1c2b34);
}

.page-go-further__intro-text > p {
  font-size: 18px;
  line-height: 1.45;
}

.page-go-further__intro-text > p:first-child {
  margin-top: 0;
}

.page-go-further__intro-text > p:last-child {
  margin-bottom: 0;
}

.page-go-further__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-go-further__item {
  margin: 0;
  padding: 0;
  min-width: 0;
}

.page-go-further__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border: 1px solid #E7E7E7;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.page-go-further__card:hover {
  border-color: #6C7377;
  text-decoration: none;
  color: inherit;
}

.page-go-further__card:focus {
  outline: none;
}

.page-go-further__card:focus-visible {
  outline: 2px solid var(--text-color-blue, #2563eb);
  outline-offset: 3px;
}

.page-go-further__card[target="_blank"]::after {
  content: none;
}

.page-go-further__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 !important;
  font-family: "Work Sans", sans-serif !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text-default, #1c2b34);
}

.page-go-further__card-title--row-multiline {
  min-height: calc(1.2em * 2);
}

.page-go-further__card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 8px 0 0 !important;
  min-height: calc(1.45em * 3);
  font-family: "Work Sans", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #6c7377;
}

.page-go-further__card-label {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  align-self: flex-end;
  font-family: "Work Sans", sans-serif !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #2563EB;
  text-align: right;
  text-decoration: none;
}

.page-go-further__card:hover .page-go-further__card-label {
  text-decoration: underline;
}

.page-layout .page-go-further__card,
.page-layout .page-go-further__card:hover {
  text-decoration: none;
}

@media (min-width: 1025px) {
  .page-go-further__inner {
    padding: 20px 24px 50px;
    max-width: 1168px;
  }

  .page-go-further__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-go-further__card-title {
    font-size: 20px;
  }
}
