.g-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 16px;
  margin: 16px 0;
  background: rgba(255,255,255,.65);
}

.g-card__link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.g-card__image{
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
}

.g-card__title{
  font-weight: 700;
  margin-bottom: 6px;
}

.g-card__content{
  opacity: .9;
}


.g-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

/* responsive: stack on small screens */
@media (max-width: 900px) {
  .g-cards {
    grid-template-columns: 1fr;
  }
}
