/* Worth Knowing — shared publisher chrome */
:root {
  --wk-pine: #0d1f18;
  --wk-moss: #3d6b52;
  --wk-chartreuse: #d6f26a;
  --wk-paper: #eef2e8;
  --wk-ink: #121a16;
  --wk-muted: #4a5a50;
  --wk-line: rgba(13, 31, 24, 0.14);
}

.wk-top {
  width: min(920px, 100%);
  margin: 0 auto 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
  animation: wk-fade 0.7s ease both;
}

@media (min-width: 1100px) {
  .wk-top { width: min(1040px, 92vw); }
}

.wk-mark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #eef2e8;
  text-decoration: none;
  position: relative;
}

.wk-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--wk-chartreuse);
  transition: width 0.35s ease;
}

.wk-mark:hover { color: var(--wk-chartreuse); }
.wk-mark:hover::after { width: 100%; }

.wk-home {
  font-size: 12px;
  font-weight: 600;
  color: rgba(214, 242, 106, 0.9);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.wk-home:hover { text-decoration: underline; text-underline-offset: 2px; }

@keyframes wk-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

@keyframes wk-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes wk-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.frame {
  animation: wk-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scene {
  margin: 0;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.scene img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 420px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: wk-ken 16s ease-out both;
}

.scene figcaption {
  line-height: 1.3;
  padding: 8px 22px 10px;
  font-size: 11px;
  color: var(--wk-muted);
  background: rgba(238, 242, 232, 0.94);
  border-bottom: 1px solid var(--wk-line);
}

.scene figcaption a {
  color: var(--wk-moss);
}

/* Guide list polish */
.wk-row-rise {
  animation: wk-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wk-row-rise:nth-child(1) { animation-delay: 0.05s; }
.wk-row-rise:nth-child(2) { animation-delay: 0.1s; }
.wk-row-rise:nth-child(3) { animation-delay: 0.15s; }
.wk-row-rise:nth-child(4) { animation-delay: 0.2s; }
.wk-row-rise:nth-child(5) { animation-delay: 0.25s; }
.wk-row-rise:nth-child(6) { animation-delay: 0.3s; }
.wk-row-rise:nth-child(7) { animation-delay: 0.35s; }
