/* Tom - Extending Bootstrap */

/* Default: no rounding for small screens */
.rounded-md-5 {
    border-radius: 0;
    overflow: hidden;
    /* ensures content stays inside the rounded corners */
}

/* Medium screens and up (≥768px) */
@media (min-width: 768px) {
    .rounded-md-5 {
        border-radius: 2rem;
        /* same as Bootstrap's rounded-5 */
    }
}