/**
 * Listen Page - Album Discography Grid
 * Fairwood Brothers
 */

.fb-listen-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.fb-listen-intro {
  text-align: center;
  margin-bottom: 40px;
}

.fb-listen-intro h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.fb-listen-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Album Grid */
.fb-album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.fb-album-card {
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.fb-album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.fb-album-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.fb-album-info {
  padding: 14px 16px 16px;
}

.fb-album-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.fb-album-name + .fb-album-subtitle {
  margin-top: -6px;
}

.fb-album-subtitle {
  font-size: 0.75rem;
  color: #aaa;
  font-style: italic;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* Streaming Links Row */
.fb-stream-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fb-stream-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.fb-stream-link:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

.fb-stream-link--spotify {
  background: #1DB954;
}

.fb-stream-link--apple {
  background: #fc3c44;
}

.fb-stream-link--amazon {
  background: #25d1da;
  color: #111;
}

.fb-stream-link--amazon:hover {
  color: #111;
}

.fb-stream-link--pandora {
  background: #3668ff;
}

/* Stream icon (small circle with letter) */
.fb-stream-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
}

.fb-stream-link--amazon .fb-stream-icon {
  background: rgba(0,0,0,0.15);
}

/* Spotify Embed Section */
.fb-listen-player {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.fb-listen-player h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .fb-album-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .fb-album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .fb-album-info {
    padding: 10px 12px 12px;
  }

  .fb-stream-link {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .fb-album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fb-album-name {
    font-size: 0.85rem;
  }

  .fb-stream-links {
    gap: 4px;
  }

  .fb-stream-link {
    padding: 3px 6px;
    font-size: 0.65rem;
  }
}
