/* Pie de página compartido: mantiene el mismo diseño en todas las páginas. */
.site-footer {
  width: 100%;
  margin: 0;
  padding: 1.25rem 0 2.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f3f7f5;
  box-shadow: none;
  text-align: left;
  scroll-margin-top: 5.5rem;
}

.site-footer .footer-inner {
  width: min(calc(100% - 2rem), 72rem);
  margin: 0 auto;
}

.site-footer .footer-panel {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #11211e;
  color: #f3f7f5;
}

.site-footer .footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer .footer-brand {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-footer .footer-brand-logo {
  display: block;
  width: 7rem;
  height: 7rem;
  max-width: 100%;
  border-radius: 50%;
  background: #ffffff;
  object-fit: cover;
}

.site-footer .footer-brand-name {
  margin: 0.9rem 0 0;
  color: #f3f7f5;
  font-weight: 800;
}

.site-footer .footer-donation-column {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-footer .footer-donation-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border: 2px solid #ffc857;
  border-radius: 999px;
  background: #ffc857;
  color: #10211d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  text-decoration: none;
}

.site-footer .footer-donation-link:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #0a433a;
}

.site-footer .footer-column-title {
  margin: 0 0 1rem;
  color: #f3f7f5;
  font-size: 1rem;
}

.site-footer .footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-list li {
  margin: 0;
}

.site-footer .footer-list li + li {
  margin-top: 0.8rem;
}

.site-footer .footer-links a {
  color: #ffffff;
}

.site-footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer .footer-social-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #11211e;
  font-weight: 700;
  text-decoration: none;
}

.site-footer .footer-social-link:hover {
  background: #e7f0ec;
  color: #11211e;
}

.site-footer .footer-social-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.site-footer button.footer-social-link.rss-copy-button {
  border: 0;
}

@media (min-width: 48rem) {
  .site-footer .footer-grid.footer-grid--with-donation {
    grid-template-columns: minmax(9rem, 0.9fr) minmax(10rem, 0.9fr) minmax(14rem, 1.2fr) minmax(10rem, 0.9fr);
    align-items: start;
  }
}
