/* One compact, factual terms treatment shared by the public catalogue cards. */
.marketplace-proof__visual {
    grid-column: 1 / -1;
    margin: 0;
    overflow: hidden;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(180deg, var(--bg-card), var(--bg-input));
}

.marketplace-proof__visual img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.marketplace-proof__visual + div,
.marketplace-proof__visual + a {
    min-width: 0;
}

.catalog-card-terms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 12px 0 10px;
    color: var(--text-muted, #68717d);
    font-size: 11px;
}

.catalog-card-terms span {
    min-width: 0;
    padding: 6px 8px;
    border: 1px solid var(--border, #e4e7ec);
    border-radius: 8px;
    background: var(--surface-secondary, #f4f6f8);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.catalog-card-price-tiers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 4px;
}

.catalog-card-price-tiers span {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    padding: 5px 7px;
    border-radius: 7px;
    background: var(--primary-light, #fff0f1);
    background: color-mix(in srgb, var(--primary, #c9161d) 7%, transparent);
    color: var(--text-muted, #68717d);
    font-size: 10px;
    line-height: 1.25;
}

.catalog-card-price-tiers small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-card-price-tiers b {
    flex: 0 0 auto;
    color: var(--text-main, #18202a);
    font-size: 11px;
}

@media (max-width: 460px) {
    .catalog-card-terms,
    .catalog-card-price-tiers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .marketplace-proof__visual {
        padding: 5px 2px;
    }

    .marketplace-proof__visual img {
        max-height: 100px;
    }
}
