.pd-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,0.12));
  margin: 24px 0;
  transition: border-color .15s, transform .15s;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", Roboto, sans-serif;
}
.pd-card:hover {
  border-color: var(--green, #00bd6e);
}

.pd-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--bg-soft, #f5f5f5);
  border: 1px solid var(--border, rgba(0,0,0,0.12));
  flex-shrink: 0;
}

.pd-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-card-title {
  font-weight: 500;
  font-size: 15px;
  color: var(--black, rgba(0,0,0,0.87));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.pd-card-meta {
  font-size: 13px;
  font-weight: 400;
  color: var(--transparent-grey, rgba(0,0,0,0.38));
  display: flex;
  gap: 12px;
  align-items: center;
}

.pd-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green, #00bd6e);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.pd-card-btn:hover {
  background: var(--green-dark, #00b368);
  color: #fff !important;
}
.pd-card-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 600px) {
  .pd-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .pd-card-btn {
    width: 100%;
    justify-content: center;
  }
}
