
.apg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
}

.apg-card {
  width: calc(50% - 15px);
  max-width: 300px;
  text-align: center;
}

.apg-thumb img {
  width: 100%;
  height: auto;
  border: 2px solid #000;
  border-radius: 12px;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.apg-title {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  padding: 8px 4px;
  line-height: 1.4;
  margin-top: 5px;
  background: transparent;
}

.apg-title a {
  text-decoration: none;
  color: #000;
}

@media (max-width: 768px) {
  .apg-card {
    width: calc(50% - 10px);
  }
}
