/* SkillDesign Product Meta Widget – invisible-table layout (labels & values on the same row) */
.sdpmw { font-family: inherit; line-height: 1.45; --sdpmw-label-col: 300px; }
.sdpmw-price { font-weight: 700; margin: 0 0 8px 0; }
.sdpmw-sep { border-top: 2px dashed #e5e5e5; margin: 20px 0; }
.sdpmw-row {
  display: grid;
  grid-template-columns: var(--sdpmw-label-col) 1fr;
  column-gap: 16px;
  align-items: center;
}
.sdpmw-label { color: #6b7280; }
.sdpmw-value { color: #111827; font-weight: 600; word-break: break-word; }
.sdpmw-cats a { text-decoration: none; }
.sdpmw-cats a:hover { text-decoration: underline; }
