/* ============================================================
 * Footer
 * ============================================================ */

.footer {
  background: var(--color-text, #2C3E2D);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-6, 32px) 0;
  text-align: center;
  margin-top: auto;
}

.footer p {
  margin: 0;
  font-size: var(--fs-sm, 14px);
}

.footer__small {
  margin-top: var(--space-2, 8px) !important;
  font-size: var(--fs-xs, 12px) !important;
  opacity: 0.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.footer a:hover {
  color: #fff;
}
.footer__icp {
  margin-top: var(--space-3, 12px) !important;
  font-size: var(--fs-xs, 12px) !important;
  opacity: 1;
}

.footer__icp a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transition: all 0.15s;
}

.footer__icp a::before {
  content: '🛡';
  font-size: 14px;
}

.footer__icp a:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}
