/* Footer gris — franja inferior de caece-cms (SiteFooter.vue, bloque bg-[#595959]) */

.site-footer {
  background: #595959;
  padding: 16px var(--gutter);
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: var(--max-width-wide);
  margin-inline: auto;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  line-height: 0;
  transition: background var(--transition-fast);
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.site-footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__rights {
  margin-top: 4px;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 641px) {
  .site-footer__bar {
    justify-content: flex-start;
  }

  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .site-footer__rights {
    margin-top: 0;
  }
}
