.site-footer {
  display: flex;
  justify-content: center;
  background: var(--main-green, #395935);
  color: #f3f4f6;
  padding: 72px 0 64px;
}

.site-footer__inner {
  width: min(1200px, 100%);
  padding: 0 var(--wp--custom--container--pad, clamp(24px, 5vw, 48px));
}

.site-footer__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.site-footer__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  width: 100%;
}

.site-footer__headline {
  margin: 0;
  color: var(--white, #f3f4f6);
  font-family: "Teachers", var(--wp--preset--font-family--inter), sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.site-footer__description {
  margin: 0;
  color: #f3f4f6;
  font-family: var(--wp--preset--font-family--inter, "Inter", sans-serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 520px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
  padding-bottom: 8px;
}

.site-footer__links-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
}

.site-footer__links-group--secondary {
  gap: 6px;
}

.site-footer__link {
  display: flex;
  padding: 8px 0;
  text-transform: uppercase;
  color: var(--white, #f3f4f6);
  font-family: var(--wp--preset--font-family--inter, "Inter", sans-serif);
  font-size: var(--text-sizes-text-small, 18px);
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  opacity: 0.75;
}

.site-footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(243, 244, 246, 0.6);
}

.site-footer__credits-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.site-footer__credit-text {
  margin: 0;
  color: #f3f4f6;
  font-family: var(--wp--preset--font-family--inter, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer__social {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3f4f6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  opacity: 0.7;
}

.site-footer__social-link svg,
.site-footer__social-link img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 720px) {
  .site-footer {
    padding: 40px 0;
  }
  .site-footer__inner {
    padding: 0 24px;
  }
  .site-footer__headline {
    font-size: 32px;
  }
  .site-footer__links {
    gap: 16px;
  }
  .site-footer__links-group {
    width: 100%;
  }
  .site-footer__credits-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .site-footer__social {
    margin-left: 0;
  }
}
