/**
 * Project: Driven Racing – Drupal 11 tweaks
 * File: css/footer.css
 *
 * Version: 2025-12-04 v1.0.0
 *
 * Change log:
 * - 2025-12-04 18:24  (v1.0.0) Initial split from home-header-footer.css
 *                     v1.3.55: move D7-style footer layout and typography
 *                     into this dedicated footer stylesheet unchanged.
 */

/******************************
 * FOOTER (D7 STYLE)
 ******************************/

#driven-footer {
  background: #2f2f2f;
  color: #f0f0f0;
  font-size: 12px;
}

#driven-footer .driven-footer-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: flex;
  justify-content: space-between;
}

#driven-footer .footer-col {
  flex: 1 1 0;
  margin-right: 40px;
}

#driven-footer .footer-col:last-child {
  margin-right: 0;
}

#driven-footer .footer-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

#driven-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

#driven-footer .footer-links li {
  margin-bottom: 4px;
}

#driven-footer a {
  color: #ffffff;
  text-decoration: none;
}

#driven-footer a:hover {
  text-decoration: underline;
}

#driven-footer .footer-contact-block p {
  margin: 0 0 8px;
}

#driven-footer .driven-footer-bottom {
  border-top: 1px solid #333333;
  padding: 10px 20px 15px;
  background: #212121;
}

#driven-footer .driven-footer-bottom .driven-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
  color: #aaaaaa;
}

@media (max-width: 768px) {
  #driven-footer .driven-footer-main {
    flex-direction: column;
  }

  #driven-footer .footer-col {
    margin-right: 0;
    margin-bottom: 20px;
  }

  #driven-footer .footer-col:last-child {
    margin-bottom: 0;
  }
}
