.community-heading {
  text-align: center;
  font-size: 3rem;
  font-family: 'Genos', sans-serif;
  font-weight: 1000;
  margin-bottom: 20px;
  color: #3a78d3;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}

.community-card {

  border: 3px solid #3a78d3;
  border-radius: 14px;

  padding: 22px;

  text-align: center;

  background: rgba(255,255,255,0.04);

  transition: transform 0.25s ease;

  text-decoration: none;
  color: inherit;
}

.community-card:hover {
  transform: translateY(-4px);
}

.community-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.community-icon img{
  width:48px;
  height:48px;
}

.community-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.community-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.community-tag {
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.6;
}