
/* ==========================================================================
   Exclusive Networks Footer — Standalone CSS (no HubSpot dependencies)
   Updated: restore left/right padding, keep prior adjustments.
   ========================================================================== */

.exn-footer {
  --bg: #07072b;        /* deep navy */
  --fg: #ffffff;
  --muted: #cccccc;     /* link + legal text grey */
  --muted-strong: #9aa3af; /* copyright line slightly darker grey */
  --icon: #a0006d;      /* magenta/purple for social glyphs */
  --tile: #ffffff;

  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.exn-footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 53px 40px;            /* +25px top/bottom, restore 40px left/right */
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr; /* left/right */
  align-items: start;
}

@media (max-width: 768px) {
  .exn-footer__wrap {
    grid-template-columns: 1fr;
    padding: 49px 20px;          /* +25px top/bottom, restore 20px left/right */
  }
}

.exn-footer__left { display: grid; gap: 14px; }
.exn-footer__right { text-align: right; }

/* ---- Social tiles (white rounded squares, magenta icons) ---- */
.exn-social {
  display: inline-flex;
  gap: 10px;
}

/* 5px bigger overall tile */
.exn-social__item {
  width: 31px; height: 31px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 6px;
  background: var(--tile);
  box-shadow: 0 1px 2px rgba(0,0,0,0.16);
  transition: transform .2s ease, box-shadow .2s ease, outline-color .2s ease;
  outline: 2px solid transparent; outline-offset: 2px;
}

/* scale glyph to fit the increased tile */
.exn-social__item svg { width: 16px; height: 16px; fill: var(--icon); }

.exn-social__item:hover { transform: translateY(-1px); box-shadow: 0 3px 8px rgba(0,0,0,0.28); }
.exn-social__item:focus-visible { outline-color: var(--icon); }

/* ---- Logo: lock to 150x54 and maintain spacing below social container ---- */
.exn-logo { margin-top: 15px; }

.exn-logo img {
  width: 150px !important;
  height: 54px !important;
  display: block;
  max-width: none !important;
  object-fit: contain;
  opacity: 0.9;
}

/* ---- Right column text ---- */
.exn-hashtag {
  margin: 0 0 50px 0;  /* +25px more bottom spacing between hashtag and copyright */
  font-size: 16px; font-weight: 700;
  color: var(--fg);
}

.exn-legal {
  margin: 0 0 6px 0;
  color: var(--muted-strong);
}

.exn-links {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.exn-links a {
  color: var(--muted);
  text-decoration: none;
}

.exn-links a:hover,
.exn-links a:focus {
  text-decoration: underline;
}

.exn-sep {
  display: inline-block;
  margin: 0 8px;
  color: var(--muted);
}

/* ---- Optional: make the content vertically centred a touch on tall screens ---- */
@media (min-width: 992px) {
  .exn-footer__wrap { align-items: center; }
}
``
