/* --- FEATURES GRID --- */


.features-grid {
  /* Creates a responsive grid: min 250px wide, expands to fill space */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.feature-item {
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s ease;
}

/* Subtle hover effect */
.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--muted-color);
  line-height: 1.6;
}

/* Icons styling */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.5rem;
  color: var(--pico-primary); /* Uses the primary theme color */
  border-radius: 50%;
  
  /* Optional: A very subtle background for the icon */
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.5; /* Slightly thinner lines for elegance */
}