#goods-placehold {
  margin-top: 24px;
}

#goods-placehold .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#goods-placehold .row .col {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px 22px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

#goods-placehold .row .col:hover {
  border-color: var(--color-border-strong);
  background: var(--color-surface-alt);
}

#goods-placehold .row .col_active {
  border-color: var(--color-ink);
  background: var(--color-surface-alt);
}

#goods-placehold .row .col .choose {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-top-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  background: var(--color-ink);
  color: #fff;
}

#goods-placehold .row .col .img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
}

#goods-placehold .row .col .img img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

#goods-placehold .row .col .h_2 {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.25;
  color: var(--color-ink);
  text-align: center;
}

#goods-placehold .row .col .h_1 {
  margin-top: 10px;
  min-height: 54px;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
  color: var(--color-text);
}

#goods-placehold .row .statistics {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

#goods-placehold .row .statistics_label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

#goods-placehold .row .statistics_value {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1;
  color: var(--color-ink-soft);
}

#goods-placehold .resume-note {
  width: min(100%, 560px);
  margin: 0 0 14px;
  padding: 0 0 0 12px;
  border-left: 2px solid var(--color-accent);
  background: transparent;
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
  color: var(--color-ink-soft);
}

#goods-placehold .resume-note strong {
  color: var(--color-ink);
}

#goods-placehold .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 22px;
}

#goods-placehold .actions .button {
  min-width: 240px;
  padding: 0 40px;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-sm);
  background: var(--color-ink);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.18s ease, opacity 0.18s ease;
}

#goods-placehold .actions .button:hover {
  background: #141f31;
}

#goods-placehold .actions .button_text {
  margin: 0;
  font-size: 16px;
  line-height: 54px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#goods-placehold .actions .button_primary.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

#goods-placehold .actions .button_caption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-text-muted);
}

@media (max-width: 960px) {
  #goods-placehold .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  #goods-placehold .row .col {
    min-height: 240px;
    padding: 22px 16px 20px;
  }

  #goods-placehold .row .col .img {
    min-height: 72px;
  }

  #goods-placehold .row .col .img img {
    width: 64px;
    height: 64px;
  }

  #goods-placehold .row .col .h_2 {
    margin-top: 14px;
    font-size: 18px;
  }

  #goods-placehold .row .col .h_1 {
    min-height: 56px;
    font-size: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  #goods-placehold .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  #goods-placehold .row .col {
    min-height: 198px;
    padding: 16px 8px 14px;
  }

  #goods-placehold .row .col .img {
    min-height: 52px;
  }

  #goods-placehold .row .col .img img {
    width: 44px;
    height: 44px;
  }

  #goods-placehold .row .col .h_2 {
    margin-top: 10px;
    min-height: 38px;
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #goods-placehold .row .col .h_1 {
    margin-top: 6px;
    min-height: 48px;
    font-size: 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #goods-placehold .row .statistics {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    gap: 4px;
  }

  #goods-placehold .row .statistics_label {
    font-size: 9px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  #goods-placehold .row .statistics_value {
    font-size: 14px;
  }

  #goods-placehold .row .col .choose {
    width: 30px;
    height: 30px;
  }

  #goods-placehold .actions .button {
    width: 100%;
    min-width: 0;
    padding: 0 20px;
  }

  #goods-placehold .actions .button_text {
    line-height: 50px;
  }
}

@media (max-width: 420px) {
  #goods-placehold .row .col {
    min-height: 188px;
    padding: 14px 7px 12px;
  }

  #goods-placehold .row .col .h_2 {
    font-size: 13px;
  }

  #goods-placehold .row .col .h_1 {
    min-height: 44px;
    font-size: 9px;
  }

  #goods-placehold .row .statistics_label {
    font-size: 8px;
  }

  #goods-placehold .row .statistics_value {
    font-size: 13px;
  }
}
