/* Spotlight Page Styles */

.spotlight-hero {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  padding: 120px 0 60px;
  text-align: center;
  color: white;
}

.spotlight-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.spotlight-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.spotlight-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  min-height: 60vh;
}

/* Pinterest-style Masonry Grid */
.spotlight-grid {
  column-count: 3;
  column-gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .spotlight-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .spotlight-grid {
    column-count: 1;
  }
}

/* Spotlight Card */
.spotlight-card {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 24px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
}

.spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.spotlight-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #e9ecef;
}

.spotlight-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.spotlight-card:hover .spotlight-image img {
  transform: scale(1.05);
}

.spotlight-content {
  padding: 20px;
}

.spotlight-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.spotlight-content p {
  font-size: 0.95rem;
  color: #7f8c8d;
  margin-bottom: 15px;
  line-height: 1.6;
}

.spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.spotlight-link:hover {
  color: #764ba2;
}

.spotlight-link i {
  font-size: 0.75rem;
}

/* Empty State */
.empty-state {
  padding: 40px 20px;
}

.empty-state p {
  font-size: 1.1rem;
  margin-top: 10px;
}

.empty-state a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.empty-state a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .spotlight-hero h1 {
    font-size: 2.25rem;
  }

  .spotlight-hero p {
    font-size: 1.1rem;
  }

  .spotlight-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .spotlight-hero {
    padding: 100px 0 40px;
  }

  .spotlight-hero h1 {
    font-size: 1.85rem;
  }

  .spotlight-hero p {
    font-size: 1rem;
  }

  .spotlight-content {
    padding: 16px;
  }

  .spotlight-content h3 {
    font-size: 1.1rem;
  }
}
