﻿.tile-text-block 
{
 overflow: hidden;
}

.tile-image-block 
{
 position: relative;
 width: 100%;
 text-align: center;
}

.tile-image-text 
{
 position: absolute;
 bottom: 0;
 padding: 8px 0;
 background-color: rgba(0,0,0, 0.25);
 color: #fff;
}

@media (min-width: 768px) 
{
 .tile-image 
 {
  height: 100px;
  object-fit: cover;
 }

 .tile-text-block 
 {
  height: 100px;
  max-height: 100px
 }

 .tile-text 
 {
  height: calc(100% - 20px);
 }
}