@media only screen  and (min-width : 1224px) {  
    .container {
        display: flex;
        flex: 0 1;
        flex-direction: row;
        justify-content: flex-start;
        margin: 15px;
        margin-right: 100px;
        padding: 10px;
        background: #fff;
        box-shadow: 1px 0px 8px 4px #cacbcc;
    
        padding: 20px 10px;
    }
    .contentItem {
        font-size: 22px;
        font-weight: bold;
        margin: 0;
        color:#6d6969;
    }
    .iconoTipoMedio{
        width: 90px;
    }

    .containerImage {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width : 360px) and (max-width : 1279px) {
    .container {
        display: flex;
        flex: 0 1;
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px;
        background: #fff;
        box-shadow: 1px 0px 8px 4px #cacbcc;
    
        padding: 20px 10px;
    }

    .contentItem {
        font-size: 16px;
        font-weight: bold;
        margin: 0;
        color: #6d6969;
    }

    .iconoTipoMedio{
        width: 70px;
    }

    .containerImage {
        display: flex;
        padding-right: 15px;
        justify-content: center;
        align-items: center;
    }
}

.newcard:hover,
.newcard {
    /* background: linear-gradient(90deg, rgb(114, 10, 109), rgb(78, 4, 41)); */
    background: linear-gradient(90deg, rgba(114, 10, 109, 0.7), rgba(78, 4, 41, 0.2));
    color: #fff;
    transition:all .5s ease-in-out;
}

.newcard:hover p {
    color: #454545
}

.metadataContent {
    display: flex;
    flex-direction: row;
}

.metadataItem {
    font-size: 16px;
    margin-right: 6px;
    padding: 4px;
    border-radius: 12px;
    color: #78277C;
}


.containerButton {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}