{# Main container styling #}
.c-price-mod .price-con {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

{# Utility class for column-based flex layout #}
.flex-col {
  display: flex;
  flex-direction: column;
}

{# Grid wrapper for pricing columns #}
.price-table-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

{# Inner card styling #}
.c-price-inner {
  position: relative;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; {# 'top' is not valid; using 'flex-start' #}
}

{# "Best value" badge or highlight ribbon #}
.highlight-package {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;     {# Firefox support #}
  width: -webkit-fit-content;  {# Safari support #}
  width: fit-content;
  display: flex;
}

{# CTA column spacing #}
.col-cta {
  margin-bottom: 30px;
}

{# Features column and list reset #}
.col-features {
  width: 100%;
}

.col-features ul {
  padding-left: 0;
  margin: 0;
}

.col-features li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}

{# Feature icon container #}
.feature-icon {
  display: flex;
}

.feature-icon svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
