@charset "utf-8";
/* ==========================================================
   South Florida Community Health Centers
   footer_style.css
   Footer layout and styling
   ========================================================== */
/* ---------- Footer ---------- */
.site-footer {
  padding: 1.5rem 0 0.75rem;
  background-color: #234476; /* Marian Blue */
  color: #F0F8FF; /* White */
}
/* ---------- Contact Information ---------- */
.footer-contact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.25rem 1.5rem 1.25rem;
}
.footer-contact-item + .footer-contact-item {
  border-left: thin solid #EDF6CB; /* Cream */
}
.footer-contact-icon {
  display: block;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin: 0;
  object-fit: contain;
}
.footer-contact-text {
  min-width: 0;
}
.footer-contact-text p,
.footer-contact-text address {
  margin: 0;
  padding: 0;
  color: #F0F8FF; /* White */
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.footer-label {
  color: #6BAABC; /* Moonstone */
  font-size: 0.75rem;
}
/* ---------- Links ---------- */
.site-footer a,
.site-footer a:visited {
  color: #FFFFFF; /* Bright White */
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus {
  color: #6BAABC; /* Moonstone */
  text-decoration: none;
}
/* ---------- Organization and Legal Information ---------- */
.footer-information {
  padding: 1.25rem 1rem 0;
  text-align: center;
}
.footer-information p {
  margin-right: auto;
  margin-left: auto;
}
.footer-nonprofit {
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #6BAABC; /* Moonstone */
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
}
.footer-policy-links {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.3;
}
.footer-divider {
  display: inline-block;
  margin: 0 0.85rem;
  color: #EDF6CB; /* Cream */
}
.footer-copyright {
  margin-top: 0;
  margin-bottom: 0;
  color: #F0F8FF; /* White */
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
/* ---------- Responsive Layout ---------- */
@media (max-width: 767.98px) {
  .footer-contact-row {
    grid-template-columns: 1fr;
  }
  .footer-contact-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    padding: 0.75rem 1rem;
  }
  .footer-contact-item + .footer-contact-item {
    border-top: thin solid #EDF6CB; /* Cream */
    border-left: 0;
  }
  .footer-information {
    margin-top: 0.75rem;
    padding-right: 0;
    padding-left: 0;
  }
}
