#main {
	background-color: #f2f0f0;
	padding: 30px 0;
}
.view-news .view-content {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  text-align: justify;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.view-news .views-row {
  border-left: 3px solid #1b8381;
  width: 32%;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  margin-bottom: 30px;
}
.view-news .views-field-title{
  font-size: 24px;
  font-weight: bold;
}
.view-news a{
	color: #1b8381;
	text-decoration: none;
	font-size: 20px;
}
.view-news .views-field-created {
	color: #86868b;
    margin-top: 10px;
}

@media screen and (max-width: 1023px) {
  .view-news .views-row {
      width: 100%;
  }
}