.engagement-links {
    padding: 2em;
    width: 100%;
    background: #ededec;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #DEDEDE;
    box-sizing: border-box;
}

.links-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.engagement-link {
    width: 124px;
    background-color: white;
    border-radius: .2em;
    min-height: 4em;
    flex: 0 0 auto;
    flex-basis: 124px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    margin: 2.5% 2.5% 0 0;
    transition: box-shadow .25s, transform .15s;
}

/* IE 9 */
.no-flexBasis .engagement-link {
    display: table;
    float: left;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
   /* IE10+ specific styles go here */
    .link-photo img {
        max-width: 124px;
    }
}

.no-touch .engagement-link:focus,
.no-touch .engagement-link:focus .link-caption {
    outline: none;
    text-decoration: none;
}

.www .engagement-link:hover {
    box-shadow: 0 0 1.5em rgba(33,33,33,.4);
    transform: scale(1.05);
    text-decoration: none;
}

.engagement-link:active {
    background-color: rgba(33,33,33,.4);
}

.engagement-link:active .link-photo {
    filter: brightness(.5);
}

.link-caption {
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: #2a8236;
    padding: 1em;
    word-break: break-word;
    hyphens: auto;
}

.link-photo img {
    width: 100%;
    height: auto;
}

.popular-locations {
    margin: 2em 0 0 0;
}

.popular-locations .links-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.popular-locations .links-wrapper a {
    margin: 0.25em 0.5em 0.25em 0;
}
.popular-locations .links-wrapper a:not(:last-child)::after {
    content: ",";
    text-decoration:none;
}
