/* now-watching.css — depends on site.css tokens */

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

.page-head h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  margin: 0 0 8px;
  line-height: 1;
}

.page-head p {
  font-size: 15px;
  color: #555;
  margin: 0 0 8px;
  font-family: var(--font-mono);
}

.page-head .count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--meta-grey);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 22px;
  margin: 40px 0 56px;
}

.poster-card {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.poster-frame {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
  border: 1px solid var(--line-grey);
  position: relative;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.poster-card:hover .poster-frame img { transform: scale(1.035); }

.poster-meta h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
}

.poster-meta .sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--meta-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.stars { color: var(--ink); letter-spacing: 1px; font-size: 11px; white-space: nowrap; }
.heart { font-size: 11px; margin-left: 5px; }
.heart.is-liked { color: #c0392b; }
.heart.not-liked { color: var(--line-grey); }

.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.pagination .dots { display: flex; align-items: center; gap: 18px; }
.pagination .dots .seg { width: 56px; height: 1px; background: var(--line-grey); }

.pagination .page-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: var(--line-grey);
  cursor: pointer;
  padding: 0;
  display: inline-block;
  text-decoration: none;
}

.pagination .page-dot.is-current { background: var(--ink); transform: scale(1.15); }

.pagination .page-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--meta-grey);
}

@media (max-width: 980px) { .poster-grid { grid-template-columns: repeat(4, 1fr); } }

@media (max-width: 720px) {
  .page-head h1 { font-size: 42px; }
  .poster-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 14px; }
  .poster-meta h2 { font-size: 16px; }
}

@media (max-width: 480px) { .poster-grid { grid-template-columns: repeat(2, 1fr); } }
