/* ============================================
   LIST.CSS - Top-Listen Styling
   Design: Editorial & Elegant
   Mit expliziten Klassen für maximale Kontrolle
   ============================================ */

/* --- Basis Container --- */
.top-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
}

/* --- Header --- */
.top-list-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.top-list-intro {
  font-size: 1.1rem;
  margin-block: 1rem;
  line-height: 1.8;
    font-size: 0.8rem;

  @media (width > 800px) {font-size: 1rem;}
}

/* --- Honorable Mentions --- */
.honorable-mentions {
  padding-inline: 2rem;
  border-radius: 8px;
  margin-bottom: 4rem;
}

.honorable-mentions h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.honorable-mentions em {
  color: #666;
  font-size: 0.9rem;
}

.honorable-mentions table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.honorable-mentions th,
.honorable-mentions td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.honorable-mentions th {
  font-weight: 600;
  color: #fff;
}

/* --- Album Entry Container --- */
.album-entry {
  margin: 4rem 0;
  padding-bottom: 3rem;
  border-bottom: 2px solid #e8e8e8;
}

.album-entry:last-child {
  border-bottom: none;
}

/* --- Rank Number --- */
.album-rank {
  font-size: 3rem;
  font-weight: 700;
  color: #c090f7;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  line-height: 1;
}

/* --- Artist & Album Title --- */
.album-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.album-artist {
  font-weight: 700;
  color: #1a1a1a;
}

.album-name {
  font-weight: 400;
  color: #555;
  font-style: italic;
}

/* --- Album Cover --- */
.album-cover {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Center album covers on larger viewports */
@media (min-width: 768px) {
  .album-cover {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.album-cover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* --- Meta Information (Blockquote) --- */
.album-meta {
  background: #e0eaf5;
  border-left: 4px solid #c090f7;
  padding: 1rem 1.5rem;
  margin: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #495057;
}

.album-meta p {
  margin: 0.5rem 0;
}

.release-date {
  font-weight: 500;
}

.label {
  font-weight: 500;
}

.listen-link {
  color: #570179;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.listen-link:hover {
  color: #c090f7;
  text-decoration: underline;
}

/* --- Album Text / Description --- */
.album-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.album-text p {
  margin: 1rem 0;
  font-size: 0.8rem;

  @media (width > 800px) {font-size: 1rem;}
}

.album-text strong {
  font-weight: 600;
  color: #1a1a1a;
}

.album-text em {
  font-style: italic;
  color: #570179;
  
}

/* --- Links allgemein --- */
.top-list a {
  color: #c090f7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-list a:hover {
  color: #c090f7;
  text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .top-list {
    padding: 1rem 0.5rem;
  }
  
  .top-list-header h1 {
    font-size: 2rem;
  }
  
  .album-rank {
    font-size: 2.5rem;
  }
  
  .album-title {
    font-size: 1.3rem;
  }
  
  .album-cover {
    max-width: 100%;
  }
  
  .honorable-mentions {
    padding: 1rem;
  }
  
  .album-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .top-list-header h1 {
    font-size: 1.75rem;
  }
  
  .album-rank {
    font-size: 2rem;
  }
  
  .album-title {
    font-size: 1.1rem;
  }
  
  .album-meta {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .album-text {
    font-size: 0.95rem;
  }
}

/* --- Special: Top 3 Highlighting --- */
.album-entry:nth-child(1) .album-rank, /* #1 */
.album-entry:nth-child(2) .album-rank, /* #2 */
.album-entry:nth-child(3) .album-rank  /* #3 */ {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Alternative: Spezifische Klassen für Top 3 */
.album-entry.rank-1 .album-rank {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.album-entry.rank-2 .album-rank {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.album-entry.rank-3 .album-rank {
  background: linear-gradient(135deg, #cd7f32 0%, #e6a85c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}