/* Compact global footer */
.ga-footer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(22, 58, 50, 0.12);
  background: #ffffff;
  color: #163a32;
  font-family: "DM Sans", Arial, sans-serif;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 64px) 24px;
}

.ga-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, max-content));
  column-gap: clamp(32px, 6vw, 96px);
  row-gap: 0;
  justify-content: start;
}

.ga-footer-label {
  display: block;
  margin: 0 0 12px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 58, 50, 0.45);
}

.ga-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.ga-footer a,
.ga-footer address {
  color: #163a32;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.ga-footer a:hover,
.ga-footer address:hover {
  opacity: 0.62;
}

.ga-footer-collab {
  position: relative;
  padding-left: 10px;
}

.ga-footer-collab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #163a32;
}

.ga-footer svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  margin-top: 2px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-footer address {
  font-style: normal;
  line-height: 1.6;
  color: #163a32;
}

.ga-footer-bottom {
  width: 100%;
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: 18px;
  border-top: 1px solid rgba(22, 58, 50, 0.1);
}

.ga-footer-bottom-inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 58, 50, 0.45);
}

.ga-footer-bottom-inner a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 58, 50, 0.45);
}

@media (max-width: 600px) {
  .ga-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ga-footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
  }
}
