/* privatelypublic — stuff.html-only overrides.
   Reuses the sitewide .embed/.embed-label/.gallery/.status-bubble/.is-placeholder
   components from style.css, adding page-specific modifiers style.css doesn't
   have yet: .embed.image (photos/GIFs), .embed.excerpt (book quotes), and
   .embed.linkcard (no-embed recs like Netflix). */

.updated-badge {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: 4px 9px;
  margin-bottom: 16px;
}

.stuff-feed {
  background: var(--paper);
  padding: 10px 0 70px;
}

.stuff-entry {
  max-width: 640px;
  margin: 0 auto 56px;
}

.stuff-entry .embed-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 6px;
}

.stuff-icon { width: 16px; height: 16px; flex-shrink: 0; }

.stuff-date {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

/* new .embed modifiers, matching the existing .embed/.embed.video language */

.embed.image {
  position: relative;
  padding-top: 66%;
}

.embed.image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.embed.excerpt {
  padding: 26px 28px;
  font-family: "Spectral", Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
}

.embed.linkcard { padding: 20px 22px; }

.placeholder-fill--linkcard { padding: 0; }
