.content ul.list-rows,
.content ol.list-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content .list-rows>.list-rows__item {
    margin-bottom: 0;
    /* override .content li */
}

/* =====================================================
   Puzzelprijzen – afbeelding zoals puzzeltijd-overzicht
   ===================================================== */

.price-rows .list-rows__thumb {
    width: 100px;
    height: auto;
    max-width: 100%;
    border-radius: 4px;
    object-fit: contain;
    background: transparent;
}

.price-rows .list-rows__asset {
    align-items: flex-start;
}

/* =====================================================
   Puzzelprijzen – right-block KPI layout
   ===================================================== */

.price-rows__numbers {
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) minmax(160px, 1fr) minmax(120px, .8fr);
    gap: var(--gap-l);
    align-items: start;
    text-align: right;
}

.price-rows .list-rows__row {
    align-items: start;
}

.price-rows__kpi {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.price-rows__label {
    font-size: 8pt;
    color: #7a859a;
    line-height: 1.1;
    margin: 0;
    line-height: 1;
}

.price-rows__value {
    font-weight: 600;
    line-height: 1.1;
}

/* iets strakker in dit blok */
.price-rows__kpi .price-card__price {
    margin: 0;
}

/* =====================================================
   Mobiel
   ===================================================== */
@media (max-width: 700px) {

    /* --- Rij: mobiel compacter (1 kolom: asset boven, numbers onder) --- */
    .list-rows__row {
        grid-template-columns: 1fr;
        gap: .5rem;
        padding: .65rem .5rem;
        text-decoration: none;
    }

    .list-rows__row:hover,
    .list-rows__row:focus,
    .list-rows__row:active {
        text-decoration: none;
    }

    /* --- Asset (thumb + titel/meta) weer strak links --- */
    .list-rows__asset {
        display: grid;
        grid-template-columns: 64px 1fr;
        column-gap: .65rem;
        align-items: center;
        min-width: 0;
    }

    .list-rows__thumb {
        width: 64px;
        height: 64px;
        border-radius: 10px;
        object-fit: cover;
        display: block;
    }

    .list-rows__asset-text {
        min-width: 0;
    }

    .meta-line {
        margin-top: .15rem;
    }

    /* --- KPI’s: 3 gelijke kolommen (geen “box”) --- */
    .price-rows__numbers {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .5rem;

        /* vervangt de “box look” */
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: .45rem 0 0 0;
        align-items: start;
    }

    .price-rows__kpi {
        min-width: 0;
        text-align: center;
    }

    /* optioneel: links/midden/rechts uitlijnen */
    .price-rows__kpi:nth-child(1) {
        text-align: left;
    }

    .price-rows__kpi:nth-child(2) {
        text-align: center;
    }

    .price-rows__kpi:nth-child(3) {
        text-align: right;
    }

    .price-rows__label {
        font-size: .72rem;
        line-height: 1.1;
        opacity: .7;
        margin-bottom: .15rem;
        white-space: nowrap;
    }

    .price-rows__value {
        font-size: .95rem;
        line-height: 1.1;
        font-weight: 700;
        white-space: nowrap;
    }

    /* --- Belangrijk: prijs niet mega groot op mobiel --- */
    .price-card__price {
        font-size: 1.05rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }

    /* verschil wat compacter */
    .delta-down,
    .delta-up {
        font-weight: 800;
    }
}