       /* ===== Lyceum Footer — scoped to .ly-site-footer ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

.ly-site-footer {
  --ly-primary: #2BAA83;
  --ly-primary-dark: #218E76;
  --ly-deep: #0B4E53;
  --ly-deeper: #063743;
  --ly-mint: #EAF8F3;
  --ly-soft: #F4FBF8;
  --ly-text: #12363D;
  --ly-muted: #60777B;
  --ly-border: #DCECE7;
  --ly-white: #FFFFFF;
  --ly-gold: #F5B942;
  font-family: Inter, Arial, sans-serif;
}

.ly-site-footer * { box-sizing: border-box; }
.ly-site-footer a { color: inherit; text-decoration: none; }
.ly-site-footer img { max-width: 100%; display: block; }

.ly-site-footer .ly-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ly-site-footer .ly-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 180px;
}

.ly-site-footer .ly-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ly-site-footer .ly-brand-name {
  font-family: Manrope, sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--ly-deep);
}

.ly-site-footer.ly-footer {
  background: var(--ly-deeper);
  color: rgba(255,255,255,.88);
  padding: 68px 0 24px;
}

.ly-site-footer .ly-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 36px;
}

.ly-site-footer .ly-brand-name { color: #fff; }
.ly-site-footer p { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.7; }
.ly-site-footer h3 { color: #fff; font-size: 14px; margin-bottom: 17px; font-family: Manrope, sans-serif; margin-top: 0; }

.ly-site-footer .ly-footer-links {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
.ly-site-footer .ly-footer-links a:hover { color: #fff; }

.ly-site-footer .ly-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.ly-site-footer .ly-socials { display: flex; gap: 9px; margin-top: 17px; }
.ly-site-footer .ly-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}

@media (max-width: 1024px) {
  .ly-site-footer .ly-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .ly-site-footer .ly-container { width: min(100% - 24px, 1180px); }
  .ly-site-footer .ly-footer-grid { grid-template-columns: 1fr 1fr; }
  .ly-site-footer .ly-footer-grid > :first-child { grid-column: 1 / -1; }
  .ly-site-footer .ly-footer-bottom { flex-direction: column; }
}