/* ===== Street Smart Footer ===== */
.site-footer--streetsmart {
  margin-top: var(--space-5xl, 64px);
}

.site-footer--streetsmart .footer-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.footer-org {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  max-width: min(100%, 260px);
  height: auto;
  display: block;
}

.footer-address {
  font-style: normal;
}

.footer-address p {
  font-size: 0.95rem;
  margin: 6px 0;
  color: var(--bs-green-darker);
}

.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-address a[href^="tel"],
.footer-address a[href^="mailto"] {
  color: var(--bs-green-darker);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-address a[href^="tel"]:hover,
.footer-address a[href^="mailto"]:hover {
  color: var(--bs-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-address .separator {
  color: var(--bs-green-darker);
  font-size: 1.2em;
  line-height: 1;
}

/* Social media links */
.footer-social {
  margin-top: 8px;
}

.footer-social__list {
  display: flex;
  gap: 12px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social__item {
  margin: 0;
}

.footer-social__link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--njtpa-white);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-social__link:hover {
  background: var(--bs-green);
}

.footer-social__icon {
  width: 20px;
  height: 20px;
  line-height: 0;
}

.footer-social__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer navigation columns */
.footer-links-flex {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--bs-green-darker);
  letter-spacing: 0.02em;
}

.footer-col-title a {
  color: inherit;
  text-decoration: none;
}

.footer-col-title a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-menu,
.footer-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-menu a {
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-menu a:hover {
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Footer bottom bar */
.footer-bar {
  font-size: var(--font-size-xs);
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
}

.footer-bar-inner {
  display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--njtpa-gray-medium);
    padding: 0px;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-copy {
  /* color: rgba(255, 255, 255, 0.7); */
}

.footer-utility-menu,
.footer-utility-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-utility-menu {
  display: flex;
  gap: 24px;
}

.footer-utility-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-utility-menu a:hover {
  color: var(--njtpa-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Accessibility */
.site-footer--streetsmart a:focus-visible {
  outline: 2px solid var(--bs-green-darker);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive design */
@media (max-width: 1024px) {
  .site-footer--streetsmart .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

}

@media (max-width: 768px) {
  .footer-links-flex {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .footer-utility-menu {
    flex-wrap: wrap;
    gap: 16px;
  }
}