/* Card Grid Layout */
.ph-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px;
}
.ph-card {
  background: var(--ph-bg-card);
  border-radius: 16px;
  border: 1px solid var(--ph-border);
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
	position: relative;
  box-shadow: 0 18px 45px var(--ph-shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ph-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--ph-shadow);
    border-color: var(--ph-accent);
}
.ph-card-thumb {
  display: block;
  margin: -16px -18px 0 -18px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.ph-card-image {
  width: 100%;
  height: auto;
  display: block;
	transition:transform 0.3s ease;
}
.ph-card:hover .ph-card-image {
	transform: scale(1.05);
}
.ph-title {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.ph-title a {
  color: var(--ph-text-main);
	transition: color 0.3s ease;
}
.ph-title a:hover {
  color: var(--ph-text-light);
}
.ph-version-tag {
  color: var(--ph-accent);
  font-weight: 400;
	margin-left: 7px;
}
.ph-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--ph-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ph-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: auto !important;
}
.ph-card-stats {
	display:flex;
	gap:15px;
}