/* Shengwang About Pic Text Component Styles */

.shengwang-about-pic-text {
  padding: 80px 0;
  background-color: #F5F5F5;
}

/* Container max-width */
@media screen and (min-width: 1600px) {
  .shengwang-about-pic-text .container {
    max-width: 1360px;
  }
}

/* Inner Container */
.shengwang-about-pic-text .pic-text-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* Images Section */
.shengwang-about-pic-text .pic-text-images {
  width: 100%;
}

.shengwang-about-pic-text .image-container {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 704/939;
}

.shengwang-about-pic-text .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section */
.shengwang-about-pic-text .pic-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shengwang-about-pic-text .content-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.11;
  color: #000000;
  margin: 0;
}

.shengwang-about-pic-text .content-title {
  font-family: var(--title-font-family);
  font-size: var(--shengwang-title);
  font-weight: 600;
  line-height: 1.39;
  color: #000000;
  margin: 0;
}

.shengwang-about-pic-text .content-title strong {
      color: var(--color-primary);
    }

.shengwang-about-pic-text .content-desc {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1400px) {
  .shengwang-about-pic-text .pic-text-inner {
    gap: 60px;
  }
}

@media screen and (max-width: 1200px) {
  .shengwang-about-pic-text {
    padding: 60px 0;
  }
  .shengwang-about-pic-text .pic-text-inner {
    gap: 50px;
  }
}

@media screen and (max-width: 992px) {
  .shengwang-about-pic-text {
    padding: 50px 0;
  }
  .shengwang-about-pic-text .pic-text-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .shengwang-about-pic-text .content-subtitle {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .shengwang-about-pic-text {
    padding: 40px 0;
  }
  .shengwang-about-pic-text .pic-text-inner {
    gap: 30px;
  }
  .shengwang-about-pic-text .image-container {
    border-radius: 16px;
  }
  .shengwang-about-pic-text .pic-text-content {
    gap: 20px;
  }
  .shengwang-about-pic-text .content-subtitle {
    font-size: 14px;
  }
  .shengwang-about-pic-text .content-desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .shengwang-about-pic-text {
    padding: 30px 0;
  }
  .shengwang-about-pic-text .pic-text-inner {
    gap: 20px;
  }
  .shengwang-about-pic-text .image-container {
    border-radius: 12px;
  }
  .shengwang-about-pic-text .pic-text-content {
    gap: 16px;
  }
  .shengwang-about-pic-text .content-subtitle {
    font-size: 12px;
  }
  .shengwang-about-pic-text .content-desc {
    font-size: 13px;
  }
}
