.detail-product-evidence,
.detail-product-faq {
  grid-column: 1 / -1;
}

.detail-product-evidence .detail-panel-head p:last-child {
  max-width: 72ch;
  margin: 7px 0 0;
  color: var(--store-ink-soft);
  line-height: 1.55;
}

.detail-evidence-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  border-block: 1px solid var(--store-line-soft);
}

.detail-evidence-grid div {
  min-width: 0;
  padding: 15px 13px;
  border-right: 1px solid var(--store-line-soft);
}

.detail-evidence-grid div:last-child {
  border-right: 0;
}

.detail-evidence-grid dt {
  color: var(--store-ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.detail-evidence-grid dd {
  margin: 5px 0 0;
  color: var(--store-ink);
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.detail-evidence-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 20px;
}

.detail-evidence-copy h3 {
  margin: 0;
  color: var(--store-ink);
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.9rem;
}

.detail-evidence-copy p {
  margin: 7px 0 0;
  color: var(--store-ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.detail-evidence-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.detail-evidence-actions .detail-policy-link {
  margin-top: 0;
}

.detail-evidence-source {
  margin: 14px 0 0;
  color: var(--store-ink-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.detail-faq-list {
  display: grid;
}

.detail-faq-list details {
  border-bottom: 1px solid var(--store-line-soft);
}

.detail-faq-list details:last-child {
  border-bottom: 0;
}

.detail-faq-list summary {
  padding: 13px 2px;
  color: var(--store-ink);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.45;
}

.detail-faq-list p {
  max-width: 88ch;
  margin: -2px 0 15px;
  color: var(--store-ink-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .detail-evidence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-evidence-grid div:nth-child(3) {
    border-right: 0;
  }

  .detail-evidence-grid div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--store-line-soft);
  }
}

@media (max-width: 600px) {
  .detail-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-evidence-grid div:nth-child(3) {
    border-right: 1px solid var(--store-line-soft);
  }

  .detail-evidence-grid div:nth-child(2n) {
    border-right: 0;
  }

  .detail-evidence-grid div:nth-child(-n + 4) {
    border-bottom: 1px solid var(--store-line-soft);
  }

  .detail-evidence-copy {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .detail-evidence-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-evidence-actions .btn,
  .detail-evidence-actions .detail-policy-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
