
.cgg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.cgg-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: background 0.3s;
}
.cgg-card.sticky {
  background: #fffbe6;
  border-color: #f5d14f;
}
.cgg-thumb {
  width: 100%;
  max-height: 180px;
  overflow: hidden;
}
.cgg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cgg-info {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cgg-info h3 {
  font-size: 16px;
  margin: 5px 0;
  font-weight: bold;
}
.cgg-info p {
  font-size: 14px;
  margin: 5px 0;
  color: #333;
}
.cgg-meta {
  font-size: 12px;
  color: #777;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cgg-meta .cgg-price {
  color: #0a8754;
  font-weight: bold;
}
.cgg-meta .cgg-date {
  color: #555;
}
@media (max-width: 767px) {
  .cgg-card {
    flex-direction: row;
  }
  .cgg-thumb {
    flex: 0 0 120px;
    max-width: 120px;
    max-height: none;
  }
  .cgg-thumb img {
    height: 100%;
  }
}
.cgg-more-wrapper {
  text-align: center;
  margin-top: 30px;
}
.cgg-more-btn {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.cgg-more-btn:hover {
  background: #005f8d;
}
