@charset "UTF-8";

.news-block {
  display: flex;
  flex-wrap: wrap;
}

.news-item {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 0 15px 30px 15px;
  box-sizing: border-box;
  margin-bottom: 30px;
  position: relative;
}

.news-item__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-item__link>a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-item__eyecatch {
  width: 100%;
  height: auto;
  position: relative;
}

.news-item__eyecatch::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.news-item__eyecatch>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.news-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 5px 0 5px;
  box-sizing: border-box;
}

.news-lead {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.news-lead::before {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50vh;
  background: #ccc;
  margin-right: 8px;
}

.news-lead>p {
  width: calc(100% - 14px);
  font-size: 1.6rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-text {
  display: block;
  flex: 1;
  margin-bottom: 14px;
}

.news-text-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.3rem;
}

.news-taxonomy {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.news-taxonomy-date {
  margin-right: 10px;
}

.news-taxonomy-category {
  padding: 0 14px;
  background: #ccc;
  border-radius: 50vh 50vh 50vh 0;
}

.news-taxonomy-category>a {
  color: #fff;
}

.page-numbers {
  border-radius: 50vh;
  font-size: 1.3rem;
}

.prev.page-numbers,
.next.page-numbers {
  width: auto;
  border: none;
}

@media screen and (max-width:786px) {
  .news-item {
    width: 100%;
  }
}

@media screen and (max-width:480px) {
  .news-item {
    padding: 0 0 30px 0;
  }

  .news-lead>p {
    width: 100%;
    font-size: 1.4rem;
  }

  .news-lead::before {
    display: none;
  }
}