.card__prom {
    border-radius: 10px;
    position: relative;

    .prom__media {
        border-radius: 10px;
    }

    .prom__text {
        position: absolute;
        left: 10px;
        width: 60%;
        height: 100%;
        top: 0px;
        display: flex;
        align-items: center;
        font-size: 10px;

        span.blue__text {
            color: #019df4;
            font-size: 8px;

            @media(max-width:600px) {
                font-size: 10px;
            }
        }

        p {
            line-height: normal;
        }

        span.text__promotional {
            font-size: 12px;
            color: #ffffff;

            @media(max-width:600px) {
                font-size: 16px;
            }
        }

        &.prom__text-right {
            right: 10px;
            left: inherit;
            text-align: center;
        }


        @media(max-width:600px) {
            font-size: 16px;
            width: 50%;
        }
    }

}

@media(max-width:600px) {
    .text__promotional {
        font-size: 14px !important;
    }
}