/* Oculta el footer nativo de Blocksy (el de su constructor visual) en todo
   el sitio; el nuestro lo pinta inc/site-footer.php vía wp_footer. */
#footer.ct-footer {
  display: none !important;
}

.fd-site-footer {
  background: #601739;
  padding: 48px 20px 32px;
}

.fd-site-footer .fd-footer {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--fd-font-body);
  color: #ede6dd;
}

.fd-site-footer .fd-footer__brand {
  font-family: var(--fd-font-heading);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.fd-site-footer .fd-footer__contact {
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.fd-site-footer .fd-footer__contact a {
  color: #ede6dd;
  text-decoration: underline;
}

.fd-site-footer .fd-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 0.85rem;
}

.fd-site-footer .fd-footer__legal a {
  color: #ede6dd;
  text-decoration: none;
  opacity: 0.85;
}

.fd-site-footer .fd-footer__legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.fd-site-footer .fd-footer__legal span {
  opacity: 0.5;
  font-size: 0.8rem;
}

.fd-site-footer .fd-footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 24px;
}

.fd-site-footer .fd-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.65;
}

@media (max-width: 480px) {
  .fd-site-footer .fd-footer__legal {
    flex-direction: column;
    gap: 6px;
  }

  .fd-site-footer .fd-footer__legal span {
    display: none;
  }
}
