/* =========================================================
   Jijiboo — shared chrome footer for auth HTML design
   ========================================================= */

.jjb-chrome-footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
  margin-top: auto;
}

.jjb-chrome-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.jjb-chrome-footer .footer-brand p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
}

.jjb-chrome-footer .footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
}

.jjb-chrome-footer .footer-brand .brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.jjb-chrome-footer .footer-col b {
  font-family: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
  font-size: 15px;
  display: block;
  margin-bottom: 14px;
}

.jjb-chrome-footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jjb-chrome-footer .footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

.jjb-chrome-footer .footer-col a:hover {
  color: var(--sky);
}

.jjb-chrome-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.jjb-chrome-footer .footer-bottom a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .jjb-chrome-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .jjb-chrome-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
