/* Shengwang Protection Practices Component Styles */

.shengwang-protection-practices {
  background-color: #FFFFFF;
  padding: 80px 0;
}

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

/* Section Header */
.shengwang-protection-practices .practices-header {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shengwang-protection-practices .practices-header .light{
  color:#898989;
}
.shengwang-protection-practices .header-title {
  font-family: var(--title-font-family);
  font-size: var(--shengwang-inner-title);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.018em;
  color: #000000;
}

.shengwang-protection-practices .header-desc {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.023em;
  color: #50545A;
  max-width: 329px;
  text-align: left;
}

/* Practices List */
.shengwang-protection-practices .practices-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Practice Item */
.shengwang-protection-practices .practice-item {
  display: block;
  transition: opacity 0.3s ease;
}

.shengwang-protection-practices .practice-item-hidden {
  display: none;
}

.shengwang-protection-practices .item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shengwang-protection-practices .item-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.shengwang-protection-practices .item-title {
  font-family: var(--title-font-family);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.013em;
  color: #000000;
  /* flex: 1; */
  width: 50%;
  max-width: 478px;
  transition: color 0.3s ease;
}

.shengwang-protection-practices .item-toggle {
  background: transparent;
  border: 3px solid #979797;
  border-radius: 20px;
  padding: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.shengwang-protection-practices .item-toggle i{
  font-size:25px;
  color:#737373;
  transition: all 0.3s ease;
}
.shengwang-protection-practices .item-toggle .toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  display: block;
}

/* Active State - Expanded */
.shengwang-protection-practices .practice-item.active .item-toggle {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.shengwang-protection-practices .practice-item.active .item-toggle i {
  transform: rotate(180deg);
  color:#fff;
}

/* Item Content */
.shengwang-protection-practices .item-content {
  display: none;
  margin-top: 26px;
}

.shengwang-protection-practices .practice-item.active .item-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.shengwang-protection-practices .item-desc {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.73;
  letter-spacing: -0.021em;
  color: #000000;
  margin: 0;
  flex: 1;
  max-width: 554px;
}

/* Item Images */
.shengwang-protection-practices .item-images {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.shengwang-protection-practices .image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.shengwang-protection-practices .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Load More Section */
.shengwang-protection-practices .practices-load-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.shengwang-protection-practices .load-more-btn {
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 18px;
  padding: 22px 38px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 297px;
  height: 72px;
}

.shengwang-protection-practices .load-more-btn .btn-text {
  font-family: var(--title-font-family);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.038em;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.shengwang-protection-practices .load-more-btn:hover {
  background: var(--color-primary);
}

.shengwang-protection-practices .load-more-btn:hover .btn-text {
  color: #FFFFFF;
}

.shengwang-protection-practices .practices-load-more.hidden {
  display: none;
}

/* Responsive Styles */
@media screen and (max-width: 1600px) {
.shengwang-protection-practices .item-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1400px) {
  .shengwang-protection-practices {
    padding: 70px 0;
  }

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

  .shengwang-protection-practices .practices-list {
    gap: 90px;
  }

  .shengwang-protection-practices .item-title {
    font-size: 24px;
  }

  .shengwang-protection-practices .load-more-btn .btn-text {
    font-size: 20px;
  }
}

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

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

  .shengwang-protection-practices .practices-list {
    gap: 80px;
  }

  .shengwang-protection-practices .item-title {
    font-size: 20px;
  }

  .shengwang-protection-practices .item-toggle {
    width: 44px;
    height: 44px;
  }

  .shengwang-protection-practices .image-wrapper {
  }
}

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

  .shengwang-protection-practices .practices-header {
    margin-bottom: 35px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .shengwang-protection-practices .practices-list {
    gap: 60px;
  }

  .shengwang-protection-practices .item-title {
    font-size: 17px;
    width: 100%;
    max-width: unset;
  }

  .shengwang-protection-practices .item-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .shengwang-protection-practices .item-desc {
    max-width: 100%;
  }

  .shengwang-protection-practices .item-images {
    width: 100%;
  }

  .shengwang-protection-practices .image-wrapper {
  }

  .shengwang-protection-practices .practices-load-more {
    margin-top: 40px;
  }

  .shengwang-protection-practices .load-more-btn {
    min-width: 260px;
    height: 64px;
    padding: 20px 32px;
  }

  .shengwang-protection-practices .load-more-btn .btn-text {
    font-size: 18px;
  }
  .shengwang-protection-practices .header-desc{
    max-width:unset;
  }
  .shengwang-protection-practices .item-header{
    flex-direction:column;
  }
}

@media screen and (max-width: 768px) {
  .shengwang-protection-practices {
    padding: 40px 0;
  }

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

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

  .shengwang-protection-practices .practices-list {
    gap: 50px;
  }

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

  .shengwang-protection-practices .item-toggle {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .shengwang-protection-practices .item-toggle .toggle-icon {
    width: 20px;
    height: 20px;
  }

  .shengwang-protection-practices .item-content {
    margin-top: 20px;
  }

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

  .shengwang-protection-practices .image-wrapper {
  }

  .shengwang-protection-practices .practices-load-more {
    margin-top: 35px;
  }

  .shengwang-protection-practices .load-more-btn {
    min-width: 240px;
    height: 56px;
    padding: 16px 28px;
  }

  .shengwang-protection-practices .load-more-btn .btn-text {
    font-size: 16px;
  }
}

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

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

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

  .shengwang-protection-practices .practices-list {
    gap: 40px;
  }

  .shengwang-protection-practices .item-header {
    gap: 16px;
  }
  .shengwang-protection-practices .item-header-right {
    gap: 8px;
  }
  .shengwang-protection-practices .item-title {
    font-size: 15px;
  }

  .shengwang-protection-practices .item-toggle {
    width: 36px;
    height: 36px;
  }

  .shengwang-protection-practices .item-toggle .toggle-icon {
    width: 18px;
    height: 18px;
  }

  .shengwang-protection-practices .item-content {
    margin-top: 16px;
    gap: 16px;
  }

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

  .shengwang-protection-practices .item-images {
    gap: 8px;
  }

  .shengwang-protection-practices .image-wrapper {
  }

  .shengwang-protection-practices .practices-load-more {
    margin-top: 30px;
  }

  .shengwang-protection-practices .load-more-btn {
    min-width: 200px;
    height: 48px;
    padding: 14px 24px;
    border-radius: 14px;
  }

  .shengwang-protection-practices .load-more-btn .btn-text {
    font-size: 14px;
  }
}