/**
 * Theme Name:     NGO App
 * Author:         R J Mattock
 * Template:       Divi
 * Text Domain:	   ngo-app
 * Description:    Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
 */
.shoot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}

.shoot-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.shoot-card:hover {
  transform: translateY(-4px);
}

.shoot-image img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 12px;
}

.shoot-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.shoot-meta {
  font-size: 14px;
  color: #666;
}

.shoot-button {
  display: inline-block;
  margin-top: 12px;
  background: #2b7a6d;
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.shoot-button:hover {
  background: #1f5c52;
}