/* Features page cards and expandable evidence boundaries. */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.content-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

/* Editing/rendering is the core production path; the other cards cover discovery and control. */
.feature-grid > .feature-core {
  background: var(--tint);
  border-color: var(--indigo);
}

/* Search keeps Local AI prominent while its disclosure preserves the optional core workflow. */
.feature-grid > .feature-differentiator {
  background: linear-gradient(135deg, var(--cyan-wash), var(--paper));
  border-color: var(--cyan);
}

.content-card h2 {
  max-width: 28ch;
}

.feature-details {
  margin-top: 0;
  padding-top: 20px;
  font-size: 14px;
}

.feature-details p,
.content-card .feature-details p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.feature-details a {
  display: inline-block;
  margin-top: 12px;
  padding-block: 6px;
}

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

@media (max-width: 480px) {
  .content-card {
    padding: 24px 20px;
  }
}

.access-figure {
  margin-top: 20px;
}
.access-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.access-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}
