.about-section--goods {
  background: #f5f5f6;
  min-height: auto;
}

.goods-list {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  margin-top: 48px;
}

.goods-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  line-height: 1.6;
}

.goods-num {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #3CB4A4;
  flex-shrink: 0;
}

.goods-title {
  font-size: clamp(12px, 1.1vw, 14px);
  color: #111;
}

@media (max-width: 768px) {
  .goods-list {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .goods-list li {
    padding: 18px 0;
    border-right: none;
    border-left: none;
    border-top: none;
  }
}

/* Pattern 2 — White Cards */
.goods-p2 {
  background: #fff;
}
.goods-p2 .goods-list {
  border: none;
  gap: 14px;
}
.goods-p2 .goods-list li {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 24px 24px 24px 22px;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.goods-p2 .goods-list li:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: #ccc;
}
.goods-p2 .goods-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 44px;
  color: rgba(0,0,0,0.05);
  letter-spacing: 0;
  line-height: 1;
  font-weight: bold;
  font-variant-numeric: tabular-nums;
}
.goods-p2 .goods-title {
  font-size: 13px;
  color: #111;
  padding-right: 36px;
  line-height: 1.7;
}

/* Pattern 3 — Dark Editorial */
.goods-p3 {
  background: #111;
}
.goods-p3 .about-section-label {
  color: rgba(255,255,255,0.4);
}
.goods-p3 .goods-list {
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: none;
}
.goods-p3 .goods-list li {
  align-items: center;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: none;
}
.goods-p3 .goods-num {
  color: #3CB4A4;
  width: 32px;
  flex-shrink: 0;
}
.goods-p3 .goods-title {
  font-size: clamp(13px, 1.2vw, 15px);
  color: #fff;
}

@media (max-width: 768px) {
  .goods-p2 .goods-list {
    grid-template-columns: 1fr;
  }
  .goods-p3 .goods-list {
    border-left: none;
  }
  .goods-p3 .goods-list li {
    padding: 18px 0;
    border-right: none;
  }
}

