/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--white-10);
  background: var(--dark-bg);
  padding: 2.5rem 0;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

.footer__brand img {
  height: 44px;
  width: auto;
}

.footer__brand p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--white-72);
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
}

.footer__links {
  margin-top: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links li a,
.footer__links li {
  font-size: 0.9375rem;
  color: var(--white-78);
  transition: color 0.2s;
}

.footer__links li a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--white-78);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-10);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--white);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.1fr 0.7fr 0.8fr 0.9fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
