.events-list-headings {

}

.events-list-headings .heading-container {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: inline-block;
    padding: 10px;
    height: 200px;
    width: 50%;
    box-sizing: border-box;
    -webkit-transition: all 240ms ease-out;
    transition: all 240ms ease-out;
    overflow: hidden;
    vertical-align: top;
}

.events-list-headings .heading-container:before {
    display: none;
}

.events-list-headings .heading-container:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.46);
}

.events-list-headings .background {
    display: block;
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    right: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #ececec;
    border-radius: 3px;
}

.events-list-headings .background.no-photo {
    background-image: url(/public/img/shipulin-logo-grayscale.png);
    background-size: contain;
}

.events-list-headings .heading-name {
    display: block;
    position: absolute;
    left: 5px;
    bottom: 5px;
    right: 5px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.27);
    color: #FFF;
    padding: 10px;
}