.page-news__main {
  padding-block: 60px;
  padding-inline: 20px;
}

.page-news__inner {
  margin-inline: auto;
  max-width: 900px;
}

.page-data__category {
  align-items: center;
  display: flex;
  justify-content: center;
}
.page-data__category > .webgene-blog {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 5px;
}

.page-data__category-link {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(26 / 18);
  min-width: 170px;
  opacity: 0.6;
  overflow: hidden;
  padding: 5px 10px 5px 15px;
  padding: 5px 20px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}
.page-data__category-link::after {
  background-color: #ef0910;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  width: 6px;
}
.page-data__category-link:hover, .page-data__category-link.is-select {
  opacity: 1;
}
.page-data__category-link:hover::after, .page-data__category-link.is-select::after {
  opacity: 1;
}

.c-news > .webgene-blog {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
}

.c-news__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: flex;
  flex-direction: column;
  padding-block: 20px;
  padding-inline: 10px 45px;
  position: relative;
  row-gap: 10px;
  transition: color 0.3s ease;
}
.c-news__item:hover {
  color: #ef0910;
  opacity: 1;
}
.c-news__item::after {
  background-image: url(../images/arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  flex-shrink: 0;
  height: 12px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(0px, -50%);
  transition: transform 0.3s ease;
  width: 12px;
}

.c-news__contents {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: auto;
  width: 100%;
}

.c-news__title {
  color: currentColor;
  font-size: 14px;
  line-height: 1.58;
}

.c-date__head {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 15px;
}

.c-date__day {
  color: currentColor;
  font-size: 15px;
  line-height: calc(21 / 15);
  opacity: 0.51;
}

.c-date__cate {
  background-color: rgba(255, 255, 255, 0.2);
  color: currentColor;
  font-size: 12px;
  line-height: 1.5;
  padding: 1px 15px;
}

.page-news__list {
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .page-news__main {
    padding-bottom: 80px;
    padding-top: 97px;
  }
  .page-data__category .webgene-item {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .page-data__category .webgene-item:not(:first-child) {
    border-left: 1px dotted rgba(255, 255, 255, 0.3);
  }
  .c-news__item {
    align-items: center;
    -moz-column-gap: 17px;
         column-gap: 17px;
    flex-direction: row;
    padding: 19px 50px 20px 16px;
    row-gap: 15px;
  }
  .c-news__contents {
    align-items: center;
    flex-direction: row;
    gap: 25px;
  }
  .c-date__head {
    max-width: 214px;
    width: 100%;
  }
  .page-news__list {
    margin-top: 100px;
  }
  .page-news__list .c-news__item {
    padding: 30px 50px 28px 16px;
  }
}