.list-posts-text .list-posts-text__title {
  color: #000;
  font-family: "Lora", serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.list-posts-text .list-posts-text__item__content {
  width: fit-content;
  display: block;
}
.list-posts-text .list-posts-text__item__content:hover {
  opacity: 0.75;
}
.list-posts-text .list-posts-text__item__content:hover .list-post-title {
  text-decoration: underline;
}
.list-posts-text .list-posts-text__item__content .list-post-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
}
.list-posts-text .list-posts-text__item__content p {
  font-size: 0.875;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
}
.list-posts-text .list-posts-text__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.list-posts-text .list-posts-text__more a {
  border: none;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1.25rem;
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
}
.list-posts-text .list-posts-text__more a:hover {
  filter: contrast(0.75);
}
.list-posts-text .list-posts-text__more a svg {
  width: 33px;
  height: 29px;
}