.site-footer-consult {
  padding: 26px 24px;
  background: #f6f7f8;
  border-top: 1px solid rgba(17, 17, 19, 0.08);
  border-bottom: 1px solid rgba(17, 17, 19, 0.08);
}

.site-footer-consult__inner {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer-consult__copy {
  min-width: 0;
}

.site-footer-consult__copy strong,
.site-footer-consult__copy span {
  display: block;
}

.site-footer-consult__copy strong {
  color: #111113;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.site-footer-consult__copy span {
  margin-top: 5px;
  color: #6d7279;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer-consult__link {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(255, 106, 19, 0.55);
  border-radius: 6px;
  background: #fff;
  color: #d95812;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 6px -5px rgba(17, 17, 19, 0.32);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer-consult__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.site-footer-consult__link:hover {
  transform: translateY(-1px);
  background: #fff8f3;
  border-color: #ff6a13;
}

@media (max-width: 720px) {
  .site-footer-consult {
    padding: 22px 18px;
  }

  .site-footer-consult__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-footer-consult__copy strong {
    font-size: 17px;
  }

  .site-footer-consult__copy span {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-consult__link {
    transition: none;
  }
}
