.release-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:2rem;
}
.release-card {
  background:var(--surf);
  padding:1.5rem; border:1px solid var(--accent);
  border-radius:8px; text-align:center;
}
.release-card img {
  width:100%; height:auto; border-radius:4px;
  margin-bottom:1rem;
}
/* Make sure this is included in your site! */

.section-releases.music-page {
  margin-top: 120px;
  padding-top: 2rem;
}

.section-releases h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Base grid container */
.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
}

/* Card styling used by both Music & Tour */
.release-card {
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.release-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}

/* Ensure images and headings look the same */
.release-card img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1rem;
  border-radius: 6px;
}
.release-card h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0.5rem 0;
}

/* Buttons */
.listen-btn {
  margin-top: auto;
  padding: 0.6rem 2rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.listen-btn:hover {
  background: #c40710;
}
.bandcamp-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect */
  height: 0;
  overflow: hidden;
}
.bandcamp-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
/* ABOUT & CONTACT SHARED STYLES */
.section-simple {
  margin-top: 120px;          /* clear sticky header */
  padding: 3rem 2rem;         /* top/bottom & sides */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-simple h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  color: #fff;
}
.simple-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 1.25rem;
}
/* Contact lists */
.simple-content ul {
  list-style: none;
  padding: 0;
}
.simple-content ul li {
  margin-bottom: 0.75rem;
  color: #ddd;
}
.simple-content ul li a {
  color: var(--accent);
}
.simple-content ul li strong {
  color: #fff;
}
