#features-overview {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 40%);
}

.feature-index-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.feature-index-chip {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #d7dce4;
  color: #2c3e50;
  background: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.feature-index-chip.is-soon {
  border-color: #e0b200;
  background: #fffdf2;
}

.feature-index-chip:hover {
  border-color: #0d6efd;
  color: #0d6efd;
  box-shadow: 0 3px 10px rgba(13, 110, 253, 0.15);
  text-decoration: none;
}

.feature-index-chip .soon-pill {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.68rem;
  color: #5a4500;
  background: #ffe08a;
  vertical-align: middle;
}

.feature-section {
  scroll-margin-top: 90px;
}

.feature-section.is-coming-soon {
  border-left: 4px solid #e0b200;
}

.feature-shot {
  margin: 0 auto;
  max-width: 980px;
}

.feature-shot img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid #dfe4ea;
  background: #f7f9fc;
}

.feature-shot figcaption {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: #6c757d;
}

.feature-placeholder {
  border: 1px dashed #cfd6df;
  border-radius: 10px;
  background: #f9fbfd;
  color: #4c5b6a;
  padding: 0.95rem;
  font-size: 0.9rem;
}

.feature-placeholder code {
  color: #b42318;
}

@media (max-width: 576px) {
  .feature-index-grid {
    grid-template-columns: 1fr;
  }
}
