.oneshot-page {
  --text: #171717;
  --muted: #666;
  --line: rgba(0, 0, 0, 0.1);
  --soft: #f6f6f6;
  padding-bottom: 48px;
}

.oneshot-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.oneshot-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.oneshot-cover {
  position: relative;
}

.oneshot-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  background: #eee;
}

.oneshot-number {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  min-width: 34px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.oneshot-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.oneshot-info h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 700;
}

.oneshot-year {
  flex: 0 0 auto;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: #444;
  font-size: 0.85rem;
  font-weight: 700;
}

.oneshot-edit {
  display: inline-block;
  margin-bottom: 14px;
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
}

.oneshot-edit:hover {
  text-decoration: underline;
}

.oneshot-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.oneshot-info-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}

.oneshot-info-label,
.oneshot-author-role {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oneshot-info-value,
.oneshot-author-name {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.oneshot-authors-block {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.oneshot-authors-block h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oneshot-authors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oneshot-author-item {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.oneshot-empty {
  text-align: center;
}

@media (max-width: 600px) {
  .oneshot-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .oneshot-cover {
    max-width: 220px;
    margin: 0 auto;
  }

  .oneshot-info h2 {
    font-size: 1.2rem;
  }

  .oneshot-title-row {
    flex-direction: column;
    gap: 8px;
  }

  .oneshot-details {
    grid-template-columns: 1fr;
  }

  .oneshot-authors {
    flex-direction: column;
  }

  .oneshot-author-item {
    min-width: 0;
  }
}
