.features {
  display: grid;
  gap: 1.5rem;
}

.features h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.03em;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-item {
  background: #fffaf1;
  border: 3px solid #1f2937;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 8px 8px 0 rgba(31, 41, 55, 0.95);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-item:hover,
.feature-item:focus-within {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(31, 41, 55, 0.95);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #ffb703;
  border: 3px solid #1f2937;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.feature-item p {
  color: #5b6472;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}
