.cmpt-wrap * {
    box-sizing: border-box;
}
.cmpt-wrap img{
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 200px;
}
.cmpt-section-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 30px;
}
.cmpt-wrap{
    display: flex !important;
    flex-direction: column;
    width: 48%;
    background: #fff;
    padding: 20px;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}
.cmpt-wrap:not(:last-child){
    margin-right: 2%;
}
.cmpt-wrap h3.cmpt-title{
    font-size: calc(20em/10);
}
.cmpt-wrap h3.cmpt-title a {
    line-height: 1.25em;
    text-decoration: none;
}
.cmpt-wrap h3.cmpt-title a:hover {
    text-decoration: none;
}
.cmpt-wrap p{}
.cmpt-date{
    font-size: calc(20em/25);
}
.cmpt-content {
    flex: 1 0;
    margin-bottom: 6px;
}
.cmpt-content p:not(:last-child){
    margin-bottom: 6px;
}

.cmpt-wrap a{
    text-decoration: none;
    font-weight: 700;
    font-size: calc(20em/23);
}

@media (max-width: 768px) {
    .cmpt-wrap:not(:last-child){
        margin-right: auto;
    }
    .cmpt-wrap {
        width: 100%;
    }
}