.prefooter .contact-info-body.prefooter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.prefooter .contact-info-body.prefooter-grid > .prefooter-item,
.prefooter .contact-info-body.prefooter-grid > .contact-info-group {
  min-width: 0;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  align-self: start;
}

.prefooter .contact-info-title {
  margin-bottom: 1.5rem;
}

.prefooter .contact-info-group-label {
  display: block;
  margin: 0 0 0.5rem 0;
}

.prefooter .contact-info-group-body {
  min-width: 0;
}

.prefooter .contact-info-group-body p {
  margin: 0;
}

.prefooter .contact-info-group-body p + p {
  margin-top: 0.75rem;
}

.prefooter .contact-info-group-body a,
.prefooter .contact-info-group-body span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .prefooter .contact-info-body.prefooter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .prefooter .contact-info-body.prefooter-grid {
    grid-template-columns: 1fr;
  }
}