@import url("pages.css");
@import url("project.css");

.page-memorychain .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.page-memorychain .feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-memorychain .feature-card svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--blue);
}

.page-memorychain .hero-spotlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.page-memorychain .spotlight-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-memorychain .spotlight-card svg {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--text);
}

.page-memorychain .spotlight-card h4 {
  font-size: 1rem;
  margin: 0;
}

.page-memorychain .spotlight-card p {
  color: var(--muted);
  line-height: 1.65;
}

