/* footer.css — sticky footer (in document flow, always at bottom of page) */
.footer {
  background-color: #2c3441;
  width: 100%;
  color: #fff;
  position: relative;
  margin-top: auto;
  flex-shrink: 0;
  box-shadow: 0 -1px 6px rgba(0,0,0,0.05);
}

.footer .wrapper {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  gap: 12px;
}

/* Brand / left side */
.footer .brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

/* Footer menu / links on the right */
.footer .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer .menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cdd4df;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.footer .menu a:hover,
.footer .menu a:focus {
  color: #eaebec;
  background-color: #242a35;
}

.footer .small {
  color: #9aa2ab;
  font-size: 13px;
  font-weight: 400;
}

/* Responsive: stack footer content on small screens */
@media screen and (max-width: 768px) {
  .footer .wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 12px;
  }
  .footer .brand {
    margin-bottom: 6px;
  }
  .footer .menu {
    justify-content: center;
    gap: 8px;
  }
}