/* ────────────────
   Table of Contents
────────────────── */
/*
1. General Layout
2. Elementor Tweaks
3. Album Pages
   - Traces Of The Flood (page-id-13942)
   - Big Sky – Collections (page-id-13405)
   - Hide featured image (page-id-14129, page-id-13991)
4. Post Styling
5. Press & Playlist Grid
*/

/* ────────────────
   1. General Layout
────────────────── */
.wp-block-group__inner-container {
  text-align: center;
}

#wp-admin-bar-elementor_notes {
  display: none !important;
}

/* ────────────────
   2. Elementor Tweaks
────────────────── */
/* Hide "Share the Post" heading */
.elementor-element-ad5f440 {
  display: none;
}

/* Hide Share Buttons icons */
.elementor-widget-share-buttons {
  display: none;
}

/* ────────────────
   3. Album Pages
────────────────── */
/* Traces Of The Flood (page-id-13942) */
/* Big Sky – Collections (page-id-13405) */
.page-id-13942 .post-thumbnail a img,
.page-id-13405 .post-thumbnail a img {
  transition: transform 0.3s ease-in-out;
  display: block;
}

.page-id-13942 .post-thumbnail a:hover img,
.page-id-13405 .post-thumbnail a:hover img {
  transform: scale(1.2);
}

/* Ensure the image stays within its container */
.page-id-13942 .post-thumbnail,
.page-id-13405 .post-thumbnail {
  overflow: hidden;
}

/* Smaller entry titles */
.page-id-13942 h2.entry-title,
.page-id-13942 h2.entry-title a,
.page-id-13405 h2.entry-title,
.page-id-13405 h2.entry-title a {
  font-size: 0.9em !important;
  line-height: 1.2em;
}

/* Hide featured image only on pages 14129 (new album) and 13991 */
.page-id-14129 img.attachment-post-thumbnail.wp-post-image,
.page-id-13991 img.attachment-post-thumbnail.wp-post-image {
  display: none !important;
}

/* ────────────────
   4. Post Styling
────────────────── */
/* Style "Read More" links */
.more-link {
  font-style: italic;
}

/* Style published entry date */
.entry-date.published {
  color: #a7c7d3;
}

/* ────────────────
   5. Press & Playlist Grid
────────────────── */
.bc-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.bc-press-grid li {
  background: #111;
  color: #fff;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.bc-press-grid li:hover {
  transform: translateY(-4px);
  background: #222;
}

.bc-press-grid li strong {
  color: #e63946; /* accent color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bc-press-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 480px) {
  .bc-press-grid {
    grid-template-columns: 1fr; /* single column on mobile */
  }
}
