.news-item {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
  background: #fff;
  border-right: 2px solid #eee;
  border-bottom: 2px solid #eee;
  min-height: 25rem;
}

.news-item .image {
  width: 33%;
  overflow: hidden;
}

.news-item .image img {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.news-item:hover .image img {
  transform: scale(1.05);
}

.news-item .content {
  width: 66%;
  padding: 1rem 1rem 7rem 1rem;
  position: relative;
}

.news-item .news-footer {
  position: absolute;
  bottom: 1rem;
  display: flex;
  width: 100% !important;
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item .entry-title {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0.8rem 0;
  line-height: 1.8rem;
  color: var(--secondary);
  width: 100%;
}

span.entry-date {
  color: #a4a4a4;
  font-style: italic;
}

.excerpt {
  margin-bottom: 5rem;
}


ul.tags {
  display: flex;
  list-style: none;
  margin: 0;
  position: absolute;
  right: 1rem;
  bottom: 0;
}

.tags li {
  margin-left: 0.5rem;
  border-bottom: 0;
  
}

.tags a {
  padding: 1rem;
  background: #606c76;
  display: block;
  color: #fff;
  font-size: 1.2rem;
  border-radius: .4rem;
  height: 4.6rem;
  width: 4.6rem;
  text-align: center;
  text-decoration: none;
  border-bottom: 0;
}

aside .tags {
  position: relative;
    bottom: auto;
    top: auto;
    margin-bottom: 3rem;

}


.button {
  color: #fff;
  background-color: var(--primary);
  padding: 1rem;
  text-decoration: none;
}

.tree-accordion {
  line-height: 1.5;
}

.tree-accordion dt,
.tree-accordion dd {
}

.tree-accordion dt a {
  display: block;
}

.tree-accordion .fa {
  color: #666666;
}

.tree-accordion dd a {
}

.tree-accordion dd span {
  display: block;
}

.tree-accordion dd {
}

.wp-caption .wp-caption-text {
  font-size: 1.2rem;
  position: absolute;
  margin-top: 0rem;
  background: var(--primary);
  color: #fff;
  text-align: left;
  padding: 1rem 4rem 1rem 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
.pagination {
  display: flex;
  justify-content: center;
}

.pagination a, .pagination .current, .dots {
  background: #606c76;
  color: #fff;
  padding:1rem 2rem;
  margin-right:0.123rem;
  border-radius: .4rem;
  cursor: pointer;
  text-decoration: none;
}

.pagination .current {
  background: var(--primary);
}

@media screen and (max-width:37.5em) {
  .news-item {
    flex-wrap: wrap;
  }

  .news-item .image {
    width: 100%;
  }

  .news-item .content {
    width: 100%;
  }

}