main {
  height: fit-content;
}

.news-container {
  padding: clamp(80px, 6vw, 100px) clamp(30px, 6vw, 100px);
  height: fit-content;
}

.news-message {
  width: 100%;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  row-gap: 20px;
  column-gap: 20px;
}
.news-grid a {
  text-decoration: none;
}
.news-grid .news-item {
  width: 100%;
  background-color: #2b2d36;
  color: #fff;
  border-bottom: 1px solid #3a3d47;
  border-right: 1px solid #3a3d47;
  padding: 50px 30px 10px 30px;
  margin: auto;
}
.news-grid .news-item .banner {
  width: 100%;
  height: 200px;
}
.news-grid .news-item .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: none;
  transform-origin: center;
  transform: none;
  opacity: 1;
}
.news-grid .news-item p {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  height: 54px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-post-container .entry-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.single-post-container .entry-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.single-post-container .entry-header .entry-title {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  line-height: 130%;
}
.single-post-container .entry-header .entry-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #888;
  width: 100%;
  justify-content: end;
}
.single-post-container .entry-header .entry-meta span {
  color: #888;
}
.single-post-container .entry-header .post-thumbnail {
  max-width: 500px;
  height: auto;
}
.single-post-container .entry-content a {
  color: #ffffff;
}
.single-post-container .post-navigation {
  margin-top: 40px;
}
.single-post-container .post-navigation a {
  color: #fff;
}

@media (min-width: 501px) {
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    width: 200px;
  }
  .post-navigation .nav-previous a,
  .post-navigation .nav-next a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .post-navigation .nav-next {
    text-align: right;
  }
}
@media (max-width: 500px) {
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    width: 150px;
  }
}

/*# sourceMappingURL=news.css.map */
