/* ── Parent Scope Wrapper ── */
.acl-three-cards {
  position: relative;
  width: 100%;
}

.acl-three-cards.has-top-border .container {
  border-top: 1px solid var(--al-black);
  padding-top: 48px;
}

/* .acl-three-cards .content-flex {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}


.acl-three-cards .content-card {
  flex: 0 0 calc(33.333% - 32px);
  min-width: 0;
  display: flex;
  flex-direction: column;
} */

/* ── Content Flex Grid ── */
.acl-three-cards .content-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

@media (max-width: 991.98px) {
    .acl-three-cards .content-flex {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 767.98px) {
    .acl-three-cards .content-flex {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ── Content Card Columns ── */
.acl-three-cards .content-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}


/* ── Image Elements ── */
.acl-three-cards .content-card__image {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 394.67 / 282.37;
}

.acl-three-cards .content-card__image img {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 4/3; */
  object-fit: contain;
  display: block;
}

/* ── Typography & Headings ── */
.acl-three-cards .content-card__title {
  font-family: var(--font-heading-bold);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.acl-three-cards .content-card__desc {
  color: var(--al-black);
  margin-bottom: 0px;
  flex-grow: 0;
}

.acl-three-cards .content-card__desc p {
  margin-bottom: 0px;
}

.acl-three-cards ul {
  padding-left: 24px;
}

.acl-three-cards .content-card__bullets li {
  color: var(--al-black);
}

.acl-three-cards .content-card__bullets li:last-child {
  margin-bottom: 0;
}


@media (max-width: 767.98px) {

  /* .acl-three-cards .content-flex {
    flex-direction: column;
  }

  .acl-three-cards .content-card {
    flex: 0 0 100%;
  } */

  .acl-three-cards.has-top-border .container {
    padding-top: 32px;
  }

}