/**
 * GS Homepage — Feature Block
 * Two-column: body text left, facts panel right.
 */

.gs-feature {
  border-bottom: 1.5px solid #111;
}
.gs-feature__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gs-feature__left {
  padding: 48px 48px 48px 0;
  border-right: 1.5px solid #111;
}
.gs-feature__right {
  padding: 48px 0 48px 48px;
}
.gs-feature__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.25;
}
.gs-feature__body {
  font-size: 15px;
  color: #000;
  line-height: 1.75;
  margin-bottom: 24px;
}
.gs-feature__facts { display: flex; flex-direction: column; gap: 12px; }
.gs-feature__fact {
  padding: 16px 20px;
  background: #fafafa;
  border: 1.5px solid #111;
  border-radius: 12px;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}
.gs-feature__fact strong { display: block; font-size: 15px; color: #000; margin-bottom: 4px; }

/* ── FEATURE RESPONSIVE ── */
@media (max-width: 640px) {
  .gs-feature__inner { grid-template-columns: 1fr; }
  .gs-feature__left { padding: 36px 0; border-right: none; border-bottom: 1.5px solid #111; }
  .gs-feature__right { padding: 36px 0; }
}
