/* Baby Fred Update — 03/22/2026 21:42 Eastern
   Home page spotlight cards styled to echo Singles page,
   but with a lighter tone, 3-column layout, and wider spacing.
*/

body.page-id-7 .bf-home-spotlight-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

body.page-id-7 .bf-home-spotlight-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

body.page-id-7 .bf-home-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 2.5rem 2.75rem;
  align-items: start;
}

body.page-id-7 .bf-home-card {
  background: linear-gradient(180deg, #8fc8d2 0%, #74b7c4 100%);
  border: 2px solid #7bb9c3;
  border-radius: 14px;
  padding: 0.75rem 0.75rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.page-id-7 .bf-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

body.page-id-7 .bf-home-image-link {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

body.page-id-7 .bf-home-image-link img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.page-id-7 .bf-home-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 35, 0.66);
  color: #f5fbfc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.98rem;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 0.22s ease;
}

body.page-id-7 .bf-home-image-link:hover .bf-home-hover-overlay,
body.page-id-7 .bf-home-image-link:focus .bf-home-hover-overlay {
  opacity: 1;
}

body.page-id-7 .bf-home-card-title {
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  margin: 1rem 0 0.45rem;
}

body.page-id-7 .bf-home-card-title a {
  color: #ffffff;
  text-decoration: none;
}

body.page-id-7 .bf-home-card-title a:hover {
  text-decoration: underline;
}

body.page-id-7 .bf-home-card-tagline {
  text-align: center;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

body.page-id-7 .bf-home-card-note {
  color: #f8ffff;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0.85rem 0;
  text-align: center;
}

body.page-id-7 .bf-home-card audio {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  border-radius: 8px;
}

body.page-id-7 .bf-home-card-linkrow {
  margin-top: 1rem;
  text-align: center;
}

body.page-id-7 .bf-home-card-linkrow a {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #1c4c55;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.page-id-7 .bf-home-card-linkrow a:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  body.page-id-7 .bf-home-spotlight-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 700px) {
  body.page-id-7 .bf-home-spotlight-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-7 .bf-home-spotlight-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Baby Fred Update April 18 2026 — Album title vs date separation */
.bf-album-title {
  font-weight: bold;
  font-size: 2.0rem;
  color: #2aa198; /* your teal */
}

.bf-release-date {
  color: #000; /* or inherit if your body text is already black */
  font-weight: normal;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-left: 6px;
}
.bf-band-description {
  font-size: 1.1rem;
  color: #00000f; 
}
