.tile {
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}
.tile img {
  display: block;
  transition: transform 0.3s;
}
.tile .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 30px;
}
.tile .title {
  color: white;
  font-weight: normal;
  margin-bottom: 16px;
}
.tile p {
  margin: 0 0 16px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.tile .button {
  display: inline-flex;
  align-items: center;
  margin: 0;
  background: #e37700;
  text-decoration: none;
  padding: 10px 17px 10px 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
  color: white;
}
.tile .button a {
  color: white;
}
.tile .button::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 5px;
  display: inline-block;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
  transition: border 0.3s, left 0.3s;
  flex-shrink: 0;
}
.tile .button:hover {
  color: white;
  background: rgb(201.5, 105.6321585903, 0);
}
.tile .button:hover a {
  color: white;
}
.tile .button {
  align-self: flex-start;
  -webkit-text-decoration: underline dotted 1px #AAAAAA;
          text-decoration: underline dotted 1px #AAAAAA;
  background-color: #b85000;
}

.tile--featured_tile .content {
  background: rgba(30, 83, 150, 0.8);
}

@media (min-width: 48em) {
  .tile {
    margin-left: 1px;
    margin-right: 1px;
  }
  .tile .content {
    padding: 40px;
  }
  .col-md-2 .paragraph--type--card-tile:nth-child(2n-1) .tile,
  .col-md-3 .paragraph--type--card-tile:nth-child(3n-2) .tile {
    margin-left: 0;
  }
  .col-md-2 .paragraph--type--card-tile:nth-child(2n) .tile,
  .col-md-3 .paragraph--type--card-tile:nth-child(3n) .tile {
    margin-right: 0;
  }
}
/*# sourceMappingURL=tile.css.map */
