/* ===== Confessionale Podcast – footer.css ===== */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  color: #fff;
  font-size: 14px;
  padding: 20px 0;
  margin-top:20px;
}


.site-footer p{
    color:white;
}
.site-footer .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
}

.site-footer a {
  color: var(--acc);
  text-decoration: none;
  margin-left: 6px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer .wrap {
    flex-direction: column;
    gap: 4px;
  }
}
