.shooting-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1000px; 
  padding: 0 15px;
}
.shooting-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #222;
}

.shooting-card {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  height: 220px;
  transition: transform 0.3s ease;
  color: white;
  text-decoration: none;
}

.shooting-card:hover {
  transform: scale(1.02);
}

.shooting-card.full-width {
  flex: 0 0 100%;
  height: 280px;
}

.shooting-card.half-width {
  flex: 0 0 48%;
}

.shooting-card.third-width {
  flex: 0 0 31.5%;
}

.card-overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
}

.card-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.card-overlay p {
  margin: 5px 0 10px;
  font-size: 14px;
}

.card-button {
  background-color: #007bff;
  color: #fff;
  padding: 7px 16px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.card-button:hover {
  background-color: #0056b3;
}

/* Responsive layout */
@media (max-width: 768px) {
  .shooting-card.full-width,
  .shooting-card.half-width,
  .shooting-card.third-width {
    flex: 0 0 100%;
  }
}
