/* new section */
.sc-highlight-card {
  background-color: #F2FBF6;
  padding-top: 64px;
  padding-bottom: 64px;
}
.sc-highlight-card .article-slide .content {
  min-height: 540px;
  justify-content: start;
}
.sc-highlight-card .article-slider {
  margin-top: 160px;
}
.sc-highlight-card .article-slide {
  background-color: #FFFFFF;
}
.sc-highlight-card p.card-header {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #111111;
  margin-bottom: 25px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEEEEE ;
}
.sc-highlight-card .heading-h3 {
  text-align: center;
}
.sc-highlight-card .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc-highlight-card .thumb img {
  margin-top: -130px;
  max-width: 200px;
}
.sc-highlight-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-highlight-card .feature-item {
    margin-bottom: 8px;
    position: relative;
    padding-left: 32px;
}
.sc-highlight-card .feature-item:last-child {
  margin-bottom: 0;
}

.sc-highlight-card .feature-item::before {
    content: "";
    background-image: url("/SiteCollectionDocuments/business/sme/digital-banking/kshop/img-new-section/kshop-persona-check.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
}

.sc-highlight-card .feature-title {
    font-weight: 600;
    color: #00A94F;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
    line-height: 24px;
}

.sc-highlight-card .feature-description {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.sc-highlight-card .slick-slider .slick-dots li.slick-active button {
  width: 24px;
  border-radius: 50px;
}

/* Toggle Button Styles */
.sc-highlight-card .toggle-details {
    display: none;
    width: 100%;
    background: linear-gradient(135deg, #00A94F 0%, #00C851 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.sc-highlight-card .toggle-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.sc-highlight-card .toggle-details:hover::before {
    left: 100%;
}

.sc-highlight-card .toggle-details:active {
    transform: scale(0.98);
}

.sc-highlight-card .toggle-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
    .sc-highlight-card .toggle-details {
        display: block;
        background: transparent;
        margin-top: 25px;
    }

    .sc-highlight-card .toggle-details span {
      font-size: 16px;
      font-weight: 600;
      text-decoration: underline;
      color: #00A94F;
    }
    
    .sc-highlight-card .feature-list {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
        padding-top: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    
    .sc-highlight-card .feature-list.expanded {
        max-height: 800px;
        opacity: 1;
        margin-top: 0;
        padding-top: 20px;
    }
    
    .sc-highlight-card .feature-item {
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .sc-highlight-card .feature-list.expanded .feature-item {
        transform: translateY(0);
        opacity: 1;
    }
    
    .sc-highlight-card .feature-list.expanded .feature-item:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .sc-highlight-card .feature-list.expanded .feature-item:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .sc-highlight-card .feature-list.expanded .feature-item:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .sc-highlight-card .feature-list.expanded .feature-item:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    /* .sc-highlight-card .toggle-details.expanded .toggle-icon {
        transform: rotate(180deg);
    } */
    
    .sc-highlight-card .content {
        padding-bottom: 32px;
    }
    .sc-highlight-card p.card-header {
      margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) {
    .sc-highlight-card .feature-list {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .sc-highlight-card .feature-item {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .sc-highlight-card .toggle-details {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
  .sc-highlight-card .article-slider {
    margin-top: 24px;
  }
  .sc-highlight-card .article-slide {
    background: transparent;
    box-shadow: unset;
    position: relative;
    min-height: 400px;
  }
  .sc-highlight-card .thumb img {
    position: relative;
    z-index: 9;
    margin-top: 0;
  }
  .sc-highlight-card .content {
    position: absolute;
    top: 25%;
    z-index: 1;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    padding-top: 120px;
  }
  .sc-highlight-card .article-slide .content {
    min-height: unset;
  }
  .sc-highlight-card .article-slide .content:has(.toggle-details.expanded) {
    /* min-height: 800px; */
    top: 11%;
  }
  .sc-highlight-card .article-slide:has(.toggle-details.expanded) {
    min-height: 800px;
  }
  
}

@media screen and (min-width: 768px) {
  .sc-highlight-card .slick-list {
    overflow: visible;
  }
  .sc-highlight-card .article-slide {
    overflow: visible;
  }
  .sc-highlight-card .thumb {
    overflow: visible;
  }
}


.sc-article.sc-business-article {
  background-color: #F2FBF6;
}

