 
  .venue-feed {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .venue-feed a {
    text-decoration: none;
  }
  
  .venue-feed h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .venue-feed p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .feed-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
  }
  
  .feed-item:hover {
    transform: scale(1.05);
  }
  
  .feed-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .feed-item h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
  }
  
  .feed-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
  }
  
  .feed-item p span {
    font-weight: bold;
    color: #e74c3c;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .venue-feed h2 {
      font-size: 20px;
    }
  
    .venue-feed p {
      font-size: 14px;
    }
  
    .feed-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
    }
  
    .feed-item h3 {
      font-size: 16px;
    }
  
    .feed-item p {
      font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .venue-feed h2 {
      font-size: 18px;
      text-align: center;
    }
  
    .venue-feed p {
      font-size: 12px;
      text-align: center;
    }
  
    .feed-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  
    .feed-item img {
      height: 120px;
    }
  }
  
  .feed-item .description {
    font-size: 12px;
    color: #666;
    margin: 5px 0 10px;
    line-height: 1.4;
  }
  