.contenedor_anuncios{
    position: relative;
    width: 100%;
    min-height: 15em;
    border-radius: 2em;
    padding: 3em;
    margin-top: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-rosado);
}
    .contenedor_anuncios .titulo{
        color: var( --color-texto);
        font-weight: 500;
        font-size: 2em;
        z-index: 1;
    }
    .contenedor_anuncios .descripcion{
        color: var( --color-texto);
        width: calc(100% - 16em);
    }
    .contenedor_anuncios .boton{
        border: none;
        width: 10em;
        border-radius: 1em;
        padding: .5em;
        color: white;
        background-color: var(--color-rojo);
    }
    .contenedor_anuncios .imagen{
        position: absolute;
        object-fit: cover;
        width: 17em;
        height: 22em;
        border-bottom-right-radius: 2em;
        right: 0;
        bottom: 0;
    }