/* Persia OS Servers Lite – Hotfix 1.4.4
   - Center cards in row
   - Increase vertical spacing on desktop
   - Single bullet between currency & period
   - Center subtitle (datacenter)
   - Equal padding for feature label/value columns
   - Prevent sibling cards from stretching when one expands
*/

/* 1) center all cards */
.ps-service-types .tab-pane > ul.row{
  justify-content: center !important;
  align-items: flex-start !important; /* 6) */
  row-gap: 1.75rem !important;        /* 2) */
  column-gap: 1.25rem !important;
}
.ps-service-types .tab-pane > ul.row > li{ margin-bottom: 1.5rem !important; }

/* 3) keep just a single bullet */
.ps-service-types .price-line .price-meta{ display:inline-flex; align-items:baseline; gap:.35rem; }
.ps-service-types .price-line .price-currency::after{ content: none !important; } /* if a previous CSS added one */

/* 4) center subtitle below title */
.ps-service-types small.subtitle{ display:block !important; text-align:center !important; margin-top:.15rem; }

/* 5) equal padding for feature list */
.ps-service-types .onclick > li{ padding-inline: 18px !important; }
.ps-service-types .onclick > li .label{ padding-inline-start: 8px !important; }
.ps-service-types .onclick > li .val{ padding-inline-end: 8px !important; font-weight: 600; }

/* Cosmetic */
@media (min-width: 992px){
  .ps-service-types .server-wrapper{ min-height: 100%; }
}
