.row { display: flex; justify-content: space-between; flex-direction: row; gap: 2em; } .row img { border-radius: 10px; box-shadow: var(--box-shadow); } .gapped { width: 500px; display: flex; gap: 1em; } .price { background-color: var(--theme-color); padding: 0.3em 0.7em; } /* mobile */ @media (max-aspect-ratio: 5/6) { .row { flex-direction: column; } .gapped { flex-direction: column; width: 100%; } }