/* SydneyLove footer contact + Instagram fix
   Fixes the question-mark separator and makes the Instagram link look intentional.
   Footer only. Does not affect header/nav logos. */

.footer .footer-links,
.footer-nav,
.site-footer .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer .footer-link,
.footer a.footer-link,
.site-footer a.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
}

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

.footer .footer-separator,
.site-footer .footer-separator {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.38);
  display: inline-block;
  flex: 0 0 auto;
}

/* Do not use text glyphs like bullets, middle dots, icons, or unsupported characters as separators.
   This CSS divider avoids the little question-mark problem. */

.footer .instagram-link,
.site-footer .instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
}

.footer .instagram-link:hover,
.site-footer .instagram-link:hover {
  text-decoration: underline;
}

.footer .instagram-icon,
.site-footer .instagram-icon {
  width: 28px !important;
  height: 28px !important;
  display: inline-block;
  flex: 0 0 28px !important;
  border-radius: 7px;
}

@media (max-width: 640px) {
  .footer .footer-links,
  .footer-nav,
  .site-footer .footer-links {
    justify-content: flex-start;
    gap: 10px;
  }

  .footer .footer-separator,
  .site-footer .footer-separator {
    height: 16px;
  }

  .footer .instagram-icon,
  .site-footer .instagram-icon {
    width: 26px !important;
    height: 26px !important;
    flex-basis: 26px !important;
  }
}