/*footer.css*/
.utility-links-wrapper {
  margin-top:20px;
  text-align:center;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.utility-title {
  font-size:14px;
  color:var(--muted);
  margin-bottom:8px;
  font-weight:500;
}

.utility-links {
  display:flex;
  justify-content:center;
  gap:14px;
}

.utility-btn {
  display:inline-block;
  padding:10px 18px;
  background-color:#4caf50;
  color:#fff;
  font-weight:600;
  font-size:14px;
  border-radius:10px;
  text-decoration:none;
  box-shadow:0 3px 8px rgba(0,0,0,0.15);
  transition:transform .15s, box-shadow .15s, opacity .2s;
}

.utility-btn:hover {
  transform:translateY(-2px);
  box-shadow:0 5px 14px rgba(0,0,0,0.25);
  opacity:0.95;
}

.site-footer {
  background-color:var(--card);
  color:var(--text);
  border-top:1px solid var(--border);
  padding:20px;
  text-align:center;
  border-radius:0 0 14px 14px;
  box-shadow:0 -2px 6px var(--shadow);
  margin-top:24px;
}

.site-footer p {
  margin:4px 0;
  font-size:14px;
  line-height:1.5;
}

.site-footer strong {
  color:var(--accent1);
}
