/* Minlong Pic Text 2 Component */
.minlong-pic-text2-section {
  position: relative;
  padding: var(--component-gap) 0;
  overflow: hidden;
}

/* Background wrapper */
.minlong-pic-text2-section .bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.minlong-pic-text2-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.minlong-pic-text2-section .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.75;
}

.minlong-pic-text2-section .container {
  position: relative;
  z-index: 1;
}

/* Content wrapper */
.minlong-pic-text2-section .content-wrapper {
  display: flex;
  gap: 100px;
  align-items: center;
}

/* Left content */
.minlong-pic-text2-section .left-content {
  flex: 1;
  min-width: 0;
}

/* Section header */
.minlong-pic-text2-section .section-header {
  margin-bottom: 100px;
}

.minlong-pic-text2-section .section-title {
  font-family: var(--semibold-font-family);
  font-size: var(--title-size-h3);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.minlong-pic-text2-section .section-title::before,
.minlong-pic-text2-section .section-title::after{
  left:50%;
  transform:translateX(-50%);
  background:#fff ;
}
.minlong-pic-text2-section .title-decoration {
  display: flex;
  gap: 5px;
}

.minlong-pic-text2-section .decor-line {
  width: 50px;
  height: 1px;
  background: #fff;
}

.minlong-pic-text2-section .decor-line-short {
  width: 15px;
  height: 1px;
  background: #fff;
}

/* Content blocks */
.minlong-pic-text2-section .content-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.minlong-pic-text2-section .content-block {
  padding: 30px 0;
}

.minlong-pic-text2-section .block-title {
  font-family: var(--semibold-font-family);
  font-size: var(    --title-size-h5);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 15px;
}

.minlong-pic-text2-section .block-desc {
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: 1.625;
  color: #fff;
  margin: 0;
}

.minlong-pic-text2-section .block-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

/* Right image */
.minlong-pic-text2-section .right-image {
  flex: 0 0 50%;
}

.minlong-pic-text2-section .image-wrapper {
  width: 100%;
  aspect-ratio: 70/48;
  overflow: hidden;
}

.minlong-pic-text2-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .minlong-pic-text2-section .content-wrapper {
    gap: 50px;
  }

  .minlong-pic-text2-section .right-image {
    /* flex: 0 0 350px; */
  }

  .minlong-pic-text2-section .section-header {
    margin-bottom: 70px;
  }

  .minlong-pic-text2-section .content-block {
    padding: 24px 0;
  }
}

@media screen and (max-width: 992px) {
  .minlong-pic-text2-section .content-wrapper {
    flex-direction: column;
    gap: var(--component-gap-lg);
  }

  .minlong-pic-text2-section .right-image {
    flex: 0 0 auto;
    width: 100%;
    margin: 0 auto;
  }

  .minlong-pic-text2-section .section-header {
    margin-bottom: 40px;
  }

  .minlong-pic-text2-section .content-block {
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .minlong-pic-text2-section .section-header {
    margin-bottom: 40px;
  }

  .minlong-pic-text2-section .content-block {
    padding: 16px 0;
  }

  .minlong-pic-text2-section .right-image {
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .minlong-pic-text2-section .section-header {
    margin-bottom: 40px;
  }

  .minlong-pic-text2-section .content-block {
    padding: 14px 0;
  }

  .minlong-pic-text2-section .block-title {
    margin-bottom: 10px;
  }
}