.footer {
  background: #c12b6b;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  color: #fff;
  font-family: inherit;
}

.footer__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__slogan {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-family: var(--title-font);
}

.footer__cta {
  background: var(--pink);
  color: #c12b6b;
  font-family: var(--title-font);
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.footer__cta:hover {
  background: #f48bbd;
}
.footer__divider {
  border: none;
  border-top: 1px solid #fff3;
  margin: 0 auto 1.2rem auto;
  width: 60%;
}

.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

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

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__social img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
}

.footer__cta-arrow img {
  display: inline-block;
  vertical-align: middle;
  height: 1.3em;
  width: auto;
  margin-left: 0.3em;
}

@media (max-width: 600px) {
  .footer__top {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }
  .footer__bottom {
    /* flex-direction: column; */
    gap: 1.2rem;
    justify-content: space-between;
  }
  .footer__divider {
    width: 100%;
  }
}
