/* === Feature Section (产品详情页交替布局) === */
.features {
  padding: 40px 0;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 240px;
  padding: 80px 0;
}

/* 奇数行：左图右文 */
.feature-row:nth-child(odd) {
  flex-direction: row;
}

/* 偶数行：左文右图 */
.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-row__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-row__image img {
  max-width: 380px;
  width: 100%;
  height: auto;
}

.feature-row__content {
  flex: 1;
}

.feature-row__title {
  font-size: var(--font-size-30);
  font-weight: 600;
  color: var(--color-text-base);
  margin-bottom: 20px;
}

.feature-row__desc {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-loose);
}

.feature-row__desc p {
  margin-bottom: 8px;
}

.feature-row__desc p:last-child {
  margin-bottom: 0;
}
