
/* style.css */
.ccgp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 2rem auto;
  max-width: 1200px;
}

.ccgp-card {
  border: 0.8px dashed #b6a7a0;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.ccgp-image {
  background-size: cover;
  background-position: center;
  height: 200px;
  border-bottom: 0.8px dashed #b6a7a0;
}

.ccgp-content {
  padding: 1rem;
}

.ccgp-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.ccgp-content a {
  text-decoration: none;
  color: #556;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.ccgp-content a::after {
  content: ' →';
  margin-left: 0.25rem;
}


 @media only screen and (max-width: 600px) {
   .ccgp-grid {
		padding: 1rem;
   }
}

