.ehs-contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ehs-contact-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.ehs-contact-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
}

.ehs-contact-socials__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}

/* Footer contacts */
.ehs-footer-contacts {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
}

.ehs-footer-contacts__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  max-width: 100%;
}

.ehs-footer-contacts__email,
.ehs-footer-contacts__phone {
  flex: 0 0 auto;
  line-height: 1.2;
  white-space: nowrap;
}

.ehs-contact-socials--footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.ehs-contact-socials--footer .ehs-contact-socials__link {
  width: 24px;
  height: 24px;
}

.ehs-contact-socials--footer .ehs-contact-socials__icon {
  max-width: 22px;
  max-height: 22px;
}

@media (max-width: 767px) {
  .ehs-footer-contacts {
    align-items: center;
    width: 100%;
  }

  .ehs-footer-contacts__top {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
  }

  .ehs-contact-socials--footer {
    justify-content: center;
    width: 100%;
  }
}