/* PB Contact Checklist Block */

section.pb-contact-checklist {
  background: #f5f0ec;
  padding: 72px 0;
}

@media (max-width: 767px) {
  section.pb-contact-checklist {
    padding: 48px 0;
  }
}

/* Header */

section.pb-contact-checklist .pb-contact-checklist-header {
  margin-bottom: 44px;
  text-align: center;
}

section.pb-contact-checklist .pb-contact-checklist-label {
  color: var(--color-red);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(16px, 1.8vw, var(--typography-size-h1));
  font-weight: 600;
  margin: 0 0 10px;
}

section.pb-contact-checklist .pb-contact-checklist-title {
  color: var(--color-dark-blue);
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, var(--typography-size-h2));
  font-weight: 700;
  margin: 0;
}

/* Cards grid */

section.pb-contact-checklist .pb-contact-checklist-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  section.pb-contact-checklist .pb-contact-checklist-cards {
    grid-template-columns: 1fr;
  }
}

/* Card */

section.pb-contact-checklist .pb-contact-checklist-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px 26px;
}

section.pb-contact-checklist .pb-contact-checklist-card-icon {
  align-items: center;
  background: #fef0f3;
  border-radius: 10px;
  color: var(--color-red);
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

section.pb-contact-checklist .pb-contact-checklist-card-title {
  color: var(--color-dark-blue);
  font-family: var(--font-head);
  font-size: var(--typography-size-h4);
  font-weight: 700;
  margin: 0 0 8px;
}

section.pb-contact-checklist .pb-contact-checklist-card-text {
  color: var(--color-paragraph);
  font-size: var(--typography-size-16);
  line-height: 1.7;
  margin: 0;
}

/* Footer note */

section.pb-contact-checklist .pb-contact-checklist-footer {
  background: #fff;
  border-radius: 10px;
  font-size: var(--typography-size-16);
  line-height: 1.75;
  margin-top: 20px;
  padding: 20px 24px;
  text-align: center;
}

section.pb-contact-checklist .pb-contact-checklist-footer p {
  color: var(--color-dark-blue);
  margin: 0;
}
