/* Outing card layout for discover page */
.outings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5%;
  justify-content: flex-start;
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}
.outing-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  margin: 0;
  width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  transition: box-shadow 0.18s;
  cursor: pointer;
}
.outing-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
}
.outing-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.outing-meta {
  color: #666;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.outing-host {
  color: #0078d4;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.outing-participants {
  font-size: 0.98rem;
  color: #444;
}
.outing-join-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: #0078d4;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s;
}
.outing-join-btn:hover {
  background: #005fa3;
}
@media (max-width: 700px) {
  .outings-list {
    flex-direction: column;
    gap: 1.2rem 0;
    align-items: center;
  }
  .outing-card {
    width: 98vw;
    min-width: 0;
    padding: 1.1rem 0.7rem 0.9rem 0.7rem;
  }
}
