/* css styles */


/* Footer icon row */
.social-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;          /* force same row */
  justify-content: center;
  align-items: center;
  gap: 24px;                  /* white space between icons */
  white-space: nowrap;        /* extra protection */
}

/* Keep each link inline in the row */
.social-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Icon size */
.footer-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
