.section-img {
    width: auto;
    max-width: 34%;
    height: auto;
    border-radius: 8px;
    float: left;
    margin: 0 1.2rem 1rem 0;
}

/* MOBILE: imagem menor, mas continua ao lado do texto */
@media(max-width: 768px) {
    .section-img {
        width: 200px;        /* <--- AQUI está a solução */
        margin: 0 .8rem .8rem 0;
        float: left;         /* mantém o layout lado a lado */
    }
}

/* faz o texto passar para baixo da imagem quando necessário */
.section-wrapper::after {
    content: "";
    display: block;
    clear: both;
}



.card-image-wrapper{
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

/* imagem */
.card-img-top{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



.card-title-overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;              /* margem inferior */
    padding: 6px 10px;
    background: linear-gradient(
    to right,
    rgba(0,0,0,.8) 0%,
    rgba(0,0,0,.5) 50%,
    rgba(0,0,0,0) 100%
);
}

.card-title-overlay .card-title{
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    text-align: left; /* combina melhor com gradiente */
    text-transform: uppercase;
}

.card-description{
    font-size: .9rem;
    color: #ddd;

    white-space: nowrap;     /* não quebra linha */
    overflow: hidden;        /* esconde excesso */
    text-overflow: ellipsis; /* adiciona ... */
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* número de linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
}




.section-extern-description{
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: 400;
}