/* Base layout */
.vf-benefits-card-d8f42a {
  background: linear-gradient(135deg, #EEF5FF 0%, #F8FBFF 100%);
  border-radius: 24px;
  padding: 0; /* Touch edges completely */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 18, 47, 0.04);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.vf-benefits-card-inner-d8f42a {
  display: flex;
  align-items: stretch; /* Keep columns matching height */
  justify-content: space-between;
  gap: 0px;
  box-sizing: border-box;
}

/* Content Area - Justified strictly to the Left */
.vf-benefits-card-content-d8f42a {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Align all children strictly to the left */
  text-align: left; /* Ensure left alignment */
  padding: 48px;
  box-sizing: border-box;
}

.vf-benefits-card-title-d8f42a {
  font-size: 32px;
  font-weight: 700;
  color: #07122F;
  margin: 0 0 24px 0;
  line-height: 1.25;
  text-align: left; /* Strict alignment */
}

/* Benefits list - Justified to the Left */
.vf-benefits-card-list-d8f42a {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align list content to the left */
  gap: 14px;
  width: 100%;
}

.vf-benefits-card-item-d8f42a {
  display: flex;
  align-items: flex-start; /* Align to the top of text if it wraps */
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}

.vf-benefits-card-check-d8f42a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background-color: transparent; /* Seamless clean checks default */
  color: #5265FF;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px; /* Nicely aligns check icon with text baseline */
}

.vf-benefits-card-check-d8f42a svg {
  width: 14px;
  height: 14px;
  fill: #5265FF;
}

.vf-benefits-card-text-d8f42a {
  font-size: 16px;
  color: #1F2A44;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
}

/* Image Area - Align to bottom and contain properly to avoid head cut-offs */
.vf-benefits-card-media-d8f42a {
  width: 42%;
  display: flex;
  align-items: flex-end; /* Align perfectly to the bottom to avoid head cut-offs */
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0;
  align-self: stretch;
}

.vf-benefits-card-image-d8f42a {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps person whole without cropping */
  object-position: bottom right; /* Pin woman bottom right exactly */
}

/* Layout Directions based on Prefix Class */
.vf-layout-dir-row .vf-benefits-card-inner-d8f42a {
  flex-direction: row;
}

.vf-layout-dir-row-reverse .vf-benefits-card-inner-d8f42a {
  flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .vf-benefits-card-content-d8f42a {
    padding: 36px;
  }
}

@media (max-width: 767px) {
  .vf-benefits-card-inner-d8f42a {
    flex-direction: column !important;
  }
  
  .vf-benefits-card-content-d8f42a {
    width: 100% !important;
    padding: 30px 24px;
  }
  
  .vf-benefits-card-media-d8f42a {
    width: 100% !important;
    height: 300px;
    justify-content: center;
    align-items: flex-end;
  }

  .vf-benefits-card-image-d8f42a {
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
}
