
.module {
  position: relative;
}

.module-title {}

/* hide empty titles */
.module-title:empty {
  display: none;
}

.module-content {}

/* clearfix */
.module-content:after,
.news-module-list:after {
  content: "";
  clear: both;
  display: table;
}


/* News Module
-------------------------------------------------------- */
/* ul */
.news-module-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* li */
.news-module-list > li {
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.item-thumbnail {}

.item-body {}

/* override bootsrap column width to make the first item thumbnail bigger */
.news-module-list > li:first-child .item-thumbnail.col-xs-3 {
  width: 40%;
}
.news-module-list > li:first-child .item-body.col-xs-9 {
  width: 60%;
}

.news-module-list .item-title {
  margin-top: 0;
  font-weight: 600;
}

.news-module-list .item-title a {
  color: #0056a5;
}

.view-all {
  text-align: right;
}

/* desktops only */
/* place the "view-all" link in the top-right corner */
@media (min-width: 768px) {
  .view-all {
    position: absolute;
    right: 15px;
    top: 10px;
    font-weight: bold;
    text-transform: uppercase;
  }
}



/* Event Module
-------------------------------------------------------- */
/* ul */
.event-module-list {
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
  list-style: none;
}

/* li */
.event-module-list > li {
  padding: 10px 15px;
}

.event-module-list .item-title {
  margin-top: 0;
  font-size: 16px;
}

.event-module-list .item-title a {
  color: #333;
}

.event-module-list .item-thumbnail {
  position: relative;
  width: 100%;
  height: 215px;
  margin-bottom: 50px;
  background-color: #f2f2f2;
  background-image: url(../../images/icon-calendar.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50px 50px;
  border-radius: 4px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.event-module-list .item-date {
  position: absolute;
  left: 20px;
  width: 50px;
  height: 85px;
  padding: 14px 8px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  background-color: #6fb009;
  border-radius: 0 0 2px 2px;
}
.event-module-list .item-date span {
  display: block;
  font-family: "Sanchez", serif;
  font-size: 24px;
  border-bottom: #fff solid 1px;
}
