/* Simple, modern, responsive site footer. components/footer.html */
.hp-footer {
  background: var(--color-brand-dark);
  color: rgba(255, 255, 255, 0.65);
}

.hp-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hp-footer__brand {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hp-footer__logo {
  display: inline-flex;
}

.hp-footer__logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.hp-footer__tagline {
  margin: 0;
  max-width: 260px;
  font-size: 0.84375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.hp-footer__social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hp-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.hp-footer__social a:hover {
  background: #fff;
  color: var(--color-brand-dark);
}

.hp-footer__columns {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 3.5rem;
}

.hp-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 120px;
}

.hp-footer__col-title {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hp-footer__col a {
  font-size: 0.84375rem;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}

.hp-footer__col a:hover {
  color: #fff;
}

.hp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: 0.78125rem;
  color: rgba(255, 255, 255, 0.55);
}

.hp-footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}

.hp-footer__bottom a:hover {
  color: #fff;
}

.hp-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .hp-footer__top {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hp-footer__brand {
    flex-basis: auto;
  }

  .hp-footer__columns {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 576px) {
  .hp-footer__top {
    padding-block: 2.5rem;
    gap: 2rem;
  }

  .hp-footer__columns {
    gap: 2rem 1.5rem;
  }

  .hp-footer__col {
    min-width: calc(50% - 0.75rem);
  }

  .hp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-block: 1.5rem;
  }
}
