.service-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  min-height: 80px;
}

.service-item--align-top {
  align-items: flex-start;
}

/* Icon Area */
.service-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #D9D9D9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.service-item__icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* SVG占位符样式 */
.service-item__icon-placeholder-svg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  z-index: 1 !important;
  fill: #FFFFFF !important;
  opacity: 0.5 !important;
}

/* Content Area */
.service-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.service-item__title {
  margin: 0 !important;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: rgb(var(--color-text)) !important;
  letter-spacing: 0 !important;
  word-break: break-word;
  text-transform: capitalize !important;
}

.service-item__description {
  margin: 0 !important;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: rgb(var(--color-light-text)) !important;
  letter-spacing: 0 !important;
  word-break: break-word;
  text-transform: none !important;
}

/* Mobile Responsive - 959px 断点 */
@media (max-width: 959px) {
  .service-item {
    gap: 12px;
  }

  .service-item__icon {
    width: 80px;
    height: 80px;
  }

  .service-item__title {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: rgb(var(--color-text)) !important;
  }

  .service-item__description {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: rgb(var(--color-light-text)) !important;
    text-transform: none !important;
  }
}

