
/* =========================================
   FOOTER
========================================= */

.jy-footer {
  background: var(--color-bg);
  border-top: 1px solid #E2E8F0; /* premium divider */
  padding: 48px 0;
  font-size: 16px;
}

.jy-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT LINKS */

.jy-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jy-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jy-footer-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}

.jy-footer-links a:hover {
  color: var(--color-primary);
}

/* CENTER COPYRIGHT */

.jy-footer-copy {
  text-align: center;
  margin-top: 24px;
  color: #64748B; /* subtle neutral */
}

/* RIGHT BRAND */

.jy-footer-brand {
  font-weight: 700;
  color: var(--color-secondary);
}


@media (max-width: 768px) {

  .jy-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .jy-footer-links {
    align-items: center;
  }

}

