.site-footer {
  background: #f2f2f2;
}

.site-footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1280px;
  padding: 48px 24px;
  margin: 0 auto;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__logo {
  display: block;
  max-width: 200px;
  height: auto;
}

.site-footer__tagline {
  font-size: 16px;
  opacity: 0.8;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
}

.site-footer__contact-value {
  font-weight: 600;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .site-footer__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .site-footer__contact {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .site-footer__contact-item {
    padding-left: 24px;
    border-left: 1px solid var(--primary-15);
  }

  .site-footer__contact-item:first-child {
    padding-left: 0;
    border-left: none;
  }
}
