/* Price rows on /tseny/: every row uses the same three visual columns. */
body.page-tseny .price-list--full .price-row {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(168px, auto);
    column-gap: clamp(24px, 3vw, 46px);
    row-gap: 12px;
    align-items: start;
}

body.page-tseny .price-list--full .price-row > h3 {
    grid-column: 1;
    margin: 0;
}

body.page-tseny .price-list--full .price-row__description {
    grid-column: 2;
    min-width: 0;
}

body.page-tseny .price-list--full .price-row__description :is(p, small) {
    margin: 0;
}

body.page-tseny .price-list--full .price-row > strong {
    grid-column: 3;
    align-self: start;
    white-space: nowrap;
}

@media (max-width: 760px) {
    body.page-tseny .price-list--full .price-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    body.page-tseny .price-list--full .price-row > :is(h3, .price-row__description, strong) {
        grid-column: 1;
    }

    body.page-tseny .price-list--full .price-row > strong {
        white-space: normal;
    }
}
