.feature-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-image {
  margin-bottom: 1rem;
  text-align: center;
}

.feature-image img {
  width: auto;
  height: 4em;
  border-radius: 4px;
}

.card-image img {
  width: 9em;
  height: 9em;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.feature-title,
.card-title,
.card-subtitle {
  margin: 0.5rem 0;
  text-align: center;
}

.feature-content,
.card-content {
  color: #666;
}

.card-links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  margin-top: auto;
  min-height: 1.5rem;
}

.card-link {
  text-decoration: none;
  color: #666;
}

.card-link:hover {
  text-decoration: underline;
}

.feature-separator {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0)
  );
  margin: 1rem auto;
  width: 80%;
}
