/* Custom styles for Max's Listening Log */

/* Album section with cover on left */
.album-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
  clear: both;
}

.album-cover {
  flex-shrink: 0;
  width: 200px;
}

.album-cover img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.album-content {
  flex: 1;
  min-width: 0; /* Prevents flex item from overflowing */
  line-height: 1.7; /* Better readability */
}

.album-content h2 {
  margin-top: 0;
  line-height: 1.3; /* Tighter for headers */
}

.album-content h2:first-child {
  margin-top: 0;
}

.album-content p {
  margin-bottom: 1em;
}

/* Dark mode adjustments */
html[data-theme="dark"] .album-cover img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .album-section {
    flex-direction: column;
  }
  
  .album-cover {
    width: 100%;
    max-width: 300px;
  }
}
