@layer components {
  .finalist-story-list {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
  }

  .finalist-story-row {
    display: flex;
    align-items: center;
    gap: var(--s4);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    padding: var(--s4);
  }

  .finalist-story-thumb {
    width: 64px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    overflow: hidden;
  }

  .finalist-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .finalist-story-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .finalist-story-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
