.community-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 110px;
  }
  
  .community-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .community-card img {
    width: 100%;
    height: 300px; /* Increased height */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  
  .community-card:hover {
    transform: translateY(-5px);
  }
  
  .community-card:hover img {
    transform: scale(1.05);
  }
  
  /* Optional: On very small screens, you might want one per row */
  @media (max-width: 480px) {
    .community-card {
      flex: 1 1 100%;
      max-width: 100%;
      font-size: 8px;
    }
    .community-grid {

        margin-top: 124px;
    
  }
}
  .community-info {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    text-align: center; /* Ensures text alignment */
    font-size: 12px;
    padding-top: 5px;
    font-family: 'Franie-Light';

  }

  .community-details {
    padding: 18px;
 
  }


  .developer-logo-container {
    display: flex;
    flex-direction: column; /* Stack logo and title vertically */
    align-items: center; /* Center align horizontally */
    gap: 20px; /* Add space between logo and title */
}

.developer-logo {
    width: 270px;
    height: auto;
    margin-top: 20px;
}

