/* Shared marketing footer — include on pages that lack footer grid styles */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f8bc3b;
}
.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  font-size: 0.92rem;
}
.footer-section ul li a:hover {
  opacity: 1;
  color: #f8bc3b;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.9;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f8bc3b;
  text-decoration: none;
}
.footer-trademark {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.75;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 16px;
  }
  .footer-content {
    gap: 1.5rem;
  }
}
