.insurance-cards-section-wrapper {
  max-width: 1366px;
  margin: 0 auto;
  padding: 24px 20px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #333;
}

.insurance-cards-section-wrapper .insurance-header-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.insurance-cards-section-wrapper .insurance-header-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  color: #233253;
}

.insurance-cards-section-wrapper .insurance-header-wrap p {
  font-size: 18px;
  color: #666666;
  margin: 0;
}

.insurance-cards-section-wrapper .cmp-plan-cards__scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0px 0 20px 0;
}

.insurance-cards-section-wrapper .cmp-plan-cards__scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.insurance-cards-section-wrapper .cmp-plan-cards__scroll-wrapper::-webkit-scrollbar-track {
  background-color: #e6e7e8;
  height: 4px;
  border-radius: 8px;
  margin: 0 80px;
}

.insurance-cards-section-wrapper .cmp-plan-cards__scroll-wrapper::-webkit-scrollbar-thumb {
  max-width: 20px;
  border-radius: 8px;
  height: 4px;
  background-color: #58595b;
}

.insurance-cards-section-wrapper .cmp-plan-cards__scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #e6e7e8;
}

/* Card Flex/Grid Container */
.insurance-cards-section-wrapper .plan-cards-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 0 25px 10px 25px;
}

.insurance-cards-section-wrapper .plan-cards-card {
  /* flex: 0 0 270px; */
  flex: auto;
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: visible;
  margin-bottom: 12px;
}

.insurance-cards-section-wrapper .plan-cards-image-wrapper {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.insurance-cards-section-wrapper .plan-cards-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insurance-cards-section-wrapper .plan-cards-content {
  position: absolute;
  bottom: -17%;
  right: 0;
  /* max-width: 264px; */
  background: #ffffff;
  border-radius: 12px;
  border-top-right-radius: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% - 16px);
  justify-content: space-between;
  box-shadow: 0 0px 16px 0 rgba(0, 0, 0, 0.25);
}

.insurance-cards-section-wrapper .plan-cards-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .insurance-cards-section-wrapper .plan-cards-card {
    flex: 0 0 240px;
    width: 100%;
    max-width: 184px;
  }

  .insurance-cards-section-wrapper .insurance-header-wrap {
    margin-bottom: 20px;
  }
  
  .insurance-cards-section-wrapper .cmp-plan-cards__scroll-wrapper {
    padding-bottom: 32px;
  }

  .insurance-cards-section-wrapper.plan-cards-content {
    bottom: -10%;
  }

  .insurance-cards-section-wrapper .plan-cards-card-title {
    font-size: 12px;
  }

  .insurance-cards-section-wrapper .plan-cards-content {
    padding: 12px;
  }
  .insurance-cards-section-wrapper .insurance-header-wrap h2 {
    font-size: 18px;
  }

  .insurance-cards-section-wrapper .insurance-header-wrap p {
    font-size: 14px;
  }
  .insurance-cards-section-wrapper .plan-cards-container {
    padding: 0;
    justify-content: flex-start;
  }
  .insurance-cards-section-wrapper .plan-cards-image-wrapper {
    height: 110px;
  }
}

.insurance-cards-section-wrapper .plan-cards-arrow-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
