.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: var(--space-xl);
}

.default-img {
    width: 424px;
    height: 318px;
}

@media (max-width: 768px) {
    .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-xl-m);
    }

    .default-img {
        width: 186px;
        height: 140px;
    }
}