

.c-content {
  min-height: 100%;
  width: 100%;
  padding: 10px 10px;
}

.l-font--weight-modest {
  font-weight: 300;
}
/*edit-grid*/
.c-feed {
  display: block;
  columns: 2;
  -webkit-column-fill: balance;
  column-fill: balance;
  list-style: none;
}

/*responsive-grid*/
@media only screen and (max-width: 780px) {
	.c-feed {
	  columns: 1;
	}
}

/*edit-the box*/
.c-feed__item {
  display: inline-block;
  background: #fff;
  max-width: 250px;
  margin: 5px;
  box-shadow: 0 0 12px 0 rgba(51, 51, 51, 0.25);
  height: 300px;
  overflow: hidden;
  text-overflow: ellipsis;   
  position: relative;
}

/*edit-the hyperlink header*/
.c-feed__header {
  display: table;
  max-width: 100%;
  padding: 24px 16px;
  background-color: rgba(209, 17, 25, 0.80); /*option */
  color: #fff;
  position: absolute;
  transition: 0.7s;
  bottom: 0;
}
.c-feed__header:hover {
  background-color: #000000; /*option */
  text-decoration: none;
}
/*Font-Header*/
.c-feed__link {
  color: #FFFFFF!important; /*option */
  font-weight: 800;
  font-size: 16px;
}

.c-feed__expand,
.c-feed__link,
.c-feed__date {
  display: table-cell;
  vertical-align: middle;
}

.c-feed__expand,
.c-feed__link {
  text-decoration: none;
}


.c-feed__expand {
  color: #FFFFFF!important;
  font-size: 18px !important;
  margin-right: 8px;
}

.c-feed__date {
  text-align: right;
  font-size: 10px;
  color: #F1F2F2; /*option */
}

.c-feed__image {
  display: block;
  width: 100%;
}

.c-feed__content {
  padding: 0 16px;
}

/*Title inside content*/
.c-feed__title {
  font-weight: 300;
  font-size: 24px;
  display: none;
}



