/* Shengwang Process Component Styles */

.shengwang-process {
  background: linear-gradient(180deg, #F9F9F9 0%, #F5F5F5 100%);
  padding: 80px 0;
}

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

/* Section Header */
.shengwang-process .process-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shengwang-process .header-title {
  font-family: var(--title-font-family);
  font-size: var(--shengwang-inner-title);
  font-weight: 500;
  line-height: 1.219;
  color: #000000;
  margin: 0;
  max-width: 1058px;
}

.shengwang-process .header-desc {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.019em;
  color: #666666;
  margin: 0;
  max-width: 1058px;
}

/* Process Grid - 2 columns */
.shengwang-process .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 35px;
}

/* Process Item */
.shengwang-process .process-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Item Image Wrapper */
.shengwang-process .item-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 430 / 309;
  overflow: hidden;
}

.shengwang-process .item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Overlay */
.shengwang-process .item-content {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  flex: 1;
}

.shengwang-process .content-inner {
  background: #FFFFFF;
  padding: 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

/* Item Title */
.shengwang-process .item-title {
  font-family: var(--title-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #222222;
  margin: 0;
}

/* Item Description */
.shengwang-process .item-desc {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.219;
  letter-spacing: 0.019em;
  color: #222222;
  margin: 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 这里是超出几行省略 */
  overflow: hidden;
}

/* Responsive Styles */
@media screen and (max-width: 1400px) {
  .shengwang-process {
    padding: 70px 0;
  }

  .shengwang-process .process-header {
    margin-bottom: 45px;
  }

  .shengwang-process .process-grid {
    gap: 30px;
  }

  .shengwang-process .header-desc {
    font-size: 15px;
  }

  .shengwang-process .item-title {
    font-size: 19px;
  }

  .shengwang-process .item-desc {
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .shengwang-process {
    padding: 60px 0;
  }

  .shengwang-process .process-header {
    margin-bottom: 40px;
  }

  .shengwang-process .process-grid {
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
  }

  .shengwang-process .header-desc {
    font-size: 14px;
  }

  .shengwang-process .item-title {
    font-size: 18px;
  }

  .shengwang-process .item-desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  .shengwang-process {
    padding: 50px 0;
  }

  .shengwang-process .process-header {
    margin-bottom: 35px;
  }



  .shengwang-process .item-title {
    font-size: 17px;
  }

  .shengwang-process .item-desc {
    font-size: 13px;
  }

  .shengwang-process .content-inner {
    padding: 14px;
  }
}

@media screen and (max-width: 768px) {
    /* Change to single column layout */
    .shengwang-process .process-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  .shengwang-process {
    padding: 40px 0;
  }

  .shengwang-process .process-header {
    margin-bottom: 30px;
  }

  .shengwang-process .process-grid {
    gap: 25px;
  }

  .shengwang-process .header-desc {
    font-size: 13px;
  }

  .shengwang-process .item-title {
    font-size: 16px;
  }

  .shengwang-process .item-desc {
    font-size: 12px;
  }

  .shengwang-process .item-content {
    padding: 12px;
  }

  .shengwang-process .content-inner {
    padding: 12px;
    gap: 8px;
  }
}

@media screen and (max-width: 576px) {
  .shengwang-process {
    padding: 30px 0;
  }

  .shengwang-process .process-header {
    margin-bottom: 25px;
  }

  .shengwang-process .process-grid {
    gap: 20px;
  }

  .shengwang-process .header-desc {
    font-size: 12px;
  }

  .shengwang-process .item-title {
    font-size: 15px;
  }

  .shengwang-process .item-desc {
    font-size: 11px;
  }

  .shengwang-process .item-content {
    padding: 10px;
  }

  .shengwang-process .content-inner {
    padding: 10px;
    gap: 6px;
  }
}