
.grid {
  max-width: 100%;
  counter-reset: grid-item;
}

/* clearfix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- grid-item ---- */

.grid-item {
  width: 20%;
  float: left; 
/*  background: #D26; 
  border: 2px solid #333;
  border-color: hsla(0, 0%, 0%, 0.5);
  border-radius: 5px;*/
}

.grid-item a {
  line-height:0; 
  display:block
}

.grid-item a img {
  width:100%;
  max-width: 100%;
  max-height: 100%;
  height:auto;
}


.collage-content {
  background: rgba(48,17,17,0.7);
  color: white;
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  display: none;
}


.collage-text {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 18px;
}

.collage-content span {
  text-align: center;
  vertical-align: middle;
  font-family: 'roman_antiqueregular';
  font-style: normal;
}

.collage-image:hover .collage-content {
  opacity: 1;
}

.collage-padding {
  height: 40%; 
  width: 100%;
}


