.rcg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.rcg-card {
  text-align: center;
  transition: all 0.3s ease;
}
.rcg-card img {
  width: 100%;
  height: auto;
  display: block;
}
.rcg-card p {
  margin-top: 8px;
  font-size: 14px;
}
