.card-cursos{
    background-color: #fff;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.28);
}

.card-image{
    height: 20rem;
    overflow: hidden;
}

.card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content{
    padding: 2rem;
}

.blog-details,
.icon-text{
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.icon-text{
    margin-right: 1rem;
}

.icon-text .icon{
    color: #60223B;
    margin-right: 0.4rem;
}

.blog-cta{
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 900px){
    .card-cursos{
        display: flex;
        height: 35rem;
        overflow: hidden;
    }

    .card-image{
        height: auto;
        flex: 1;
    }
    .card-content{
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}