@charset "utf-8";
.voice__category-wrapper .webgene-blog {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.voice__category {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: 1.2;
  color: #232323;
  min-width: 150px;
  padding: 10px;
  border-radius: 5px;
  background: #e8eef2;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.voice__category.is-active,
.voice__category.is-active:hover {
  background: #2b61ac;
  color: var(--color-white) !important;
}


.voice__main-container .webgene-blog {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 30px;
  position: relative;
}

@media screen and (min-width: 600px) {
  .voice__main-container .webgene-blog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1000px) {
  .voice__main-container .webgene-blog {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
  }
}

.voice__item {
  margin-bottom: 50px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.voice__item-link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.voice__item-image {
  aspect-ratio: 350/210;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
}

.voice__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__item-title {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(22.4 / 14);
}

.voice__item-link .c-category-pale {
  margin-top: 15px;
  width: fit-content;
}
