/* ---- Blog Listing ---- */
.post-row a:hover .post-row__title {
  color: var(--hover);
}

.post-row {
  border-bottom: 1px solid var(--border);
}

.post-row:first-child {
  border-top: 1px solid var(--border);
}

.post-row a {
  padding: 1.25rem 0;
}

.post-row__summary {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 0.3rem;
  line-height: 1.5;
}

.post-row__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.post-row a {
  align-items: flex-start;
}

/* ---- Blog Post ---- */
.post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  transition: color 0.2s;
}

.post__back:hover {
  color: var(--hover);
}

.post__header {
  margin-bottom: 2rem;
}

.post__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post__meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-secondary);
  opacity: 0.5;
}

.post__title {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.post__lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 40em;
}

.post__video {
  margin: 3rem 0;
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .post__video {
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.post__body {
  font-size: 1.05rem;
  line-height: 1.75;
}

.post__body > section + section {
  margin-top: 3rem;
}

.post__body h2 {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.post__body h2::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--hover);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.post__body p {
  margin-bottom: 1.1rem;
  color: var(--text);
}

.post__body p:last-child {
  margin-bottom: 0;
}

.post__body strong {
  font-weight: 700;
  color: var(--text);
}

.post__body ul {
  margin: 0.25rem 0 1.25rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post__body ul li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.post__body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--hover);
  font-weight: 600;
}

.post__body a:not(.ts) {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.post__body a:not(.ts):hover {
  color: var(--hover);
  border-color: var(--hover);
}

/* ---- Video Timestamp Chips ---- */
.ts {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem 0.15rem;
  margin: 0 0.1rem;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  vertical-align: baseline;
  line-height: 1.4;
  white-space: nowrap;
}

.ts::before {
  content: "▶";
  font-size: 0.55rem;
  margin-right: 0.3rem;
  transform: translateY(-1px);
  display: inline-block;
  color: var(--hover);
}

.ts:hover {
  color: var(--text);
  border-color: var(--hover);
  background: var(--card-bg);
}

/* ---- Pull Quote ---- */
.pullquote {
  margin: 2.5rem 0;
  padding: 0 0 0 1.75rem;
  border-left: 3px solid var(--hover);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text);
}

/* ---- Sign Off ---- */
.post__sign-off {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post__sign-off p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.post__sign-off .sig {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .post__back {
    margin-bottom: 2rem;
  }

  .post__lede {
    font-size: 1.05rem;
  }

  .post__body {
    font-size: 1rem;
  }

  .post__body h2 {
    font-size: 1.3rem;
  }

  .pullquote {
    font-size: 1.1rem;
    padding-left: 1.25rem;
  }

  .post__video {
    margin: 2rem 0;
  }
}
