/* =========================================================
   FOOTER — Pie de Página
   =========================================================

   Copyright + crédito. Usa el mismo marco .specimen-frame
   que el header para mantener coherencia visual.

   Estructura:
   footer.site-footer
     .specimen-frame
       .specimen-corner (x4)
       .footer-inner
         .footer-text     ← "© 2024 Nombre del sitio"
         .footer-credit   ← "Placa botánica con WordPress"
   ========================================================= */

.site-footer {
	padding: 0 var(--frame-margin) var(--frame-margin);
}

/* Padding ligeramente menor que el header */
.site-footer .specimen-frame {
	padding: 1.2rem clamp(1.25rem, 4vw, 3rem);
}

.footer-inner {
	text-align: center;
}

/* Copyright */
.footer-text {
	font-family: var(--font-nav);
	font-size: 0.95rem;
	color: var(--color-ink);
	margin: 0 0 0.3rem;
}

.footer-text a:hover {
	color: var(--color-magenta);
}

/* Crédito del tema */
.footer-credit {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-line);
	margin: 0;
}

.footer-credit a {
	text-decoration: underline;
	text-decoration-color: rgba(140, 122, 94, 0.4);
	text-underline-offset: 2px;
}

.footer-credit a:hover {
	color: var(--color-magenta);
	text-decoration-color: var(--color-magenta);
}
