{# Main container styling #}
.c-price-mod .price-con {
  padding: 10px 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 #}
#hs_cos_wrapper_widget_1770733146450 .price-table-grid .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' #}
  align-items: start;
  padding:30px 20px;
}

{# "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;
}

/* Sørg for at kolonnerne strækker sig lige høje */
.price-table-grid > [class*="col-"].flex-col{
  display: flex;
}

/* Selve kortet skal fylde hele kolonne-højden og være flex column */
.price-table-grid .c-price-inner{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Skub CTA-wrap til bunden (kun den sidste wrap i kortet) */
.price-table-grid .c-price-inner > .wrap:last-of-type{
  margin-top: auto;
}

/* (Valgfrit) hvis du vil have lidt luft over knappen */
.price-table-grid .c-price-inner > .wrap:last-of-type{
  padding-top: 16px;
}

.price-table-grid .col-desc {
  border-radius: 8px;
  background:#FFF;
  padding:10px;
  margin-bottom:30px;
}

.price-table-grid .col-desc p {
  color: #288DA8;
  font-size: 16px;
  margin:0;
}

.price-table-grid .price1 {
  display:inline;
}

.price-header {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(40, 141, 168, 0.69);
  width: 100%;
  padding:0 0 20px 0;
  margin:0 0 20px 0;
}

.title-text {
  margin-bottom:5px;
  margin-top:30px;
  font-weight:bold;
}

.subheadline-text p {
  padding:0;
  margin:0;
  color:#2B395D;
  font-size:12px;
}