.feature-card {
  display: block;
}
.feature-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.feature-card__image-wrapper {
  background-color: #8c8c8c;
  width: 100%;
  aspect-ratio: 324/405;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-card__subtitle {
  color: #737373;
  letter-spacing: 0.6px;
  line-height: 1;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
}
.feature-card__title {
  color: #212121;
  line-height: 1.8;
  font-family: "Ryo Gothic PlusN", sans-serif;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.feature-card__title > br {
  display: none;
}
.feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card__tag {
  background-color: #f2f2f2;
  color: #737373;
  padding: 0 12px;
  line-height: 24px;
  border-radius: 2px;
  font-family: "Ryo Gothic PlusN", sans-serif;
}

.fs-l-page {
  padding-top: 86px;
}
@media screen and (min-width: 768px) {
  .fs-l-page {
    padding-top: 92px;
  }
}
@media screen and (min-width: 1024px) {
  .fs-l-page {
    padding-top: 50px;
  }
}

.features {
  padding: 32px 5vw 96px;
}
@media screen and (min-width: 768px) {
  .features {
    padding: 48px 48px 96px;
  }
}
.features__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .features__inner {
    gap: 48px;
  }
}
.features__title {
  color: #212121;
  line-height: 1.5;
  font-family: "Ryo Gothic PlusN", sans-serif;
  margin: 32px 0;
}
@media screen and (min-width: 768px) {
  .features__title {
    margin: 48px 0;
  }
}
.features__categories {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  position: sticky;
  top: 50px;
  left: 0;
  z-index: 90;
  background-color: #fff;
  transition: padding 0.3s, box-shadow 0.3s;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.features__categories::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .features__categories {
    gap: 16px;
    overflow-x: initial;
  }
}
.features__categories.is-stuck {
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .features__categories.is-stuck {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.features__category {
  flex-shrink: 0;
}
.features__category-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  color: #737373;
  text-decoration: none;
  line-height: 1.5;
  border-radius: 2px;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Ryo Gothic PlusN", sans-serif;
  white-space: nowrap;
}
.features__category-link--active {
  background-color: #f2f2f2;
  color: #212121;
}
.features__category-link:hover {
  background-color: rgba(242, 242, 242, 0.5);
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.features__action {
  display: flex;
  justify-content: center;
}
.features__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 96px;
  color: #000;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  transition: background-color 0.3s;
  font-family: "Ryo Gothic PlusN", sans-serif;
}
.features__button:hover {
  background-color: #f9f9f9;
}/*# sourceMappingURL=style.css.map */