/* --- Artando Tauschseite: Erzwinge Flexbox --- */

body .artando-tausch-compare {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
    align-items: flex-start;
    justify-content: flex-start;
    border: 2px dashed red;
}

body .artando-tausch-werk {
    flex: 1 1 0;
    min-width: 0;
    border: 2px solid blue;
}

.artando-tausch-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f2f2f2;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.artando-tausch-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artando-tausch-meta {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.artando-tausch-meta p {
    margin: 0.2rem 0;
}

.artando-form-wrap {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 800px) {
    .artando-tausch-compare {
        flex-direction: column;
    }
}