@layer components {

/* Footer */
.footer {
  background: var(--brand-tertiary);
  color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer__divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

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

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  display: block;
  height: 100px;
  width: auto;
}

.footer__pill {
  margin-top: 10px;
  color: var(--color-text-muted);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-text-muted);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer__contact h3 {
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.footer__disclaimer h3 {
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.footer__disclaimer p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  color: var(--brand-primary);
}

.footer__contact-row:last-child {
  margin-bottom: 0;
}

.footer__contact-row a {
  color: inherit;
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__credit {
  color: var(--brand-primary);
  font-size: 0.85rem;
  margin: 0;
}

.footer__credit a {
  text-decoration: underline;
}

.footer__copyright {
  color: var(--brand-primary);
  font-size: 0.85rem;
  margin: 0;
}

}
