/* Shared Layout Styles */

/* Footer Styles */
.footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 2.2rem 0 1.2rem 0;
  font-size: 1.01rem;
  color: #6b7280;
  width: 100%;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #4f8cff;
}

/* Responsive Footer */
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0 1rem;
  }
  
  .footer {
    padding: 1.5rem 0 1rem 0;
  }
}