.fc-taxonomy {
  background: #fff;
  padding: 48px 0;
}

.fc-container {
  max-width: 1128px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fc-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-title {
  font-family: "DB_HeaventRounded", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.fc-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.fc-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #dadada;
  font-family: "DB_HeaventRounded", sans-serif;
  font-size: 20px;
  color: rgba(34, 34, 34, 0.9);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.fc-tab--active {
  background: #0080ff;
  border-color: #0080ff;
  color: #fff;
}
.fc-tab:not(.fc-tab--active):hover {
  border-color: #0080ff;
  color: #0080ff;
}

.fc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.fc-card__image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1700/685;
  width: 100%;
}

.fc-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.fc-card__img--placeholder {
  background: #f0f0f0;
}

.fc-card:hover .fc-card__img {
  transform: scale(1.03);
}

.fc-card__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-card__title {
  font-family: "DB_HeaventRounded", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: #222;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-card__title a {
  color: inherit;
  text-decoration: none;
}
.fc-card__title a:hover {
  color: #0080ff;
}

.fc-card__date {
  font-family: "DB_Heavent", sans-serif;
  font-size: 20px;
  color: #454545;
  margin: 0;
  letter-spacing: 0.2px;
}/*# sourceMappingURL=style-d.css.map */