.news-row {
  height: 300px;
}

.news-row a {
  width: 100%;
}

.news-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
}

.news-thumb img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  object-fit: cover;
}

.news-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-info .post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 24px;
}

.news-meta {
  font-size: 12px;
  color: #666;
}

.news-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}

.btn-read-more {
  background: #fff;
  border: 1px solid #a2a2a2;
  border-radius: 0;
  font-weight: bold;
  padding: 0.5rem 1rem;
  font-size: 14px;
  box-shadow: none;
  max-width: 100px;
}

.btn-read-more:hover,
.btn-read-more:focus {
  background: #942522;
  color: #fff;
  text-decoration: none;
}

.btn-see-more {
  min-width: 190px;
  background-color: #942522;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 16.5px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn-see-more:hover,
.btn-see-more:focus {
  background-color: #0056b3;
}

@media (max-width: 576px) {
  .news-row {
    height: 200px;
  }

  .news-excerpt {
    -webkit-line-clamp: 3;
  }
}
