/* =========================
   Footer – Layout & Structure ONLY
========================= */

.site-footer {
  margin-top: 48px;
  font-size: .95rem;
  background: var(--vcom-footer-bg);
  color: var(--vcom-primary);
}

/* =========================
   Footer main
========================= */

.footer-main {
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Footer columns
========================= */

.footer-col h4 {
  margin: 0 0 .6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vcom-footer-heading);
}

.footer-col p {
  margin: 0 0 .75rem;
  line-height: 1.5;
  color: var(--vcom-footer-text-muted);
}

/* =========================
   Lists & links
========================= */

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin: 0 0 .45rem;
}

.site-footer a {
  color: var(--vcom-footer-link);
  text-decoration: none;
  transition: color .15s ease, text-decoration .15s ease;
}

.site-footer a:hover {
  color: var(--vcom-footer-link-hover);
  text-decoration: underline;
}

/* =========================
   Footer meta
========================= */

.footer-meta {
  border-top: 1px solid var(--vcom-border);
  padding: 14px 0;
  font-size: .85rem;
  background: var(--vcom-footer-meta-bg);
}

.footer-meta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 640px) {
  .footer-meta__inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer-meta small {
  color: var(--vcom-footer-text-muted);
}

.footer-meta__right img {
  max-height: 40px;
  width: auto;
  display: block;
}