/*
 * Features block — list of project features with title on top
 * and description below. The description can become a clickable link.
 */

.features {
  display: flex;
  flex-direction: column;
  gap: var(--features-gap, var(--spacing-md));
  list-style: none;
  margin: 0;
  padding: 0;
}

.features-item {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.features-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.features-description {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.features-description--link {
  text-decoration: underline;
  transition: opacity 0.15s ease;
}

.features-description--link:hover,
.features-description--link:focus-visible {
  opacity: 0.75;
}
