.pf-checkups-section {
  background: #edf6f7;
  border-block: 1px solid #c7dde5;
  padding: 84px 0;
}

.pf-checkups-heading {
  margin-bottom: 34px;
}

.pf-checkups-heading p {
  margin-inline: auto;
  max-width: 760px;
}

.pf-checkups-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1040px;
}

.pf-checkups-grid--single {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.pf-checkup-card {
  background: #fff;
  border: 1px solid #c7dde5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px;
}

.pf-checkup-card__label {
  color: #0d8482;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pf-checkup-card h3 {
  color: #07334f;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  margin: 12px 0 14px;
}

.pf-checkup-card > p {
  color: #536b7f;
  margin: 0;
}

.pf-checkup-card__action {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.pf-checkup-card__action small,
.pf-checkups-callout__action small {
  color: #536b7f;
  display: block;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 540px;
}

.pf-checkups-callout {
  background: #fff;
  padding: 28px 0 70px;
}

.pf-checkups-callout__inner {
  align-items: center;
  background: #edf6f7;
  border: 1px solid #c7dde5;
  border-radius: 8px;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  padding: 38px;
}

.pf-checkups-callout h2 {
  color: #07334f;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.12;
  margin: 10px 0 14px;
}

.pf-checkups-callout p {
  color: #536b7f;
  margin: 0;
}

.pf-checkups-callout__action {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-checkups-callout .button,
.pf-checkup-card .button {
  min-height: 48px;
}

.pf-checkups-callout .button:focus-visible,
.pf-checkup-card .button:focus-visible {
  outline: 3px solid #0d8482;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .pf-checkups-section {
    padding: 64px 0;
  }

  .pf-checkups-grid,
  .pf-checkups-callout__inner {
    grid-template-columns: 1fr;
  }

  .pf-checkup-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .pf-checkups-callout {
    padding: 18px 0 56px;
  }

  .pf-checkups-callout__inner {
    gap: 24px;
    padding: 28px 22px;
  }

  .pf-checkups-callout .button,
  .pf-checkup-card .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf-checkups-section *,
  .pf-checkups-callout * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

