.site-footer {
  background-color: var(--colour-primary);
  color: #ffffff;
  margin-top: 80px;
  padding-top: 60px;
}

.site-footer .container {
  max-width: var(--width-max, 1100px);
  margin: 0 auto;
  padding: 0 var(--spacing-l, 20px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-column a {
  color: #c7d0d6;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 0.9rem;
  color: #aab4ba;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons img:hover {
  opacity: 1;
}

.social-icons a:hover {
  color: white;
}

.social-icons a {
  color: #edead0; /* or var(--colour-text-light) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  width: 22px;
  height: 22px;
  display: block;
}

/* If you switch to inline SVG later, this is perfect: */
.social-icons svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}
