/*
  VIVIDEAR Footer
  Site footer layout, footer brand area, navigation columns, and bottom bar.
*/


/* Footer Shell */

.footer {
  margin-block-start: 72px;
  color: rgba(255, 255, 255, .74);
  background: var(--deep-navy);
  border-radius: var(--radius-hero) var(--radius-hero) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 32px;
  padding: 72px 0 48px;
}
.brand--footer {
  color: var(--white);
}
.footer__brand p {
  max-width: 320px;
  margin-block-start: 22px;
  color: rgba(255, 255, 255, .72);
}
.footer h2 {
  margin-block-end: 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  line-height: 28px;
}
.footer a:not(.brand) {
  display: block;
  padding-block: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: var(--font-size-base);
  line-height: 26px;
  transition: color var(--transition-fast);
}
.footer a:hover {
  color: var(--white);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: var(--font-size-sm);
  line-height: 22px;
}
