/* Module Wrapper */
.cards-list {
  position: relative;
  width: 100%;
  padding: 30px 20px;
}

.cards-list__container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Grid Layout (Columns/Gap handled by HubL in module.html) */
.cards-list__grid {
  display: grid;
  width: 100%;
}

@media (max-width: 992px) {
  .cards-list__grid { 
    width: fit-content;
  }
}



/* Card Card */
.cards-list__card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff; 
  padding: 24px;
  border-radius: 8px; 
  height: 100%; 
}



.cards-list__card-header {
  align-items: center;
  display: flex;
  gap: 12px;
}

.cards-list__icon-wrapper img {
  display: block;
  /*max-width: 48px; /* Reasonable default size for icons */
  height: auto;
  object-fit: contain;
}

/* Title */
.cards-list__title {
  margin: 0;  
  color: #101828;
}

/* List Items */
.cards-list__items {
  margin: 0;
  padding: 0;
  list-style: none; /* Custom list style or bullet points? Let's use custom bullets or simple list */
}

.cards-list__item {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
  color: #364153;
}

/* Custom bullet for list items */
.cards-list__item::before {
  background-image: url('https://5573085.fs1.hubspotusercontent-na1.net/hubfs/5573085/bullet_check.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
}
