footer {
  padding: 3rem 0;
  border-top: 1px solid #777;
  background-color: #e0e0e0;
}


.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr; /* 👈 even out spacing — left gets a bit more */
  gap: 1rem;
  max-width: 1200px; /* bring it in slightly tighter */
  margin: 0 auto;
  padding: 0 0 2rem 6rem;
  border-bottom: 1px solid #777;
}

.footer-left p {
  padding-right: 8rem; /* 🔥 give it space to the right */
 
}



.footer-left h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #111;
}




.footer-center h4,
.footer-right h4 {
  margin-bottom: 2rem;
}

.footer-center ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center li,
.footer-right li {
  margin-bottom: 0.5rem;
}

.footer-center a,
.footer-right a {
  text-decoration: none;
  color: #111;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #111;
}

.footer-bottom a {
  color: #111;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }

  .footer-left p {
    padding-right: 0;
  }

  .footer-center,
  .footer-right {
    margin-top: 2rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 1rem 1rem 0 1rem;
  }
}
/* Footer phone note with arrow — scoped to footer only */
.footer-right .footer-phone {
  list-style: none;
}

.footer-right .footer-phone__link {
  text-decoration: underline;
}

/* little left arrow pointing at the number */
.footer-right .footer-phone__note {
  color: #000;                  /* lighter than body text in footer */
  font-size: .9rem;
  margin-left: .5ch;
  position: relative;
  white-space: nowrap;
}
.footer-right .footer-phone__note::before {
  content: "←";                    /* unicode left arrow */
  margin-right: .35ch;
  position: relative;
  top: -0.02em;                    /* tiny vertical nudge */
}

/* Stack nicely on narrow screens */
@media (max-width: 520px) {
  .footer-right .footer-phone__note {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
  .footer-right .footer-phone__note::before {
    content: "↑";                  /* arrow points up when stacked */
    margin-right: .35ch;
  }
}

/* If you prefer Font Awesome icon instead of unicode:
.footer-right .footer-phone__note::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f060";   /\* fa-arrow-left *\/
  margin-right: .35ch;
  position: relative;
  top: -0.02em;
}
*/
