.content-wrapper {
    margin: 50px auto;
    width: 65%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.content-wrapper .card {
    min-width: 200px;
    min-height: 200px;
    max-width: fit-content;
    border: 0px;
    background-color: inherit;
    grid-column: 1;
    grid-row: 1/4;
}

.content-wrapper img {
    width: 100%;
    max-width: 600px;
}

.content-wrapper .inner-text{
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
}

.content-wrapper .inner-text .desc {
    font-style: italic;
    color: #aaaaaa;
}

.content-wrapper .inner-text h2{
    font-size: 30px;
}

.content-wrapper .submit-button {
    grid-column: 2;
    grid-row: 2;
    position: relative;
}

.content-wrapper .pricetag{
    position: absolute;
    bottom: 70px;
    right: 20px;
}

.content-wrapper .pricetag p {
    display: inline;
    margin: 0;
}

.content-wrapper .pricetag .tag {
    background-color: #202020;
    border: 2px solid #444444;
    font-size: 18px;
    font-weight: normal;
}

.content-wrapper a {
    background-color: rgb(250, 170, 25);
    font-weight: 500;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
}

.content-wrapper .sold {
    background-color: #920000;
}

@media(max-width: 470px) {
    .submit-button .pricetag p{
        display: none;
    }
    .submit-button .pricetag .tag{
        font-size: 16px;
    }

    .submit-button a {
        right: 0px;
    }
    .submit-button .pricetag{
        left: 0px;
    }
}

@media(max-width: 1200px) {
    .inner-text {
        order: 1;
        margin-bottom: .7em;
    }
    .card {order: 2;}
    .submit-button {
        order: 3;
        height: 50px;
    }
    .submit-button a {
        bottom: 0px;
        font-size: 16px;
    }
    .content-wrapper {
        display: flex;
        flex-flow: column wrap;
        max-width: 600px;
        margin-top: 2em;
    }
    .content-wrapper img {
        width: 100%;
    }
    .content-wrapper .pricetag {
        position: absolute;
        bottom: 5px;
        right: 180px;
    }
}

@media(min-width: 1201px) {
    .inner-text {order: 2;}
    .card {
        order: 1;
        margin-right: 2em;
    }
    .submit-button {
        order: 3;
    }
    .content-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}
