:root {
  --ta-footer-blue: #2786d8;
  --ta-footer-orange: #fd9d30;
  --ta-footer-text: #000000;
  --ta-footer-muted: #ededed;
  --ta-footer-white: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.footer p {
  margin: 0;
}

.footer {
  background: var(--ta-footer-white);
  padding-block: 5rem;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.footer__row {
  row-gap: 1rem;
}

.footer__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--ta-footer-blue);
  color: var(--ta-footer-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.footer__tag p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.footer__logo {
  display: block;
  width: auto;
  height: auto;
}

.footer__details {
  margin-bottom: 1.5rem;
}

.footer__details-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  white-space: normal;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  background: var(--ta-footer-orange);
  width: 100%;
  max-width: 430px;
  margin-top: 2.5rem;
  box-shadow: 0 0.25rem 0.75rem #0000001f;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer__cta-icon {
  display: block;
  width: auto;
  height: auto;
}

.footer__cta-text p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ta-footer-white);
}

.footer__cta:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1rem #00000026;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  transition: 0.2s;
}

.footer__link-text p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.footer__nav-row + .footer__nav-row {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer__details-text {
    font-size: 1.125rem;
  }
  .footer__company-col {
    padding-right: 3rem;
  }

  .footer__nav-col {
    border-left: 4px solid var(--ta-footer-muted);
    padding-left: 3rem;
  }

  .footer__nav-row + .footer__nav-row {
    margin-top: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .footer__brand {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }
}
