/* GEO/AEO content blocks: visible, answer-first information for people and crawlers. */
.geo-answer-section,
.geo-problem-section {
  scroll-margin-top: 112px;
}

.geo-problem-grid,
.geo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.geo-problem-card,
.geo-faq-item {
  background: #fff;
  border: 1px solid #dde1e7;
  border-top: 3px solid #c7a400;
  border-radius: 10px;
  padding: clamp(22px, 3vw, 32px);
}

.geo-problem-card h3,
.geo-faq-item h3 {
  margin: 0 0 12px;
  color: #17191d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
}

.geo-problem-card p,
.geo-faq-item p {
  margin: 0;
  color: #4d535c;
  font-size: 16px;
  line-height: 1.75;
}

.geo-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.geo-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid #c8ccd2;
  border-radius: 999px;
  color: #22262c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.geo-link-list a:hover,
.geo-link-list a:focus-visible {
  background: #17191d;
  border-color: #17191d;
  color: #fff;
  outline: none;
}

.geo-source-note {
  margin-top: 22px;
  padding: 16px 18px;
  background: #f4f5f7;
  border-left: 3px solid #c7a400;
  color: #626872;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .geo-problem-grid,
  .geo-faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .geo-problem-card,
  .geo-faq-item {
    padding: 21px 19px;
  }
}
