/* ==========================================================================
   Project Spotlight Grid & Cards
   ========================================================================== */

   .spotlight-section {
    position: relative;
    background: #141414;
    border: 1px solid rgba(212, 184, 134, 0.35);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    margin-bottom: 5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(212, 184, 134, 0.15);
  }
  
  /* Subtle background glow */
  .spotlight-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(212, 184, 134, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
  }
  
  /* Two-column grid container */
  .spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  /* Card layout */
  .spotlight-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .spotlight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .spotlight-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(212, 184, 134, 0.12);
    border: 1px solid #d4b886;
    color: #d4b886;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
  }
  
  .spotlight-category {
    color: #a3a3a3;
    font-size: 0.85rem;
  }
  
  .spotlight-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
  }
  
  .spotlight-description {
    color: #a3a3a3;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1; /* Pushes button down if card contents vary in height */
  }
  
  .spotlight-cta {
    margin-top: 0.5rem;
  }
  
  .spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.75rem;
    background-color: #d4b886;
    color: #0d0d0d;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  
  .spotlight-btn:hover {
    background-color: #c2a368;
    transform: translateY(-2px);
  }