
.songs-wrapper { margin-top: 16px; }

.year-header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.songs-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.songs-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
}

.song-cell{
  border: 1px solid #ffffff;
  padding: 12px 12px 10px 12px;
  text-align: center;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.song-cell.expandable { cursor: pointer; }

.month{ font-weight: bold; margin-bottom: 6px; }

.cover{
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
}

.expand-note{
  font-size: 12px;
  margin-top: 14px;
}

.hidden{ display:none; }

.expanded-view{
  border: 1px solid #ffffff;
  padding: 16px 16px 34px 16px;
  text-align: center;
  position: relative;
}

.expanded-cover{
  max-width: 300px;
  margin: 10px 0;
}

.listen-row{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.listen-row a{ display: inline-flex; }

.listen-row img{
  width: 24px;
  vertical-align: middle;
}
.collapse-hint{
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-size: 12px;
  opacity: 0.9;
  cursor: pointer;
}

.collapse-target{ cursor: pointer; }

@media (max-width: 768px){
  .songs-grid{ grid-template-columns: 1fr; }

  .song-cell{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    text-align: left;
  }

  .song-left{ text-align: left; }

  .song-cell .cover{
  width: 80px;
  order: 2;
  margin-bottom: 0;
  margin-left: 12px;
  margin-right: 6px;
}

  .song-left{ order: 1; }

  .expand-note{
    margin-top: 4px;
  }
}
