/* ── ARTICLE PAGE ── */
.article-page {
  max-width: 640px;
}

.article-page-cover {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.article-page-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-page-meta {
  font-size: 14px;
  color: var(--subtle);
  margin-bottom: 12px;
}

.article-page-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.article-page-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-page-body p {
  font-size: 16px;
  line-height: 1.6;
}

.article-page-link {
  color: var(--accent);
  text-decoration: underline;
}

.browser-mockup {
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  padding: 8px;
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.article-page-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.article-page-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.article-page-video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-page-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  box-shadow:
    0 8px 16px -6px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.article-page-video:hover .article-page-video-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.05);
}
.article-page-video-play svg {
  margin-left: 3px;
}

/* Hand-drawn marker underline */
.marker {
  background-image: linear-gradient(rgba(170, 9, 17, 0.15), rgba(170, 9, 17, 0.15));
  background-repeat: no-repeat;
  background-size: 100% 0.9em;
  background-position: 1px 60%;
  padding: 0 1px;
}
.marker:nth-of-type(2n) { transform: rotate(-0.4deg); display: inline-block; background-position: -2px 55%; }
.marker:nth-of-type(3n) { transform: rotate(0.3deg); display: inline-block; background-position: 3px 65%; }
