.section-share {
    background: #373737;  
    color: var(--color-light);
    padding: 60px 0px;
    margin: 92px 0;  
}

.content-left,
.image-right {
    flex: 1;
}
.features-grid {
    display: grid;
    grid-template-columns: 266px 266px;
    gap: 97px;
}
.features-grid .card img {
    height: 240px;
    border-radius: 5px;
}
.f-card-des {
    padding: 30px 0px;
}
.s-desc {
    padding: 30px 0px 80px;
    max-width: 540px;
}


.section-share.style2 {
    background-color: transparent;
}
.section-share.style2 .share-content {
    max-width: 1432px;
    border-radius: 5px;
    padding-top: 80px;
    padding-right: 40px;
    padding-bottom: 80px;
    padding-left: 100px;
    background: #373737;
    gap: 126px;
}

.share-image-caption {
    color: var(--color-light);
}

.section-share.style2 .share-content .content-left {
    flex: 0 1 592px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-width: 0;
}

.section-share.style2 .share-content .content-left .h-l {
    line-height: 1.12;
}

.section-share.style2 .share-content .content-left .s-desc {
    line-height: 1.412;
}

.section-share.style2 .share-content .content-left .card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    min-width: 0;
}

.section-share.style2 .share-content .content-left .card .card-detail-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;

}

.section-share.style2 .share-content .content-left .card .h-xs {
    line-height: 1.273;
}

.section-share.style2 .share-content .image-right {
    flex: 0 1 574px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.section-share.style2 .share-content .image-right img {
    width: 100%;
    height: 100%;
}

.section-share.style2 .share-content .image-right .image-caption {
    display: block;
}

.section-share.style2 .share-content .image-right .image-caption.body-xs {
    line-height: 1.231;
    padding: 0;
}

.section-share.style2 .share-content .button-container .btn {
    width: 215px;
}



.section-share.style2 .features-grid {
    grid-template-columns: repeat(2, minmax(180px, 266px));
    gap: 60px;
}

.section-share.style2 .features-grid .card .button-container {
    margin-top: auto;
}



.section-share.style2 .card img {
    display: none;
}



.section-share.style2 .share-content .f-card-des {
    line-height: 1.412;
    padding: 0;
}

.section-share.style2 .share-content .s-desc,
.section-share.style2 .share-content .h-l,
.story-list-item
{
    padding: 0;
    max-width: 473px;
}

.story-list-item{
    margin-top: -26px;
}
.story-list-item ul li{
    
    list-style: disc;
    margin-left: 25px;
}
.story-list-item ul li:not(:last-child) {
    margin-bottom: 15px;
}

@media(min-width:768px) {
    .share-content {
        display: flex;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .section-share {
        padding: 50px 0px 30px;
        margin: 32px 0; 
    }
    .features-grid {
        gap: 0px;
        gap: 16px;
    }
   
    .s-desc {
        padding: 20px 0px 50px;
    }
    .history-image {
        margin-bottom: 50px;
    }

    .section-share.style2 .share-content .hide-md-up {
        display: none;
    }

    .section-share.style2 .share-content {
        flex-direction: column;
        gap: 40px;
    }

    .section-share.style2 .share-content .content-left {
        flex: none;
    }


}


@media(max-width:768px) {

    .story-list-item{
    margin-top: 25px;
}
    .section-share.style2 {
        background: #373737;
        padding: 0;
        margin: 0;
        margin-bottom: 64px;
    }

    .section-share.style2 .share-content {

        gap: 40px;
        border-radius: 5px;
        padding: 44px 0;
    }
    .section-share.style2 .share-content .content-left {
        padding-bottom: 40px;
    }
    .section-share.style2 .share-content .content-left .s-desc {
        margin-top: 24px;
    }

    .section-share.style2 .share-content .content-left {
        gap: 0;
    }

    .section-share.style2 .features-grid {
        margin-top: 56px;
        grid-template-columns: minmax(0, 390px);
        gap: 40px;

    }

    .section-share.style2 .share-content .content-left .card {
        gap: 16px;
        min-width: 0;
    }

    .section-share.style2 .share-content .image-right img {
        display: block;
    }

    .section-share.style2 .share-content .image-right {
        flex: none;
    }
    .features-grid {
        grid-template-columns: 48% 48%;
    }
}


/* Click cursor */
.section-share.style2 .lightbox-img {
  cursor: pointer; 
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-share.style2 .lightbox-img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* Overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  animation: fadeIn 0.2s ease;
}

/* Image */
.lightbox-full {
  max-width: 90%;
  max-height: 90%;
  /* border-radius: 10px; */
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

