@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

    .dude-c {
        width: 450px;
        margin: 40px auto;
        border-radius: var(--corners);
        background-color: var(--bckgrnd);
        padding: 25px 10px 25px 70px;
        box-sizing: border-box;
        position: relative;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        font-size: 12px;
        font-family: 'Open Sans', sans-serif;
        line-height: 15px;
        color: var(--accent);
        box-shadow: 0 1px 3px hsla(0, 0%, 0%, .2);
        --accent: #000;
        --bckgrnd: #fff;
        --corners: 10px;
        --grdnt: linear-gradient(to top,#bf0985, #fda445);
    }

    .dude-c::before {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        font-weight: 900;
        font-family: "Font Awesome 5 Pro";
        width: 70px;
        border-radius: var(--corners) 0 0 var(--corners);
        background-image: var(--grdnt);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
        color: var(--bckgrnd);
    }

    .dude-c.l::before {content: '\f004';}
    .dude-c.s::before {content: '\f234';}
    .dude-c.c::before {content: '\f086';}

    .dude-c br {
        display: none;
    }

    .dude-c > a {
        position: absolute;
        top: calc(50% - 28.77px);
        right: -20px;
        text-align: center;
        background-image: var(--grdnt);
        background-clip: text;
        color: transparent;
        text-decoration: none;
        text-transform: uppercase;
        writing-mode: sideways-rl;
    }

    .dude-c > img {
        flex-shrink: 0;
        width: var(--size);
        height: var(--size);
        object-fit: cover;
    }

    .dude-c > img:nth-of-type(1) {
        --size: 90px;
        border-radius: 50%;
    }

    .dude-c > img:nth-of-type(2) {
        --size: 55px;
        border-radius: 10px;
        box-shadow: 0 1px 2px hsla(0, 0%, 0%, .4);
    }

    .dude-c span {
        line-height: 1.5;
    }

    .dude-c span b,
    .dude-c div b {
        font-size: 14px;
        font-weight: bolder;
    }

    .dude-c span br {
        display: initial;
    }

    /* Estilos para el que comenta. */
    .dude-c div {
        max-width: 40%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .dude-c div span {
        font-size: 11px;
        line-height: 1;
    }