.c-meetingList {
    width: 100%;
}

.c-meetingList__overview {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.c-meetingList__meeting {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1em;
    padding: 0 10px;
}

.c-meetingList__meetingInner {
    flex-grow: 1;
    border: 1px solid #02aca9;
    background-color: #fff;
    overflow: hidden;
}

.c-meetingList__overview--simple .c-meetingList__meetingInner {
    display: flex;
}

.c-meetingList__overview--detailed .c-meetingList__info {
    display: flex;
    flex-direction: row;
    padding: 10px;
}

.c-meetingList__coverPhotoContainer {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    border-radius: 10px 10px 0 0;
    background-color: #eee;
}

.c-meetingList__coverPhoto {
    position: absolute;
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.c-meetingList__date {
    flex-shrink: 0;
    width: 4em;
    height: 100%;
    margin: 0 10px 0 0;
    padding: 1em;
    text-align: center;
    color: #fff;
    background-color: #02aca9;
    transition: background-color 0.4s cubic-bezier(.21,.48,.53,.96),
    transform 0.4s cubic-bezier(.21,.48,.53,.96);
}

.c-meetingList__dateDay {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 0.9;
}

.c-meetingList__dateMonth {
    display: block;
    font-size: 0.9em;
    line-height: 0.9;
}

.c-meetingList__body {
    position: relative;
    margin: 0;
    padding: 1em;
}

.c-meetingList__title {
    margin: 0;
    font-size: 1em;
    word-break: break-word;
}

.c-meetingList__time {
    position: absolute;
    top: 0;
    margin: 0.8em 0 0;
    font-size: 0.8em;
    color: #4a4a4a;
}

.c-meetingList__location {
    margin: 0;
    font-size: 0.8em;
    color: #4a4a4a;
}

.c-meetingList__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -999em;
}

.c-meetingList__moreBlogs:after {
    content: '\20d7';
    font-family: "sn-icons", sans-serif;
    margin-left: 1em;
}

@media screen and (min-width: 550px) {
    .c-meetingList__meeting {
        width: calc(100% / 2);
    }
}

@media screen and (min-width: 860px) {
    .c-meetingList__meeting {
        width: calc(100% / 4);
    }
}
