/* Shared genre examples component; loaded only where its markup is rendered. */
.genre-examples {
  margin: 16px 0 24px;
}
.genre-examples h3 {
  font-size: 18px;
  margin: 0 0 12px;
}
.genre-examples-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.genre-example-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  text-align: center;
}
.genre-example-cover {
  display: block;
  width: 80px;
  height: 112px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 6px;
}
.genre-example-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.genre-example-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.genre-examples .genre-example-info .lnk {
  font-size: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.genre-example-author {
  font-size: 11px;
  color: #888;
}
@media (max-width: 600px) {
  .genre-examples-grid {
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .genre-example-item {
    width: 80px;
    flex-shrink: 0;
  }
  .genre-example-cover {
    width: 64px;
    height: 90px;
  }
}
