.sm-events-list article{
    display: flex;
    margin-bottom: 10px;

}

.sm-events-list article .dates{
    background-color: #ededed;
    width: 195px;
    margin-right: 10px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}   

.sm-events-list article .info{
    background-color: #ededed;
    width: calc(100% - 180px);
    padding: 20px;
    display: flex;
    align-items: center;
}
.sm-events-list article .info .txt{
    width: 100%;
}
.sm-events-list article .info .link{
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sm-events-list article .info .link a:hover{
    background-color: #000;
}
.sm-events-list article .info .link .disabled{
    pointer-events: none;
    background-color: #D1D1D1;

}

.sm-events-list article .info h3{
    color: #444;
    margin: 0;
    line-height: 1.3em;
}
.sm-events-list article .info a{    
    background-color: #e00c16;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.3em;
    background-color: #e00c16;
    border-radius: 10px 10px 10px 10px;
    padding: 12px 20px 8px 20px;
}


@media only screen and (max-width: 600px) {
    .sm-events-list article {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .sm-events-list article .info {
        flex-direction: column;
        width: 100%;
    }
    .sm-events-list article .info .link,
    .sm-events-list article .dates{
        width: 100%;
    }
    .sm-events-list article .dates{
        margin-bottom: 1px;
        text-align: left;
        justify-content: flex-start;
        padding: 15px 20px;

    }
    .sm-events-list article .info .link{
        margin-top: 20px;
    }
}