/* =========================================================
   Footer navigation refinements for Rock Bridge Automotive
   Add this AFTER america250.css in the Dreamweaver template.
   ========================================================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr 1fr;
  gap: 2rem;
}

.footer-links-wide {
  width: 100%;
}

.footer-link-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
}

.footer-links li {
  margin-bottom: 8px;
}

.site-footer .footer-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  display: inline-block;
  width: auto;
  margin-bottom: 0;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus {
  color: #ffd7dc;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-columns {
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-columns {
    flex-direction: column;
    gap: 20px;
  }
}
