.product-row {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: space-between;
    gap: 1rem;
}

.product-row > .left-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-row > .left-container > .detail-container {
    display: flex;
    gap: 1rem;
    min-width: 0;
}

.product-row > .left-container > .detail-container > img {
    height: 3rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0.25rem;
}

.product-row > .left-container > .detail-container > .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
}

.product-row > .left-container > .detail-container > .text-container > .title {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-row > .left-container > .detail-container > .text-container > .description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-row > .left-container > .agent-visit-count {
    white-space: nowrap;
}

.product-row > .right-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@container (min-width: 60rem) {
    .product-row {
        flex-direction: row;
    }

    .product-row > .left-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 6rem;
        flex: 2;
        min-width: 0;
    }

    .product-row > .right-container {
        flex: 1;
    }
}
