/* Tile Container */
.showcase .showcase-tile {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px !important; /* Force override of MSM styles */
    margin-top: 15px !important; /* Force override of MSM styles */
}

.showcase .showcase-tile.has-action {
    cursor: pointer;
}

/* Placeholder div for image. This forces it to be a certain size. */
.showcase .showcase-tile.has-action .showcase-hand {
    position: absolute;
    right: 1em;
    bottom: 1em;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    background: url('../img/finger.svg') no-repeat center center;
    transition: opacity 0.25s, width 0.25s, height 0.25s;
}

.showcase .showcase-tile.has-action:hover .showcase-hand {
    width: 28px;
    height: 28px;
    opacity: 1;
}

/* Placeholder div for image. This forces it to be a certain size. */
.showcase .showcase-tile .showcase-img div.placeholder {
    padding-bottom: 100%;
    height: 0;
}

/* Div for displaying the image as a background. background-position should be over-ridden by a style tag. */
.showcase .showcase-tile .showcase-img {
    position: relative;
    background-size: cover;
    background-position: center center;
}

.showcase .showcase-tile .showcase-lead {
    padding: 1em;
}

/* Lead is the container for the content overlay */
/* By default, use a completely transparent white background that fades in on hover */
.showcase .showcase-tile .placeholder {
    background-color: rgba(255,255,255, 0);
    transition: background-color 0.25s;
}

/* By default, fade into 40% transparent white on hover*/
.showcase .showcase-tile:hover .placeholder {
    background-color: rgba(255,255,255, 0.4);
}

/* White Transparent Background */
.showcase .showcase-tile .placeholder.bg-white-trans {
    background-color: rgba(255,255,255, 0.4);
}

.showcase .showcase-tile:hover .placeholder.bg-white-trans {
    background-color: rgba(255,255,255, 0.9);
}

/* White Solid Background */
.showcase .showcase-tile .placeholder.bg-white-solid {
    background-color: rgba(255,255,255, 1);
}

.showcase .showcase-tile:hover .placeholder.bg-white-solid {
    background-color: rgba(255,255,255, 0.5);
}

.showcase .showcase-tile .showcase-lead-content {
    font-size: 0.9em;
    text-align: left;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.showcase .showcase-tile .showcase-lead-content.text-left {
    text-align: left;
}

.showcase .showcase-tile .showcase-lead-content.text-right {
    text-align: right;
}

.showcase .showcase-tile .showcase-lead-content.text-center {
    text-align: center;
}

.showcase .showcase-tile .showcase-lead h2,
.showcase .showcase-tile .showcase-lead h3,
.showcase .showcase-tile .showcase-lead h4,
.showcase .showcase-tile .showcase-lead h5,
.showcase .showcase-tile .showcase-lead h6,
.showcase .showcase-tile .showcase-lead ul,
.showcase .showcase-tile .showcase-lead li {
    margin: 0;
    padding: 0;
}

.showcase .showcase-tile .showcase-lead .showcase-title {
    font-weight: bold;
    font-size: 1.35em;
    color: #002e5d;
}

.showcase .showcase-tile .showcase-lead .showcase-subtitle {
    font-weight: normal;
    font-size: 0.9em;
}

.showcase .showcase-tile .showcase-lead .content-container p:first-child {
    padding-top: 0;
    margin-top: 0;
}

.showcase .showcase-tile .showcase-lead .content-container p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.showcase .showcase-tile .showcase-lead ul {
    list-style: none;
}

.showcase .showcase-tile .showcase-lead ul li {
    list-style: none;
    margin: 0.5em 0;
}

.showcase .showcase-tile .showcase-img div.ratio-16x9 {
    padding-bottom: 56.25%;
}

.showcase .showcase-tile .showcase-img div.ratio-16x10 {
    padding-bottom: 62.5%;
}

.showcase .showcase-tile .showcase-img div.ratio-4x3 {
    padding-bottom: 75%;
}

.showcase .showcase-tile .showcase-img div.ratio-1x1 {
    padding-bottom: 100%;
}

.showcase .showcase-tile .showcase-img div.ratio-21x9 {
    padding-bottom: 42.86%;
}

.showcase .showcase-tile .showcase-lead-content {
    position: relative;
}

.showcase .showcase-tile .showcase-lead:not(.below) {
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.showcase .showcase-tile .showcase-lead.below {
    position: inherit;
    max-width: none;
    max-height: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.showcase .showcase-tile .showcase-lead.below .showcase-lead-content.text-right {
    text-align: left;
}

.showcase .showcase-tile .showcase-lead.left,
.showcase .showcase-tile .showcase-lead.right {
    width: 50%;
}

.showcase .showcase-tile .showcase-lead.left:not(.top):not(.bottom),
.showcase .showcase-tile .showcase-lead.right:not(.top):not(.bottom) {
    top: 0;
    bottom: 0;
}

.showcase .showcase-tile .showcase-lead.top:not(.left):not(.right),
.showcase .showcase-tile .showcase-lead.bottom:not(.left):not(.right) {
    left: 0;
    right: 0;
}

.showcase .showcase-tile .showcase-lead.left {
    right: auto;
}

.showcase .showcase-tile .showcase-lead.right {
    left: auto;
}

.showcase .showcase-tile .showcase-lead.bottom {
    top: auto;
}

.showcase .showcase-tile .showcase-lead.top {
    bottom: auto;
}

@media screen and (max-width: 767px) {
    .showcase .showcase-tile .showcase-lead:not(.below) {
        position: inherit;
        max-width: none !important;
        max-height: none !important;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .showcase .showcase-tile .showcase-lead.left,
    .showcase .showcase-tile .showcase-lead.right {
        width: 100%;
    }

    .showcase .showcase-tile .showcase-lead-content.text-right {
        text-align: left;
    }
}