/* Custom styles for blog grid page */
.blog-contant .hover-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 108px; /* 3行 * 36px 行高 */
  width: 100%;
}

.blog-contant p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 28px;
  height: 84px; /* 3行 * 28px 行高 */
  margin-bottom: 20px;
}

/* Custom styles for causes section in index page */
.causes-content a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 108px; /* 3行 * 36px 行高 */
  width: 100%;
  font-family: 'Yeseva One';
  font-size: 26px;
  line-height: 36px;
  color: #25283A;
  margin-bottom: 15px;
  transition: 0.3s;
  display: block;
}

.causes-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 28px;
  height: 84px; /* 3行 * 28px 行高 */
  margin-bottom: 20px;
}