.aeo-geo-section {
  padding: clamp(58px, 7vw, 96px) 0;
  color: #171615;
  background: #f4f8f5;
}

.aeo-geo-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.aeo-geo-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .5fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 36px);
}

.aeo-geo-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #4f6b5f;
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.aeo-geo-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #c9a961;
}

.aeo-geo-head h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

.aeo-geo-head p,
.aeo-answer-card p {
  margin: 0;
  color: #5f6861;
  font-size: 1rem;
  line-height: 1.76;
}

.aeo-answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.aeo-answer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(23, 22, 21, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 22, 21, .06);
}

.aeo-answer-card h3 {
  margin: 0 0 10px;
  color: #171615;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
}

.aeo-static-links {
  margin-top: clamp(18px, 3vw, 30px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(23, 22, 21, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.aeo-static-links h3 {
  margin: 0;
  color: #171615;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
}

.aeo-static-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.aeo-static-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 22, 21, .12);
  border-radius: 8px;
  color: #171615;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.aeo-static-link-grid a::after {
  content: ">";
  color: #4f6b5f;
  font-weight: 900;
}

.aeo-static-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 107, 95, .34);
  box-shadow: 0 12px 26px rgba(23, 22, 21, .07);
}

@media (max-width: 1060px) {
  .aeo-answer-grid,
  .aeo-static-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .aeo-geo-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .aeo-answer-grid,
  .aeo-static-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .aeo-geo-inner {
    width: min(100% - 28px, 1180px);
  }

  .aeo-answer-card,
  .aeo-static-links {
    padding: 20px;
  }
}
