.img-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.shii-img {
    position: relative;
    width: 50%;
}

.shii-img img:not(.img-notch) {
    width: 100%;
    margin: 0;
}

.img-notch {
    width: auto;
    position: absolute;
    height: 18px;
    top: 0;
    right: 0;
}

@media (max-width: 479px) {

    .img-row {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 8px;
    }

    .shii-img {
        width: 100%;
    }
}  