/* ================================================================
   YOURSAY THEME — footer.css
   ================================================================ */

.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

/* ── Brand col ───────────────────────────────────────────────── */
.footer__col--brand .footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.footer__col--brand .footer__logo img { height: 45px; width: auto; }
.footer__col--brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.footer__socials a:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

/* ── Links cols ──────────────────────────────────────────────── */
.footer__col h3 {
  font-family: var(--font-nav);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer__col ul li a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* ── Contact list ────────────────────────────────────────────── */
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
}
.footer__contact svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer__contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--color-accent); }

/* ── Bottom bar ──────────────────────────────────────────────── */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer__bottom p {
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}
