/* NoorVista 3.1.0 — public tariff card placement only.
 * Keep the canonical tariff renderer and responsive stack intact; this layer
 * only fixes desktop grid placement when a variant has insurance/tariff notes.
 */
@media (min-width: 1101px) {
  body:not([data-panel-role]) .tariff-center-row > .tariff-center-identity {
    grid-column: 1;
    grid-row: 1;
  }

  body:not([data-panel-role]) .tariff-center-row > .tariff-center-prices {
    grid-column: 2;
    grid-row: 1;
  }

  body:not([data-panel-role]) .tariff-center-row > .tariff-center-booking {
    grid-column: 3;
    grid-row: 1;
  }

  body:not([data-panel-role]) .tariff-center-row > .nv-insurance-note,
  body:not([data-panel-role]) .tariff-center-row > .nv-tariff-note,
  body:not([data-panel-role]) .tariff-center-row > .nv-referral-note {
    grid-column: 1 / -1;
  }
}
