/* Community Overview Section */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.community-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.community-card h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.community-card p {
  color: var(--text-dark);
  font-size: 1rem;
}

/* Forum Section */
.forum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.forum-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forum-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.forum-header h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.forum-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.forum-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.forum-content {
  padding: 1.5rem;
}

.forum-content p {
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .community-grid,
  .forum-grid {
    grid-template-columns: 1fr;
  }

  .community-card h3,
  .forum-header h3 {
    font-size: 1.25rem;
  }

  .community-card i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .community-card,
  .forum-card {
    padding: 1.5rem;
  }

  .forum-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.w95 {
  width: 95%;
}
.w90 {
  width: 90%;
}
.w85 {
  width: 85%;
}
.w80 {
  width: 80%;
}