.responsive-image {
    height: 340px;
    /* Default height */
}

@media (max-width: 576px) {

    /* Adjust for small screens */
    .responsive-image {
        height: 230px;
        /* Height for small screens */
    }

    .px-sm-0 {
        padding: 1px;
        /* Reduce padding */
    }

    .col-sm-8 {
        margin: 1px;
        /* Reduce margin */
    }
}