/* Static-build fixes for clothesforgood.com.au */

/* Footer contact list: the theme zeroes padding on the last <li> and nudges its
   icon to left:13px, relying on a companion rule that pads the anchor by 55px --
   but that rule is scoped to .main-footer.style-two, a class this footer does not
   carry. The gutter is therefore never created and the envelope glyph renders on
   top of the "hello@..." text. Restore the same 40px gutter the address line uses.
   Selector specificity deliberately mirrors the theme's own. */
.main-footer .address-widget.style-two li:last-child {
  padding-left: 40px;
}
.main-footer .address-widget.style-two li:last-child .icon {
  left: 0;
}
