/*
 * DHV Experience Reset — public-home Feed surface.
 * 13.44.13 closes the Homepage reset with accessibility, edge-state and touch-landscape hardening.
 * Isolated namespace: dhvx-. No legacy public selector is overridden here.
 */
:root {
  --dhvx-canvas: #fbfaf8;
  --dhvx-surface: #ffffff;
  --dhvx-surface-soft: #f5f4f1;
  --dhvx-text: #171717;
  --dhvx-text-secondary: #66645f;
  --dhvx-text-muted: #8b8881;
  --dhvx-border: #e7e4de;
  --dhvx-border-strong: #d7d3cb;
  --dhvx-brand: #d82831;
  --dhvx-brand-strong: #b91f27;
  --dhvx-focus: #1f6feb;
  --dhvx-radius-sm: 4px;
  --dhvx-radius-md: 8px;
  --dhvx-radius-lg: 12px;
  --dhvx-left: 222px;
  --dhvx-feed: 692px;
  --dhvx-right: 304px;
  --dhvx-gap: 22px;
  --dhvx-mobile-top: 54px;
  --dhvx-mobile-bottom: 62px;
}

* { box-sizing: border-box; }
html { background: var(--dhvx-canvas); }
body.dhvx-preview-body,
body.dhvx-experience-body {
  margin: 0;
  background: var(--dhvx-canvas);
  color: var(--dhvx-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--dhvx-brand); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--dhvx-focus); outline: 3px solid color-mix(in srgb, var(--dhvx-focus) 34%, transparent); outline-offset: 2px; }
img { display: block; max-width: 100%; height: auto; }
.dhvx-icon { display: block; flex: 0 0 auto; color: currentColor; }

.dhvx-nav a,
.dhvx-account-card,
.dhvx-feed-tabs a,
.dhvx-commerce__cta,
.dhvx-action,
.dhvx-mobile-icon,
.dhvx-bottom-nav a {
  -webkit-tap-highlight-color: transparent;
  transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.dhvx-sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.dhvx-skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 8px 12px;
  border-radius: var(--dhvx-radius-md);
  background: var(--dhvx-text);
  color: #fff;
}
.dhvx-skip-link:focus { transform: none; }

.dhvx-app {
  width: min(calc(100% - 32px), calc(var(--dhvx-left) + var(--dhvx-feed) + var(--dhvx-right) + (var(--dhvx-gap) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, var(--dhvx-left)) minmax(0, var(--dhvx-feed)) minmax(280px, var(--dhvx-right));
  gap: var(--dhvx-gap);
  align-items: start;
  min-height: 100vh;
}

.dhvx-left, .dhvx-right { min-width: 0; }
.dhvx-left__inner { position: sticky; top: 0; min-height: 100vh; padding: 20px 0 18px; display: flex; flex-direction: column; }
.dhvx-right__inner { position: sticky; top: 0; }

.dhvx-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  margin: 0 9px 18px;
  color: var(--dhvx-text);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.025em;
}
.dhvx-brand:hover { color: var(--dhvx-text); }
.dhvx-brand svg, .dhvx-brand img, .dhvx-mobile-brand svg, .dhvx-mobile-brand img { width: 34px; height: 34px; object-fit: contain; }

.dhvx-nav { display: grid; gap: 2px; }
.dhvx-nav a {
  min-height: 44px;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-radius: var(--dhvx-radius-md);
  color: #34322f;
  font-size: 15px;
  font-weight: 560;
}
.dhvx-nav .dhvx-icon { width: 21px; height: 21px; color: var(--dhvx-text-secondary); }
.dhvx-nav a:hover { background: var(--dhvx-surface-soft); color: var(--dhvx-text); }
.dhvx-nav a:hover .dhvx-icon { color: var(--dhvx-text); }
.dhvx-nav a.is-active { color: var(--dhvx-text); font-weight: 720; }
.dhvx-nav a.is-active .dhvx-icon { color: var(--dhvx-brand); }
.dhvx-left__spacer { flex: 1; min-height: 28px; }

.dhvx-account-card {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 5px 0;
  padding: 7px 8px;
  border-radius: var(--dhvx-radius-md);
  color: var(--dhvx-text);
}
.dhvx-account-card:hover { color: var(--dhvx-text); background: var(--dhvx-surface-soft); }
.dhvx-account-card__avatar { position: relative; width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; overflow: visible; border-radius: 50%; background: var(--dhvx-surface-soft); border: 1px solid var(--dhvx-border); color: var(--dhvx-text-secondary); }
.dhvx-account-card__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.dhvx-account-card__copy { min-width: 0; display: grid; gap: 1px; }
.dhvx-account-card__copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; line-height: 1.35; font-weight: 690; }
.dhvx-account-card__copy small { color: var(--dhvx-text-muted); font-size: 11px; line-height: 1.3; }

.dhvx-account-attention {
  position: absolute;
  z-index: 2;
  top: -4px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dhvx-surface);
  border-radius: 999px;
  background: var(--dhvx-brand);
  color: #fff;
  font-size: 9.5px;
  line-height: 1;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  box-sizing: border-box;
}
.dhvx-account-attention[hidden] { display: none !important; }
.dhvx-account-card.has-attention .dhvx-account-card__copy small { color: var(--dhvx-text-secondary); font-weight: 620; }
.dhvx-bottom-nav__icon { position: relative; width: 24px; height: 24px; display: grid; place-items: center; }
.dhvx-bottom-nav__icon .dhvx-account-attention { top: -5px; right: -7px; border-color: var(--dhvx-surface); }

.dhvx-main {
  min-width: 0;
  min-height: 100vh;
  border-left: 1px solid var(--dhvx-border);
  border-right: 1px solid var(--dhvx-border);
  background: var(--dhvx-surface);
}
.dhvx-feed-tabs {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--dhvx-surface);
  background: color-mix(in srgb, var(--dhvx-surface) 94%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dhvx-border);
}
.dhvx-feed-tabs a, .dhvx-feed-tabs span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50px;
  color: var(--dhvx-text-secondary);
  font-size: 14px;
  font-weight: 650;
}
.dhvx-feed-tabs a:hover { color: var(--dhvx-text); background: #faf9f7; }
.dhvx-feed-tabs .is-active { color: var(--dhvx-text); }
.dhvx-feed-tabs .is-active::after { content: ""; position: absolute; left: 50%; bottom: -1px; width: 46px; height: 2px; transform: translateX(-50%); background: var(--dhvx-brand); }

.dhvx-post { border-bottom: 1px solid var(--dhvx-border); padding: 18px 20px 16px; }
.dhvx-post.is-featured { padding-top: 20px; }

/* Runtime resource guard: keep DOM semantics intact while allowing capable browsers to skip off-screen layout/paint work. */
@supports (content-visibility: auto) {
  .dhvx-post[data-dhvx-render-deferred="1"] {
    content-visibility: auto;
    contain-intrinsic-block-size: auto 720px;
  }
}
.dhvx-post__actor { display: flex; align-items: center; gap: 10px; min-width: 0; }
.dhvx-avatar-link { flex: 0 0 auto; }
.dhvx-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--dhvx-surface-soft);
  border: 1px solid var(--dhvx-border);
  color: var(--dhvx-brand);
  font-weight: 750;
}
.dhvx-avatar img, .dhvx-avatar svg { width: 100%; height: 100%; object-fit: cover; }
.dhvx-avatar__initial { font-size: 15px; line-height: 1; font-weight: 760; color: var(--dhvx-text-secondary); }
.dhvx-actor-copy { min-width: 0; }
.dhvx-actor-line { display: flex; align-items: center; gap: 5px; min-width: 0; line-height: 1.25; }
.dhvx-actor-line strong { min-width: 0; overflow-wrap: anywhere; font-size: 14.5px; font-weight: 720; letter-spacing: -0.01em; }
.dhvx-verified { width: 16px; height: 16px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--dhvx-brand); color: #fff; font-size: 10px; font-weight: 800; }
.dhvx-actor-meta { margin-top: 3px; display: flex; flex-wrap: wrap; gap: 3px 4px; color: var(--dhvx-text-muted); font-size: 12.5px; line-height: 1.35; }
.dhvx-meta-item { min-width: 0; display: inline-flex; align-items: baseline; overflow-wrap: anywhere; }
.dhvx-meta-item + .dhvx-meta-item::before { content: "·"; flex: 0 0 auto; padding-right: 4px; color: var(--dhvx-text-muted); }
.dhvx-actor-meta a:hover { text-decoration: underline; text-underline-offset: 2px; }
.dhvx-actor-disclosure { color: var(--dhvx-text-secondary); font-weight: 650; }

.dhvx-post__content { padding: 12px 0 0; }
.dhvx-context-label { display: inline-block; margin-bottom: 6px; color: var(--dhvx-brand); font-size: 11.5px; font-weight: 690; letter-spacing: 0; }
.dhvx-post__title { max-width: 31em; overflow-wrap: anywhere; margin: 0; font-size: clamp(20px, 1.42vw, 22.5px); line-height: 1.29; letter-spacing: -0.022em; font-weight: 730; text-wrap: pretty; }
.dhvx-post.is-featured .dhvx-post__title { font-size: clamp(21px, 1.48vw, 23.5px); max-width: 30em; }
.dhvx-post__title a:hover { color: var(--dhvx-brand-strong); }
.dhvx-post__summary { max-width: 62ch; overflow-wrap: anywhere; margin: 9px 0 0; color: #353431; font-size: 16px; line-height: 1.58; text-wrap: pretty; }

.dhvx-summary-toggle {
  display: none;
  min-height: 34px;
  margin: 2px 0 -2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dhvx-text-secondary);
  font: inherit;
  font-size: 13.5px;
  font-weight: 680;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.dhvx-has-js .dhvx-summary-toggle { display: inline-flex; align-items: center; }
.dhvx-summary-toggle:hover { color: var(--dhvx-brand-strong); }
.dhvx-post.is-summary-expanded .dhvx-post__summary { color: #2f2e2b; }
.dhvx-disclosure { width: fit-content; margin-top: 10px; padding: 3px 7px; border: 1px solid var(--dhvx-border-strong); border-radius: var(--dhvx-radius-sm); color: var(--dhvx-text-secondary); background: var(--dhvx-surface-soft); font-size: 11.5px; font-weight: 650; }
.dhvx-disclosure.is-sponsored { border-color: #d9c6a3; background: #fbf7ef; }

.dhvx-post__media {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 14px -20px 0;
  border-top: 1px solid var(--dhvx-border);
  border-bottom: 1px solid var(--dhvx-border);
  background: var(--dhvx-surface-soft);
}
.dhvx-post__media img { width: 100%; height: auto; object-fit: contain; }
.dhvx-post__media video, .dhvx-post__media iframe { display: block; width: 100%; max-width: 100%; border: 0; background: #111; }
.dhvx-post__media video { height: auto; max-height: 78vh; }
.dhvx-post__media iframe { min-height: min(68vw, 520px); }
.dhvx-post__media.is-tall { padding: 12px; }
.dhvx-post__media.is-tall img { width: auto; max-width: 100%; max-height: 760px; }

.dhvx-commerce {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 11px;
  border: 1px solid var(--dhvx-border);
  border-radius: var(--dhvx-radius-md);
  background: #f8f7f4;
}
.dhvx-commerce__visual {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--dhvx-border);
  border-radius: 6px;
  background: var(--dhvx-surface);
  color: var(--dhvx-text-muted);
}
.dhvx-commerce__visual img { width: 100%; height: 100%; object-fit: cover; }
.dhvx-commerce__copy { min-width: 0; display: grid; gap: 2px; }
.dhvx-commerce__copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--dhvx-text);
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 700;
}
.dhvx-commerce__copy small {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--dhvx-text-muted);
  font-size: 11.5px;
  line-height: 1.35;
}
.dhvx-commerce__meta { display: flex; flex-wrap: wrap; gap: 4px; color: var(--dhvx-text-muted); font-size: 10.75px; line-height: 1.35; }
.dhvx-commerce__cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  border: 1px solid var(--dhvx-border-strong);
  border-radius: 6px;
  background: var(--dhvx-surface);
  color: var(--dhvx-text-secondary);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 680;
  white-space: nowrap;
}
.dhvx-commerce__cta:hover { border-color: #bdb8ae; color: var(--dhvx-text); background: #fff; }
.dhvx-commerce__cta .dhvx-icon { width: 15px; height: 15px; }

.dhvx-post__actions { min-height: 40px; display: flex; align-items: center; gap: 7px 17px; flex-wrap: wrap; padding: 10px 0 0; color: var(--dhvx-text-muted); font-size: 12.5px; }
.dhvx-action { display: inline-flex; align-items: center; gap: 6px; min-height: 32px; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.dhvx-js-action { display: none; }
.dhvx-has-js .dhvx-js-action { display: inline-flex; }
.dhvx-action:disabled { cursor: default; opacity: .48; }
.dhvx-action.is-pending { opacity: .68; }
.dhvx-save-action.is-saved { color: var(--dhvx-text-secondary); font-weight: 650; }
.dhvx-save-action.is-saved .dhvx-icon { color: var(--dhvx-brand); fill: color-mix(in srgb, var(--dhvx-brand) 10%, transparent); }
.dhvx-save-action.is-pending { opacity: .72; }
.dhvx-save-action.is-pending .dhvx-icon { color: var(--dhvx-brand); }
.dhvx-action .dhvx-icon { width: 18px; height: 18px; }
.dhvx-action.is-passive { cursor: default; }
.dhvx-action:not(.is-passive):hover { color: var(--dhvx-text-secondary); }
.dhvx-action.is-deep-read { margin-left: auto; gap: 5px; color: var(--dhvx-text-secondary); font-weight: 650; }
.dhvx-action.is-deep-read:hover { color: var(--dhvx-brand-strong); }
.dhvx-action.is-deep-read .dhvx-icon { width: 17px; height: 17px; }

.dhvx-reaction-trigger.is-reacted { color: var(--dhvx-text-secondary); font-weight: 650; }
.dhvx-reaction-trigger.is-reacted .dhvx-icon { color: var(--dhvx-brand); fill: color-mix(in srgb, var(--dhvx-brand) 10%, transparent); }
.dhvx-reaction-panel { flex: 1 0 100%; width: 100%; margin-top: 1px; padding-top: 9px; border-top: 1px solid var(--dhvx-border); }
.dhvx-reaction-panel[hidden] { display: none !important; }
.dhvx-reaction-panel[aria-busy="true"], .dhvx-reaction-panel.is-pending { opacity: .82; }
.dhvx-reaction-options { display: flex; flex-wrap: wrap; gap: 7px; }
.dhvx-reaction-option {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--dhvx-border);
  border-radius: var(--dhvx-radius-md);
  background: var(--dhvx-surface);
  color: var(--dhvx-text-secondary);
  font: inherit;
  font-size: 12.5px;
  font-weight: 620;
  cursor: pointer;
  transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease;
}
.dhvx-reaction-option small { min-width: 1ch; color: var(--dhvx-text-muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.dhvx-reaction-option:hover { border-color: var(--dhvx-border-strong); background: var(--dhvx-surface-soft); color: var(--dhvx-text); }
.dhvx-reaction-option[aria-pressed="true"] { border-color: color-mix(in srgb, var(--dhvx-brand) 38%, var(--dhvx-border)); background: color-mix(in srgb, var(--dhvx-brand) 6%, var(--dhvx-surface)); color: var(--dhvx-brand-strong); }
.dhvx-reaction-option[aria-pressed="true"] small { color: var(--dhvx-brand-strong); }
.dhvx-reaction-option:disabled { cursor: wait; opacity: .58; }


/* Core recommendation insert: one quiet recirculation surface, loaded only when Core returns related content. */
.dhvx-recommend[hidden] { display: none !important; }
.dhvx-recommend {
  padding: 16px 20px 18px;
  border-top: 1px solid var(--dhvx-border);
  border-bottom: 1px solid var(--dhvx-border);
  background: #fbfaf8;
}
.dhvx-recommend__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.dhvx-recommend__head h2 { margin: 0; font-size: 13.5px; line-height: 1.35; font-weight: 740; letter-spacing: -0.012em; }
.dhvx-recommend__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 14px; }
.dhvx-recommend-item { min-width: 0; display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 9px; align-items: center; padding: 6px 0; color: var(--dhvx-text); }
.dhvx-recommend-item:hover strong { color: var(--dhvx-brand-strong); }
.dhvx-recommend-item__media { width: 64px; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--dhvx-border); border-radius: 6px; background: var(--dhvx-surface-soft); }
.dhvx-recommend-item__media img { width: 100%; height: 100%; object-fit: cover; }
.dhvx-recommend-item__copy { min-width: 0; display: grid; gap: 3px; }
.dhvx-recommend-item__copy strong { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 12.75px; line-height: 1.38; font-weight: 650; letter-spacing: -0.006em; }
.dhvx-recommend-item__copy small { color: var(--dhvx-text-muted); font-size: 10.75px; line-height: 1.25; }


.dhvx-right__inner { padding: 18px 0 24px; }
.dhvx-rail-section { padding: 2px 0 18px; border-bottom: 1px solid var(--dhvx-border); }
.dhvx-rail-section h2 { margin: 0 0 14px; font-size: 15px; line-height: 1.3; font-weight: 760; letter-spacing: -0.018em; }
.dhvx-trending { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.dhvx-trending li { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 10px; align-items: start; }
.dhvx-trending__rank { color: #a09c94; font-size: 10.5px; line-height: 1.5; font-variant-numeric: tabular-nums; padding-top: 1px; }
.dhvx-trending__copy { min-width: 0; display: grid; gap: 4px; }
.dhvx-trending__copy > a { font-size: 13.5px; line-height: 1.42; font-weight: 625; letter-spacing: -0.008em; text-wrap: pretty; }
.dhvx-trending__copy small { color: var(--dhvx-text-muted); font-size: 10.75px; line-height: 1.35; }

.dhvx-ad-preview { margin: 16px 0; padding-bottom: 17px; border-bottom: 1px solid var(--dhvx-border); color: var(--dhvx-text-muted); }
.dhvx-rail-label { margin-bottom: 8px; color: var(--dhvx-text-muted); font-size: 10.5px; font-weight: 560; }
.dhvx-ad-preview__frame { aspect-ratio: 300 / 250; display: grid; place-items: center; border: 1px solid var(--dhvx-border); background: var(--dhvx-surface-soft); color: #b0aca4; font-size: 10.75px; }

.dhvx-ad-live { margin: 16px 0; padding-bottom: 17px; border-bottom: 1px solid var(--dhvx-border); color: var(--dhvx-text-muted); }
.dhvx-ad-slot { width: 100%; max-width: 100%; margin: 0; padding: 0; overflow: hidden; }
.dhvx-ad-slot > ins.adsbygoogle { width: 100%; max-width: 100%; }
.dhvx-ad-live:has(ins.adsbygoogle[data-ad-status="unfilled"]) { display: none; }
.dhvx-ad-slot:has(> ins.adsbygoogle[data-ad-status="unfilled"]) { display: none; }

.dhvx-mini-footer { display: flex; flex-wrap: wrap; gap: 4px 10px; padding-right: 8px; color: var(--dhvx-text-muted); font-size: 10.75px; line-height: 1.55; }
.dhvx-mini-footer span { flex-basis: 100%; margin-top: 4px; }
.dhvx-mini-footer a:hover { color: var(--dhvx-text-secondary); text-decoration: underline; text-underline-offset: 2px; }

.dhvx-mobile-topbar, .dhvx-bottom-nav { display: none; }
.dhvx-empty { padding: 44px 24px; text-align: center; color: var(--dhvx-text-secondary); }
.dhvx-empty strong { color: var(--dhvx-text); font-size: 15px; }
.dhvx-empty p { margin: 6px 0 0; font-size: 13.5px; }
.dhvx-empty__link { display: inline-flex; min-height: 40px; align-items: center; margin-top: 14px; padding: 0 12px; border: 1px solid var(--dhvx-border-strong); border-radius: var(--dhvx-radius-md); background: var(--dhvx-surface); color: var(--dhvx-text-secondary); font-size: 13px; font-weight: 650; }
.dhvx-empty__link:hover { color: var(--dhvx-text); background: var(--dhvx-surface-soft); }

/* Continuous Feed continuation. Auto-loading is capability-aware, bounded, and always keeps a manual fallback. */
.dhvx-feed-sentinel { width: 100%; height: 1px; overflow: hidden; pointer-events: none; }
.dhvx-feed-more {
  min-height: 78px;
  overflow-anchor: none;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 17px 20px 20px;
  border-top: 1px solid var(--dhvx-border);
  color: var(--dhvx-text-muted);
  text-align: center;
}
.dhvx-feed-more__button,
.dhvx-feed-more__fallback {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--dhvx-border-strong);
  border-radius: var(--dhvx-radius-md);
  background: var(--dhvx-surface);
  color: var(--dhvx-text-secondary);
  font: inherit;
  font-size: 13px;
  font-weight: 660;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}
.dhvx-feed-more__button:hover,
.dhvx-feed-more__fallback:hover { background: var(--dhvx-surface-soft); color: var(--dhvx-text); }
.dhvx-feed-more__button[hidden],
.dhvx-feed-more__fallback[hidden] { display: none !important; }
.dhvx-feed-more__button:disabled { cursor: wait; opacity: .62; }
.dhvx-feed-more__status { min-height: 17px; margin: 0; font-size: 11.5px; line-height: 1.4; }
.dhvx-feed-more.is-auto-idle { min-height: 42px; padding-block: 11px 14px; }
.dhvx-feed-more.is-auto-idle .dhvx-feed-more__status:empty { display: none; }
.dhvx-feed-more.is-busy.is-auto-idle { min-height: 54px; }
.dhvx-feed-more.is-auto-paused { min-height: 70px; }
.dhvx-feed-more.is-auto-paused .dhvx-feed-more__button { min-width: 132px; }
.dhvx-feed-more.is-ended { min-height: 54px; padding-block: 14px 17px; }
.dhvx-feed-more.is-ended .dhvx-feed-more__status { color: var(--dhvx-text-muted); }


/* Functional Experience surfaces: smart search, non-blocking feedback. */
body.dhvx-overlay-open { overflow: hidden; }
.dhvx-search-overlay[hidden], .dhvx-toast[hidden] { display: none !important; }
.dhvx-search-overlay {
  position: fixed; z-index: 400; inset: 0; display: grid; place-items: start center;
  padding: min(8vh, 72px) 16px 24px; background: rgba(20, 20, 19, .34);
}
.dhvx-search-dialog {
  width: min(680px, 100%); max-height: min(82vh, 760px); overflow: hidden;
  display: flex; flex-direction: column; border: 1px solid var(--dhvx-border-strong);
  border-radius: var(--dhvx-radius-lg); background: var(--dhvx-surface); color: var(--dhvx-text);
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
}
.dhvx-search-head { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 14px 10px 16px; }
.dhvx-search-head > div { min-width: 0; display: grid; gap: 2px; }
.dhvx-search-head strong { font-size: 15px; line-height: 1.3; font-weight: 740; letter-spacing: -.015em; }
.dhvx-search-head small { color: var(--dhvx-text-muted); font-size: 11.5px; line-height: 1.35; }
.dhvx-search-close { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--dhvx-text-secondary); cursor: pointer; }
.dhvx-search-close:hover { background: var(--dhvx-surface-soft); color: var(--dhvx-text); }
.dhvx-search-form { position: relative; margin: 0 14px 12px; }
.dhvx-search-form__icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--dhvx-text-muted); pointer-events: none; }
.dhvx-search-clear { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--dhvx-text-muted); cursor: pointer; }
.dhvx-search-clear:hover, .dhvx-search-clear:focus-visible { background: var(--dhvx-surface-soft); color: var(--dhvx-text); }
.dhvx-search-clear[hidden] { display: none !important; }
.dhvx-search-form input { width: 100%; height: 48px; padding: 0 48px 0 43px; border: 1px solid var(--dhvx-border-strong); border-radius: var(--dhvx-radius-md); outline: 0; background: #faf9f7; color: var(--dhvx-text); font: inherit; font-size: 15px; }
.dhvx-search-form input:focus { border-color: #aaa59c; background: var(--dhvx-surface); box-shadow: 0 0 0 3px color-mix(in srgb, var(--dhvx-focus) 12%, transparent); }
.dhvx-search-form input::placeholder { color: #99958e; }
.dhvx-search-form input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.dhvx-search-results { min-height: 110px; overflow: auto; padding: 0 14px 16px; overscroll-behavior: contain; }
.dhvx-search-hint, .dhvx-search-empty { margin: 0; padding: 24px 8px; color: var(--dhvx-text-muted); font-size: 13px; line-height: 1.5; text-align: center; }
.dhvx-search-hint.is-loading { text-align: left; padding-block: 12px; }
.dhvx-search-suggestions { display: flex; flex-wrap: wrap; gap: 7px; padding: 2px 0 13px; }
.dhvx-search-chip { min-height: 34px; padding: 0 10px; border: 1px solid var(--dhvx-border); border-radius: 999px; background: var(--dhvx-surface); color: var(--dhvx-text-secondary); font: inherit; font-size: 12px; cursor: pointer; }
.dhvx-search-chip:hover, .dhvx-search-chip.is-keyboard-active { border-color: var(--dhvx-border-strong); background: var(--dhvx-surface-soft); color: var(--dhvx-text); }
.dhvx-search-section { padding: 5px 0 8px; border-top: 1px solid var(--dhvx-border); }
.dhvx-search-section__title { margin: 9px 8px 5px; color: var(--dhvx-text-muted); font-size: 10.75px; line-height: 1.35; font-weight: 650; text-transform: uppercase; letter-spacing: .045em; }
.dhvx-search-section__body { display: grid; }
.dhvx-search-result { min-width: 0; min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: var(--dhvx-radius-md); color: var(--dhvx-text); }
.dhvx-search-result:hover, .dhvx-search-result.is-keyboard-active { background: var(--dhvx-surface-soft); color: var(--dhvx-text); }
.dhvx-search-result img, .dhvx-search-result__thumb { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 6px; background: #eeece7; object-fit: cover; }
.dhvx-search-result__copy { min-width: 0; display: grid; gap: 2px; }
.dhvx-search-result__copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; line-height: 1.35; font-weight: 660; }
.dhvx-search-result__copy small { color: var(--dhvx-text-muted); font-size: 11px; line-height: 1.3; }
.dhvx-search-result__count { margin-left: auto; color: var(--dhvx-text-muted); font-size: 11px; }
.dhvx-search-result.is-topic, .dhvx-search-result.is-destination { min-height: 42px; }
.dhvx-search-result.is-topic .dhvx-search-result__copy strong, .dhvx-search-result.is-destination .dhvx-search-result__copy strong { font-size: 13px; }
.dhvx-search-all { min-height: 44px; margin-top: 4px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 8px; border-top: 1px solid var(--dhvx-border); color: var(--dhvx-text-secondary); font-size: 12.5px; font-weight: 650; }
.dhvx-search-all:hover, .dhvx-search-all.is-keyboard-active { color: var(--dhvx-brand-strong); }
.dhvx-toast { position: fixed; z-index: 450; left: 50%; bottom: 26px; transform: translate(-50%, 8px); max-width: min(90vw, 420px); padding: 9px 12px; border: 1px solid #33312e; border-radius: var(--dhvx-radius-md); background: #242321; color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.16); font-size: 12.5px; line-height: 1.35; opacity: 0; transition: opacity 160ms ease, transform 160ms ease; }
.dhvx-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1199px) {
  :root { --dhvx-left: 72px; --dhvx-feed: min(692px, calc(100vw - 416px)); --dhvx-right: 284px; --dhvx-gap: 18px; }
  .dhvx-app { width: min(calc(100% - 24px), 1084px); grid-template-columns: 72px minmax(0, 692px) minmax(252px, 284px); }
  .dhvx-brand { width: 48px; justify-content: center; margin-inline: 0; }
  .dhvx-brand > span { display: none; }
  .dhvx-nav a { width: 48px; justify-content: center; padding-inline: 0; }
  .dhvx-nav a > span, .dhvx-nav a > strong { display: none; }
  .dhvx-account-card { width: 48px; height: 48px; min-height: 48px; justify-content: center; margin-inline: 0; padding: 5px; }
  .dhvx-account-card__copy { display: none; }
}

@media (max-width: 1119px) {
  .dhvx-app { width: min(calc(100% - 20px), 790px); grid-template-columns: 64px minmax(0, 692px); gap: 14px; }
  .dhvx-right { display: none; }
  .dhvx-left__inner { align-items: center; }
}


@media (max-width: 767px) {
  .dhvx-recommend { padding: 15px 16px 17px; }
  .dhvx-recommend__list { grid-template-columns: 1fr; gap: 5px; }
  .dhvx-recommend-item { grid-template-columns: 76px minmax(0, 1fr); min-height: 64px; padding: 5px 0; }
  .dhvx-recommend-item__media { width: 76px; }
  .dhvx-recommend-item__copy strong { font-size: 13.25px; }
}

@media (max-width: 767px) {
  body.dhvx-preview-body,
body.dhvx-experience-body { padding: var(--dhvx-mobile-top) 0 calc(var(--dhvx-mobile-bottom) + env(safe-area-inset-bottom, 0px)); background: var(--dhvx-surface); }
  .dhvx-app { display: block; width: 100%; margin: 0; min-height: 100vh; }
  .dhvx-left, .dhvx-right { display: none; }
  .dhvx-main { border: 0; min-height: calc(100vh - var(--dhvx-mobile-top)); }
  .dhvx-mobile-topbar {
    position: fixed; z-index: 100; inset: 0 0 auto 0; height: var(--dhvx-mobile-top);
    display: grid; grid-template-columns: minmax(0, 1fr) 40px; align-items: center; gap: 8px;
    padding: 0 12px; border-bottom: 1px solid var(--dhvx-border);
    background: var(--dhvx-surface); background: color-mix(in srgb, var(--dhvx-surface) 96%, transparent); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .dhvx-mobile-brand { min-width: 0; height: 40px; width: fit-content; display: inline-flex; align-items: center; gap: 8px; padding: 0 3px; border-radius: var(--dhvx-radius-md); color: var(--dhvx-text); }
  .dhvx-mobile-brand:hover { color: var(--dhvx-text); }
  .dhvx-mobile-brand strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14.5px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 730; }
  .dhvx-mobile-brand svg, .dhvx-mobile-brand img { width: 30px; height: 30px; flex: 0 0 30px; }
  .dhvx-mobile-brand__fallback { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--dhvx-brand); color: #fff; font-size: 10px; font-weight: 800; }
  .dhvx-mobile-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--dhvx-text-secondary); }
  .dhvx-mobile-icon:hover { color: var(--dhvx-text); background: var(--dhvx-surface-soft); }
  .dhvx-mobile-icon .dhvx-icon { width: 21px; height: 21px; }
  .dhvx-feed-tabs { top: var(--dhvx-mobile-top); min-height: 44px; }
  .dhvx-feed-tabs a, .dhvx-feed-tabs span { min-height: 44px; font-size: 13.5px; }
  .dhvx-post { padding: 15px 16px 13px; }
  .dhvx-post__actor { gap: 9px; }
  .dhvx-avatar { width: 40px; height: 40px; }
  .dhvx-actor-line strong { font-size: 13.5px; }
  .dhvx-actor-meta { font-size: 12px; }
  .dhvx-post__content { padding: 10px 0 0; }
  .dhvx-post__title, .dhvx-post.is-featured .dhvx-post__title { max-width: none; font-size: 19.25px; line-height: 1.3; }
  .dhvx-post__summary { margin-top: 8px; font-size: 15.75px; line-height: 1.57; }
  .dhvx-summary-toggle { min-height: 44px; margin-top: 0; font-size: 13.75px; }
  .dhvx-post__media { margin: 14px -16px 0; border-radius: 0; }
  .dhvx-post__media.is-tall { padding: 10px 12px; }
  .dhvx-post__media.is-tall img { width: auto; max-height: 78vh; }
  .dhvx-commerce { grid-template-columns: 44px minmax(0, 1fr); margin-top: 12px; padding: 9px 10px; }
  .dhvx-commerce__visual { width: 44px; height: 44px; }
  .dhvx-commerce__copy strong { font-size: 13px; }
  .dhvx-commerce__cta { grid-column: 1 / -1; min-height: 44px; width: 100%; justify-content: space-between; margin-top: 1px; padding-inline: 10px; }
  .dhvx-post__actions { padding-left: 0; gap: 4px 12px; }
  .dhvx-action { min-height: 44px; }
  .dhvx-reaction-panel { padding-top: 8px; }
  .dhvx-reaction-options { gap: 6px; }
  .dhvx-reaction-option { min-height: 44px; flex: 1 1 calc(33.333% - 6px); justify-content: space-between; padding: 0 9px; }
  .dhvx-action.is-deep-read { width: 100%; min-height: 30px; margin-left: 0; justify-content: flex-start; }
  .dhvx-feed-more { min-height: 74px; padding: 14px 16px 18px; }
  .dhvx-feed-more__button, .dhvx-feed-more__fallback { min-height: 44px; width: min(100%, 280px); }
  .dhvx-search-overlay { padding: 0; place-items: stretch; background: var(--dhvx-surface); }
  .dhvx-search-dialog { width: 100%; max-height: none; min-height: 100dvh; border: 0; border-radius: 0; box-shadow: none; }
  .dhvx-search-head { min-height: calc(54px + env(safe-area-inset-top, 0px)); padding: env(safe-area-inset-top, 0px) 8px 0 14px; border-bottom: 1px solid var(--dhvx-border); }
  .dhvx-search-head small { display: none; }
  .dhvx-search-close { width: 44px; height: 44px; flex-basis: 44px; }
  .dhvx-search-form { margin: 10px 12px 8px; }
  .dhvx-search-form input { height: 48px; padding-right: 50px; font-size: 16px; }
  .dhvx-search-clear { width: 42px; height: 42px; right: 3px; touch-action: manipulation; }
  .dhvx-search-results { padding: 0 12px calc(18px + env(safe-area-inset-bottom, 0px)); -webkit-overflow-scrolling: touch; }
  .dhvx-search-chip { min-height: 40px; }
  .dhvx-search-result { min-height: 56px; padding-inline: 5px; }
  .dhvx-search-all { min-height: 48px; }
  .dhvx-toast { bottom: calc(var(--dhvx-mobile-bottom) + env(safe-area-inset-bottom, 0px) + 12px); }
  .dhvx-bottom-nav {
    position: fixed; z-index: 100; inset: auto 0 0 0;
    min-height: calc(var(--dhvx-mobile-bottom) + env(safe-area-inset-bottom, 0px));
    display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
    padding: 5px 6px env(safe-area-inset-bottom, 0px);
    border-top: 1px solid var(--dhvx-border); background: var(--dhvx-surface); background: color-mix(in srgb, var(--dhvx-surface) 97%, transparent); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .dhvx-bottom-nav a { min-height: 50px; display: grid; place-items: center; align-content: center; gap: 1px; color: var(--dhvx-text-muted); }
  .dhvx-bottom-nav a .dhvx-icon { width: 21px; height: 21px; }
  .dhvx-bottom-nav small { font-size: 10.5px; line-height: 1.2; }
  .dhvx-bottom-nav a.is-active { color: var(--dhvx-brand); }
  .dhvx-bottom-nav a.is-active small { font-weight: 650; }
}

@media print {
  .dhvx-left, .dhvx-right, .dhvx-mobile-topbar, .dhvx-bottom-nav, .dhvx-feed-tabs { display: none !important; }
  body.dhvx-preview-body,
body.dhvx-experience-body { padding: 0; background: #fff; }
  .dhvx-app { display: block; width: 100%; }
  .dhvx-main { border: 0; }
  .dhvx-post { break-inside: avoid; }
}

@media (prefers-contrast: more) {
  :root { --dhvx-border: #cbc6bd; --dhvx-border-strong: #a9a39a; --dhvx-text-secondary: #4b4945; --dhvx-text-muted: #68655f; }
}

@media (forced-colors: active) {
  .dhvx-verified, .dhvx-feed-tabs .is-active::after { forced-color-adjust: none; background: Highlight; color: HighlightText; }
  .dhvx-main, .dhvx-post, .dhvx-commerce, .dhvx-ad-preview__frame, .dhvx-bottom-nav, .dhvx-mobile-topbar { border-color: CanvasText; }
  a:focus-visible, button:focus-visible { outline: 2px solid Highlight; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ==========================================================================
 * 13.44.0 — Homepage Visual Reset Foundation
 * Presentation-only overrides, intentionally scoped to the canonical Feed.
 * Inner Experience surfaces keep their 13.43.x geometry until separately
 * accepted. No query, authority, interaction or persistence contract changes.
 * ========================================================================== */
.dhvx-app[data-dhv-experience="feed"] {
  --dhvx-left: 218px;
  --dhvx-feed: 736px;
  --dhvx-right: 320px;
  --dhvx-gap: 24px;
  width: min(calc(100% - 40px), 1322px);
  grid-template-columns: minmax(198px, var(--dhvx-left)) minmax(0, var(--dhvx-feed)) minmax(286px, var(--dhvx-right));
}

.dhvx-app[data-dhv-experience="feed"] .dhvx-left__inner {
  padding-top: 24px;
  padding-bottom: 22px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-brand {
  min-height: 48px;
  margin: 0 8px 24px;
  gap: 11px;
  font-size: 15.5px;
  font-weight: 780;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-brand svg,
.dhvx-app[data-dhv-experience="feed"] .dhvx-brand img { width: 36px; height: 36px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-nav { gap: 4px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-nav a {
  min-height: 48px;
  gap: 13px;
  padding-inline: 10px;
  border-radius: 7px;
  font-size: 15.25px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-nav .dhvx-icon { width: 22px; height: 22px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-nav a.is-active {
  background: transparent;
  color: #111;
  font-weight: 760;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-nav a.is-active .dhvx-icon { color: var(--dhvx-brand); }
.dhvx-app[data-dhv-experience="feed"] .dhvx-account-card {
  min-height: 58px;
  margin-inline: 2px 7px;
  padding: 8px;
  border-radius: 7px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-account-card__avatar { width: 38px; height: 38px; flex-basis: 38px; }

/* The Feed plane is intentionally more editorial than the inner surfaces. */
.dhvx-app[data-dhv-experience="feed"] .dhvx-main {
  border-color: #e2e0da;
  box-shadow: none;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs {
  min-height: 58px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 28px;
  padding: 0 24px;
  border-bottom-color: #dedbd4;
  background: color-mix(in srgb, var(--dhvx-surface) 96%, transparent);
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs > .dhvx-feed-tabs__label {
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #22211f;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs a {
  min-height: 58px;
  padding: 0 1px;
  color: #716e68;
  font-size: 13.5px;
  font-weight: 660;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs a:hover { background: transparent; color: #22211f; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs .is-active { color: #171717; font-weight: 740; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs .is-active::after {
  width: 100%;
  height: 2px;
  bottom: -1px;
}

.dhvx-app[data-dhv-experience="feed"] .dhvx-post {
  padding: 24px 24px 20px;
  border-bottom-color: #dfddd7;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured { padding-top: 26px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__actor { gap: 12px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-avatar {
  width: 46px;
  height: 46px;
  border-color: #ddd9d1;
  background: #f5f4f1;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-avatar__initial { font-size: 16px; font-weight: 780; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-actor-line { gap: 6px; line-height: 1.22; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-actor-line strong {
  font-size: 15.25px;
  font-weight: 760;
  letter-spacing: -0.012em;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-actor-meta {
  margin-top: 4px;
  color: #85817a;
  font-size: 12.25px;
  line-height: 1.4;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__content { padding-top: 15px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-context-label {
  margin-bottom: 7px;
  color: var(--dhvx-brand-strong);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__title {
  max-width: 29em;
  font-size: clamp(23px, 1.72vw, 25.5px);
  line-height: 1.23;
  letter-spacing: -0.031em;
  font-weight: 770;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title {
  max-width: 28em;
  font-size: clamp(24px, 1.82vw, 27px);
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary {
  max-width: 64ch;
  margin-top: 10px;
  color: #3d3b37;
  font-size: 16.5px;
  line-height: 1.62;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-summary-toggle {
  margin-top: 3px;
  color: #5e5b55;
  font-size: 13px;
  font-weight: 720;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__media {
  margin: 18px -24px 0;
  border-color: #dedbd5;
  background: #f2f1ed;
}

/* Commerce is an attachment to the story, not a promotional card. */
.dhvx-app[data-dhv-experience="feed"] .dhvx-commerce {
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid #e3e0da;
  border-bottom: 1px solid #e3e0da;
  border-radius: 0;
  background: transparent;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__visual {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__meta { font-size: 10.5px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__copy strong { font-size: 13.75px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__cta {
  min-height: 38px;
  padding-inline: 11px;
  border-radius: 5px;
  background: #fff;
  font-size: 11.75px;
}

.dhvx-app[data-dhv-experience="feed"] .dhvx-post__actions {
  min-height: 44px;
  gap: 7px 20px;
  padding-top: 11px;
  color: #7d7972;
  font-size: 12.25px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-action { min-height: 34px; gap: 6px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-action .dhvx-icon { width: 18px; height: 18px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-action.is-deep-read {
  color: #312f2c;
  font-weight: 720;
}

.dhvx-app[data-dhv-experience="feed"] .dhvx-recommend {
  padding: 18px 24px 20px;
  border-color: #dfddd7;
  background: #faf9f6;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-recommend__head h2 { font-size: 14px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-recommend-item__copy strong { font-size: 13px; }

/* Context rail: more legible, but deliberately secondary to the Feed. */
.dhvx-app[data-dhv-experience="feed"] .dhvx-right__inner { padding: 24px 0 30px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-section { padding: 0 0 20px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-section h2 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 780;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending { gap: 0; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending li {
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid #ebe8e2;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending li:first-child { padding-top: 0; border-top: 0; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending__rank { font-size: 10px; color: #aaa69e; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending__copy > a {
  font-size: 14px;
  line-height: 1.42;
  font-weight: 670;
  letter-spacing: -0.012em;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending__copy small { margin-top: 1px; font-size: 10.5px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-ad-live,
.dhvx-app[data-dhv-experience="feed"] .dhvx-ad-preview { margin-top: 18px; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-mini-footer { margin-top: 2px; line-height: 1.65; }

/* Desktop compression keeps the reset geometry stable instead of squeezing it. */
@media (max-width: 1299px) and (min-width: 1120px) {
  .dhvx-app[data-dhv-experience="feed"] {
    --dhvx-left: 72px;
    --dhvx-feed: 720px;
    --dhvx-right: 294px;
    --dhvx-gap: 18px;
    width: min(calc(100% - 24px), 1122px);
    grid-template-columns: 72px minmax(0, 720px) minmax(270px, 294px);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__inner { align-items: center; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-brand { width: 48px; justify-content: center; margin-inline: 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-brand > span { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav a { width: 48px; justify-content: center; padding-inline: 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav a > span,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav a > strong { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-account-card { width: 48px; height: 48px; min-height: 48px; justify-content: center; margin-inline: 0; padding: 5px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-account-card__copy { display: none; }
}

@media (max-width: 1119px) and (min-width: 768px) {
  .dhvx-app[data-dhv-experience="feed"] {
    width: min(calc(100% - 20px), 806px);
    grid-template-columns: 64px minmax(0, 726px);
    gap: 16px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__inner { align-items: center; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-brand { width: 48px; justify-content: center; margin-inline: 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-brand > span { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav a { width: 48px; justify-content: center; padding-inline: 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav a > span,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav a > strong { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-account-card { width: 48px; height: 48px; min-height: 48px; justify-content: center; margin-inline: 0; padding: 5px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-account-card__copy { display: none; }
}

@media (max-width: 767px) {
  .dhvx-app[data-dhv-experience="feed"] { width: 100%; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-topbar { height: var(--dhvx-mobile-top); padding-inline: 14px 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand strong { font-size: 15px; font-weight: 760; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs {
    top: var(--dhvx-mobile-top);
    min-height: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs > .dhvx-feed-tabs__label { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs a {
    min-height: 46px;
    padding: 0;
    font-size: 13.5px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs .is-active::after { width: 42px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured { padding: 18px 16px 14px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actor { gap: 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-avatar { width: 42px; height: 42px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-actor-line strong { font-size: 14px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-actor-meta { font-size: 11.75px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__content { padding-top: 12px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-context-label { margin-bottom: 5px; font-size: 10.5px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__title,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title {
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.026em;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary { margin-top: 8px; font-size: 15.75px; line-height: 1.58; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media { margin: 15px -16px 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    margin-top: 12px;
    padding: 11px 0;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__visual { width: 46px; height: 46px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    margin-top: 1px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actions { gap: 3px 14px; padding-top: 9px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action { min-height: 44px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action.is-deep-read { width: 100%; min-height: 32px; margin-left: 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend { padding: 16px; }
}

/* ==========================================================================
 * 13.44.3 — Homepage Staged Rails + Monetization Flow
 * Side rails are no longer viewport-sized sticky containers. Their normal
 * flow is allowed to expose real editorial/monetization modules first; only a
 * compact navigation/context dock becomes sticky after the reader has scrolled
 * through those modules. This keeps Google Ads/Event/future truth-backed rail
 * modules reachable without sacrificing persistent navigation on long feeds.
 * ========================================================================== */
.dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock,
.dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock { display: none; }

@media (min-width: 1300px) {
  .dhvx-app[data-dhv-experience="feed"] {
    --dhvx-left: 288px;
    --dhvx-feed: 604px;
    --dhvx-right: 368px;
    --dhvx-gap: 28px;
    width: min(calc(100% - 40px), 1316px);
    grid-template-columns: minmax(264px, var(--dhvx-left)) minmax(0, var(--dhvx-feed)) minmax(340px, var(--dhvx-right));
  }

  .dhvx-app[data-dhv-experience="feed"] > .dhvx-left,
  .dhvx-app[data-dhv-experience="feed"] > .dhvx-right {
    position: relative;
    align-self: stretch;
    min-height: 100%;
  }

  /* The rail itself participates in document flow. Only the late dock sticks. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__inner,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__inner {
    position: relative;
    top: auto;
    min-height: 100%;
    height: 100%;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    scrollbar-width: auto;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__inner { padding: 22px 10px 28px 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__inner { padding: 24px 0 30px 8px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__flow,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow { min-width: 0; }

  /* Brand mark alone is enough in primary chrome. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-brand {
    width: 52px;
    min-height: 48px;
    justify-content: flex-start;
    margin: 0 8px 18px;
    gap: 0;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-brand svg,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-brand img { width: 38px; height: 38px; }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav {
    gap: 2px;
    padding-right: 8px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav a {
    width: 100%;
    min-height: 44px;
    gap: 12px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 14.75px;
  }

  /* Expanded information belongs to the initial rail flow, not a nested
   * scrollbox. All optional modules below it remain discoverable naturally. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-groups {
    display: grid;
    align-content: start;
    gap: 0;
    margin: 16px 4px 8px 0;
    padding: 12px 5px 4px 0;
    overflow: visible;
    border-top: 1px solid #e5e2dc;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group { border-bottom: 1px solid #ece9e3; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group summary {
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 26px 0 10px;
    color: #4b4944;
    font-size: 12.75px;
    line-height: 1.3;
    font-weight: 720;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group summary::-webkit-details-marker { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group summary::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #8b8881;
    border-bottom: 1.5px solid #8b8881;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 140ms ease;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group[open] summary::after { transform: translateY(-25%) rotate(225deg); }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group summary:hover { color: #171717; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group__links {
    display: grid;
    gap: 1px;
    padding: 0 4px 10px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group__links a {
    min-height: 33px;
    display: flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 5px;
    color: #6c6963;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 540;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-group__links a:hover { background: #f2f0eb; color: #171717; }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__spacer { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-account-card {
    width: calc(100% - 12px);
    min-height: 60px;
    margin: 8px 12px 0 0;
    padding: 10px 8px 4px;
    border-top: 1px solid #e5e2dc;
    border-radius: 0;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-account-card:hover { background: transparent; color: var(--dhvx-brand); }

  /* Optional truth-backed rail modules. Nothing is reserved when Core/plugin
   * has no content, so there is no ghost banner surface. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-flow-module,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension {
    margin: 22px 12px 0 0;
    padding: 15px 8px 17px;
    border-top: 1px solid #e5e2dc;
    border-bottom: 1px solid #ece9e3;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-flow-module__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
    color: #8a867f;
    font-size: 10.75px;
    line-height: 1.3;
    font-weight: 680;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-flow-module__head a { color: #6d6962; font-weight: 620; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-flow-module__head a:hover { color: var(--dhvx-brand); }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-event h2 {
    margin: 0;
    font-size: 14.25px;
    line-height: 1.42;
    letter-spacing: -0.01em;
    font-weight: 720;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-event h2 a:hover { color: var(--dhvx-brand-strong); }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-event time {
    display: block;
    margin-top: 7px;
    color: #8a867f;
    font-size: 11.25px;
    line-height: 1.35;
  }

  /* After the initial navigation + optional content has genuinely scrolled
   * past, this compact dock reaches the viewport and stays. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock {
    position: sticky;
    top: 16px;
    z-index: 2;
    display: grid;
    gap: 10px;
    width: calc(100% - 12px);
    margin: 28px 12px 0 0;
    padding: 14px 8px 12px;
    border-top: 1px solid #dcd8d1;
    border-bottom: 1px solid #ece9e3;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-brand {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-left: 7px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-brand svg,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-brand img { width: 30px; height: 30px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-nav { display: grid; gap: 1px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-nav a,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-account {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    border-radius: 5px;
    color: #5f5b55;
    font-size: 12.75px;
    line-height: 1.25;
    font-weight: 610;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-nav a:hover,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-account:hover { background: #f4f2ee; color: #171717; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-nav a.is-active { color: var(--dhvx-brand-strong); }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-dock-account { position: relative; border-top: 1px solid #ece9e3; border-radius: 0; margin-top: 3px; padding-top: 4px; }

  /* Reading concentration remains unchanged from 13.44.2. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs { min-height: 56px; padding-inline: 22px; gap: 24px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs a { min-height: 56px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured { padding-left: 22px; padding-right: 22px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__title,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title {
    max-width: 100%;
    font-size: clamp(21.5px, 1.58vw, 24px);
    line-height: 1.25;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary { max-width: 58ch; font-size: 16px; line-height: 1.6; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media { margin-left: -22px; margin-right: -22px; }

  /* Right rail first exposes full context + non-sticky monetization. Only the
   * compact recirculation dock becomes persistent later. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-section h2 { margin-bottom: 13px; font-size: 16px; letter-spacing: -0.015em; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-trending li { padding-block: 12px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-trending__copy > a { font-size: 14.25px; line-height: 1.46; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-trending__copy small { margin-top: 4px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-ad-live,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-ad-preview { margin-top: 20px; }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock {
    position: sticky;
    top: 16px;
    z-index: 2;
    display: grid;
    gap: 12px;
    margin-top: 28px;
    padding: 15px 0 16px;
    border-top: 1px solid #dcd8d1;
    border-bottom: 1px solid #ece9e3;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 12.25px;
    line-height: 1.3;
    font-weight: 760;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock__head a { color: #77736c; font-size: 11.25px; font-weight: 610; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock__head a:hover { color: var(--dhvx-brand); }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock .dhvx-trending { gap: 4px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock .dhvx-trending li { padding-block: 8px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock .dhvx-trending__copy > a { font-size: 12.75px; line-height: 1.42; font-weight: 640; }

  body.admin-bar .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock,
  body.admin-bar .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock { top: 48px; }
}

/* Compact desktop gets the same staged architecture, but the narrow left rail
 * stays icon-first and does not attempt to host promotional modules. */
@media (max-width: 1299px) and (min-width: 1120px) {
  .dhvx-app[data-dhv-experience="feed"] {
    --dhvx-feed: 680px;
    width: min(calc(100% - 24px), 1094px);
    grid-template-columns: 72px minmax(0, 680px) minmax(260px, 306px);
    gap: 18px;
  }
  .dhvx-app[data-dhv-experience="feed"] > .dhvx-left,
  .dhvx-app[data-dhv-experience="feed"] > .dhvx-right { position: relative; align-self: stretch; min-height: 100%; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__inner,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__inner {
    position: relative;
    top: auto;
    min-height: 100%;
    height: 100%;
    max-height: none;
    overflow: visible;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-groups,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-event,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__flow > .dhvx-rail-extension { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock { position: sticky; top: 16px; z-index: 2; display: grid; background: rgba(255,255,255,.97); }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock { gap: 8px; margin-top: 22px; padding: 10px 0; border-top: 1px solid #e5e2dc; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock .dhvx-dock-brand,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock .dhvx-dock-nav a,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock .dhvx-dock-account { width: 48px; min-height: 42px; display: grid; place-items: center; padding: 0; margin: 0 auto; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock .dhvx-dock-nav { display: grid; gap: 2px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock .dhvx-dock-nav span,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock .dhvx-dock-account > span:not(.dhvx-account-attention) { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock { gap: 10px; margin-top: 24px; padding: 13px 0 15px; border-top: 1px solid #e5e2dc; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock__head { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 730; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock__head a { color: #77736c; font-size: 10.75px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock .dhvx-trending { gap: 3px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock .dhvx-trending li { padding-block: 7px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock .dhvx-trending__copy > a { font-size: 12.25px; line-height: 1.4; }
  body.admin-bar .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock,
  body.admin-bar .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock { top: 48px; }
}

@media (max-width: 1119px) and (min-width: 768px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-nav-groups { display: none; }
}

@media (max-width: 767px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand { width: 42px; justify-content: flex-start; gap: 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand svg,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand img { width: 32px; height: 32px; }
}

/* Logged-in operator review: only sticky Feed tabs/docks offset below WP bar. */
@media (min-width: 783px) {
  body.admin-bar .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs { top: 32px; }
}

/* --------------------------------------------------------------------------
 * 13.44.4 — Homepage rail dock intelligence
 * Progressive enhancement only: native sticky/details remain the fallback.
 * Docks are removed from visual and keyboard competition until their sentinel
 * actually reaches the sticky threshold.
 * -------------------------------------------------------------------------- */
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-dock-sentinel {
  display: block;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

@media (min-width: 1120px) {
  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-left-dock,
  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-right-dock {
    transition: opacity .16s ease, transform .16s ease, visibility .16s step-end;
  }

  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-left-dock[data-dhvx-dock-state="flow"],
  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-right-dock[data-dhvx-dock-state="flow"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
  }

  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-left-dock[data-dhvx-dock-state="docked"],
  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-right-dock[data-dhvx-dock-state="docked"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .16s ease, transform .16s ease, visibility 0s;
  }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-left-dock[data-dhvx-dock-state="docked"] {
    border-top-color: #d4d0c8;
  }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-right-dock[data-dhvx-dock-state="docked"] {
    border-top-color: #d4d0c8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-left-dock,
  .dhvx-app[data-dhv-experience="feed"].is-rail-controller-ready .dhvx-right-dock {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
 * 13.44.5 — Homepage editorial Feed rhythm
 * Homepage presentation only. Keeps the 13.44.4 staged-rail controller and
 * all Core-backed interactions intact while reducing visual repetition,
 * giving stories a calmer reading measure, and making secondary context truly
 * secondary. No query, authority, persistence or commerce-truth changes.
 * -------------------------------------------------------------------------- */
@media (min-width: 1120px) {
  /* Low-chrome mode switch: the two choices carry the meaning on their own. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs {
    min-height: 52px;
    gap: 22px;
    padding-inline: 22px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs > .dhvx-feed-tabs__label { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs a {
    min-height: 52px;
    color: #7a766f;
    font-size: 13.25px;
    font-weight: 640;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs .is-active {
    color: #171717;
    font-weight: 760;
  }

  /* Actor remains the first semantic layer, but no longer consumes the same
   * visual weight as the story headline on every repeated Feed item. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured {
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured { padding-top: 22px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actor { gap: 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-avatar { width: 42px; height: 42px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-actor-line strong {
    font-size: 14.5px;
    font-weight: 750;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-actor-meta {
    margin-top: 2px;
    color: #8c8880;
    font-size: 11.6px;
    line-height: 1.35;
  }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__content { padding-top: 12px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-context-label {
    margin-bottom: 5px;
    font-size: 10.25px;
    letter-spacing: .035em;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__title,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title {
    max-width: 100%;
    font-size: clamp(21px, 1.48vw, 23px);
    line-height: 1.28;
    letter-spacing: -0.026em;
    font-weight: 755;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title {
    font-size: clamp(22px, 1.55vw, 24px);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary {
    max-width: 56ch;
    margin-top: 8px;
    color: #4a4742;
    font-size: 15.5px;
    line-height: 1.58;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-summary-toggle {
    margin-top: 1px;
    font-size: 12.5px;
  }

  /* Media stays immersive but no longer inflates the scan rhythm. Intrinsic
   * aspect ratio is preserved; tall art is deliberately framed, not cropped. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media { margin-top: 15px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-wide img,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-unknown img { max-height: 470px; object-fit: contain; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-square img { max-height: 540px; object-fit: contain; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-tall {
    padding: 14px 44px;
    background: #f5f3ef;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-tall img {
    width: auto;
    max-height: min(66vh, 620px);
    object-fit: contain;
  }

  /* Commerce remains a disclosed story attachment, not a second card. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 11px;
    margin-top: 11px;
    padding: 10px 0;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__visual { width: 46px; height: 46px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__meta { font-size: 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__copy strong { font-size: 13.25px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__cta {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 11.25px;
  }

  /* Actions become one quiet utility baseline. Deep read remains the only
   * action with editorial emphasis. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actions {
    min-height: 40px;
    gap: 5px 17px;
    padding-top: 7px;
    color: #817d76;
    font-size: 11.75px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action {
    min-height: 32px;
    gap: 5px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action .dhvx-icon { width: 17px; height: 17px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action.is-deep-read {
    color: #292724;
    font-weight: 730;
  }

  /* Recommendation stays in the reading stream without becoming a card. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend {
    padding: 15px 22px 17px;
    background: #fbfaf7;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend__head { margin-bottom: 8px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend__head h2 { font-size: 13.25px; }

  /* Right rail hierarchy: top stories get the eye; lower stories recede. The
   * sticky compact dock keeps its own intentionally smaller scale. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-section h2 {
    margin-bottom: 10px;
    font-size: 15.5px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-section .dhvx-trending li {
    padding-block: 11px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-section .dhvx-trending__copy > a {
    font-size: 13.9px;
    line-height: 1.44;
    font-weight: 650;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-section .dhvx-trending li:first-child .dhvx-trending__copy > a {
    color: #1f1e1b;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 725;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-section .dhvx-trending li:nth-child(n+4) .dhvx-trending__copy > a {
    color: #55514b;
    font-size: 13.4px;
    font-weight: 610;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-section .dhvx-trending__copy small {
    color: #969189;
    font-size: 10.25px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-ad-live,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-ad-preview { margin-top: 22px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-label {
    margin-bottom: 7px;
    color: #99958e;
    font-size: 10px;
  }
}

/* Compact desktop inherits the calmer story rhythm without squeezing titles. */
@media (max-width: 1299px) and (min-width: 1120px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__title,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title {
    font-size: 21.5px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary { font-size: 15.25px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-tall { padding-inline: 36px; }
}

/* --------------------------------------------------------------------------
 * 13.44.6 — Homepage rail content orchestration
 * Homepage rail presentation only. Optional modules are truth-gated in PHP,
 * time-sensitive context is surfaced before evergreen utility groups, and
 * commercial/context extensions can occupy a priority flow zone without ever
 * becoming part of the sticky dock. No campaign, affiliate or event authority
 * is created by Theme.
 * -------------------------------------------------------------------------- */
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension:empty { display: none; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-flow-module { min-width: 0; overflow-wrap: anywhere; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension img,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension video,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension iframe { max-width: 100%; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension img,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension video { height: auto; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension > :first-child { margin-top: 0; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
 * 13.44.7 — Rail module presentation contract
 * Shared visual grammar for truth-backed Event / affiliate / sponsored /
 * partner / context modules. This is opt-in presentation only: external
 * producers retain business truth, disclosure wording and link policy.
 * -------------------------------------------------------------------------- */
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module {
  min-width: 0;
  color: #2d2b27;
  background: transparent;
  box-shadow: none;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 9px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__disclosure {
  min-width: 0;
  color: #8d8880;
  font-size: 10.4px;
  line-height: 1.3;
  font-weight: 720;
  letter-spacing: .018em;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module[data-dhvx-module-commercial="true"] .dhvx-rail-module__disclosure {
  color: #6f6961;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__utility {
  flex: 0 0 auto;
  color: #77726a;
  font-size: 10.6px;
  line-height: 1.3;
  font-weight: 620;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__utility:hover,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__cta:hover { color: var(--dhvx-brand); }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__media {
  margin: 0 0 11px;
  overflow: hidden;
  background: #f4f2ed;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 176px;
  object-fit: cover;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__body { min-width: 0; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__title {
  margin: 0;
  color: #25231f;
  font-size: 14.1px;
  line-height: 1.42;
  letter-spacing: -.012em;
  font-weight: 720;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__title a:hover { color: var(--dhvx-brand-strong); }
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__summary {
  margin: 7px 0 0;
  color: #625e57;
  font-size: 12.35px;
  line-height: 1.5;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__meta {
  margin: 7px 0 0;
  color: #8c877f;
  font-size: 11.1px;
  line-height: 1.4;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__cta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 9px;
  color: #3e3a34;
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 720;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension[data-dhvx-rail-contract="external"] > .dhvx-rail-module {
  width: 100%;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension[data-dhvx-rail-contract="external"] > .dhvx-rail-module + .dhvx-rail-module {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ece9e3;
}

@media (min-width: 1300px) {
  /* Time-sensitive/priority context gets one early opportunity after primary
   * navigation. It still scrolls away normally and never enters the dock. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__flow > .dhvx-rail-priority {
    margin-top: 17px;
    margin-bottom: 2px;
    padding-top: 13px;
    padding-bottom: 14px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__flow > .dhvx-rail-priority + .dhvx-rail-priority {
    margin-top: 9px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__flow > .dhvx-rail-priority + .dhvx-nav-groups {
    margin-top: 11px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-event.dhvx-rail-priority h2 {
    font-size: 13.9px;
    line-height: 1.4;
  }

  /* Right rail orchestration: editorial context first, then an optional
   * truth-backed priority extension, then AdSense, then secondary extensions.
   * Empty action output is never wrapped, so later modules rise naturally. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority {
    margin-top: 18px;
    padding-top: 14px;
    padding-bottom: 15px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority + .dhvx-ad-live,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority + .dhvx-ad-preview { margin-top: 17px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-ad-live + .dhvx-rail-extension,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-ad-preview + .dhvx-rail-extension { margin-top: 20px; }

  /* Keep arbitrary trusted extension markup within the rail measure. This is
   * presentation containment only; the producer remains responsible for its
   * disclosure, target and business truth. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension a { max-width: 100%; }
}

/* Compact desktop deliberately keeps the left rail task-first. Priority
 * promotional/context modules remain in the roomy right rail or disappear
 * with the existing left-rail compact rule. */
@media (max-width: 1299px) and (min-width: 1120px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__flow > .dhvx-rail-priority { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority {
    margin-top: 16px;
    padding: 12px 0 14px;
  }
}

/* --------------------------------------------------------------------------
 * 13.44.8 — Homepage commercial density guardrails
 * Explicit contract modules may declare commercial truth. Theme uses that
 * declaration only to pace presentation; it never infers business state from
 * URLs, copy or unknown extension markup, and it never suppresses truth-backed
 * modules. AdSense remains its existing renderer and scrolls in normal flow.
 * -------------------------------------------------------------------------- */
@media (min-width: 1300px) {
  /* Keep an editorial runway between two known commercial surfaces. This is
   * deliberate whitespace, not a placeholder or inventory claim. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > [data-dhvx-density-role="commercial"] + [data-dhvx-density-role="commercial"] {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid #ece9e3;
  }

  /* Priority commercial content should not visually merge with AdSense even
   * when both happen to be available in the same rail session. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority[data-dhvx-density-role="commercial"] + .dhvx-ad-live,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority[data-dhvx-density-role="commercial"] + .dhvx-ad-preview {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid #ece9e3;
  }

  /* Secondary affiliate/sponsored modules also receive breathing room after a
   * filled/manual ad slot. Unfilled AdSense still collapses via existing CSS. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-ad-live + .dhvx-rail-extension[data-dhvx-density-role="commercial"],
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-ad-preview + .dhvx-rail-extension[data-dhvx-density-role="commercial"] {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid #ece9e3;
  }

  /* Left rail keeps time-sensitive context compact, but an explicitly
   * commercial priority module is separated from Event/navigation context. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left__flow > .dhvx-rail-event + .dhvx-rail-priority[data-dhvx-density-role="commercial"] {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #ece9e3;
  }

  /* Unknown legacy markup is not classified or visually punished. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-rail-extension[data-dhvx-density-role="unknown"] {
    --dhvx-rail-density-unknown: 1;
  }
}

@media (max-width: 1299px) and (min-width: 1120px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > [data-dhvx-density-role="commercial"] + [data-dhvx-density-role="commercial"],
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority[data-dhvx-density-role="commercial"] + .dhvx-ad-live,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-rail-priority[data-dhvx-density-role="commercial"] + .dhvx-ad-preview,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-ad-live + .dhvx-rail-extension[data-dhvx-density-role="commercial"],
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right__flow > .dhvx-ad-preview + .dhvx-rail-extension[data-dhvx-density-role="commercial"] {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #ece9e3;
  }
}


/* --------------------------------------------------------------------------
 * 13.44.9 — Homepage Feed insertion guardrails
 * Inline Event/affiliate/sponsored/partner/context surfaces are opt-in and
 * truth-backed by external producers. Theme owns only spacing, disclosure-first
 * presentation and deterministic pacing after posts 6 / 14 / 22. No placeholder
 * inventory is created and inline modules are not counted as Feed posts.
 * -------------------------------------------------------------------------- */
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module {
  min-width: 0;
  padding: 18px 22px 20px;
  border-bottom: 1px solid var(--dhvx-border);
  background: #fbfaf7;
  color: #2b2925;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__disclosure {
  color: #827d75;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 740;
  letter-spacing: .025em;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module[data-dhvx-module-commercial="true"] .dhvx-feed-module__disclosure {
  color: #655f57;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__utility {
  flex: 0 0 auto;
  color: #79746d;
  font-size: 10.75px;
  line-height: 1.3;
  font-weight: 640;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__layout {
  display: block;
  min-width: 0;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__layout.has-media {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__media {
  overflow: hidden;
  background: #f1eee8;
  aspect-ratio: 4 / 3;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__body { min-width: 0; }
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__title {
  margin: 0;
  color: #24221f;
  font-size: 16.25px;
  line-height: 1.38;
  letter-spacing: -.015em;
  font-weight: 740;
  text-wrap: pretty;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__title a:hover,
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__utility:hover,
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__cta:hover { color: var(--dhvx-brand-strong); }
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__summary {
  margin: 7px 0 0;
  color: #55514b;
  font-size: 13.5px;
  line-height: 1.5;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__meta {
  margin: 7px 0 0;
  color: #8c877f;
  font-size: 11.25px;
  line-height: 1.4;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__cta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 8px;
  color: #34312d;
  font-size: 11.75px;
  line-height: 1.3;
  font-weight: 730;
}

/* Commercial insertions remain visually quieter than canonical stories. Their
 * disclosure is explicit, while the background/dividers prevent them from
 * masquerading as editorial Feed items. */
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module[data-dhvx-module-commercial="true"] {
  background: #faf8f4;
}

@media (max-width: 767px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module { padding: 16px 16px 18px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__layout.has-media {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__title { font-size: 15.5px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__layout.has-media {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 11px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__head { margin-bottom: 8px; }
}


/* --------------------------------------------------------------------------
 * 13.44.10 — Homepage mobile reading mode
 * Mobile Feed is treated as its own reading surface rather than a compressed
 * desktop layout. Presentation only: no query, Core truth, account state or
 * Feed authority changes. Bottom navigation yields during active downward
 * reading and returns on upward/idle interaction via progressive enhancement.
 * 13.44.12 keeps the same mobile geometry while polishing one-handed touch feedback,
 * reaction reachability and horizontal recommendation interaction.
 * 13.44.11 extends this same mobile layer with truthful account affordances,
 * touch target polish and a clearable full-screen search without changing
 * Search/Core authority or desktop geometry.
 * -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  body.dhvx-experience-body,
  body.dhvx-preview-body {
    --dhvx-mobile-top: calc(50px + env(safe-area-inset-top, 0px));
    --dhvx-mobile-bottom: 58px;
  }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-topbar {
    box-sizing: border-box;
    height: var(--dhvx-mobile-top);
    padding: env(safe-area-inset-top, 0px) 10px 0 13px;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 4px;
    border-bottom-color: #ece9e3;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: color-mix(in srgb, var(--dhvx-surface) 98%, transparent);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 0;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand svg,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand img {
    width: 30px;
    height: 30px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
  }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs {
    top: var(--dhvx-mobile-top);
    min-height: 42px;
    border-bottom-color: #ece9e3;
    background: color-mix(in srgb, var(--dhvx-surface) 98%, transparent);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs a {
    min-height: 42px;
    font-size: 13px;
    font-weight: 690;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs .is-active::after { width: 36px; }

  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured {
    padding: 14px 14px 12px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actor { gap: 9px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-avatar { width: 36px; height: 36px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-actor-line strong { font-size: 13.25px; line-height: 1.25; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-actor-meta { font-size: 11.25px; line-height: 1.35; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__content { padding-top: 9px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-context-label { margin-bottom: 4px; font-size: 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__title,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title {
    font-size: 19px;
    line-height: 1.28;
    letter-spacing: -.021em;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary {
    margin-top: 7px;
    font-size: 14.65px;
    line-height: 1.55;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-summary-toggle {
    min-height: 38px;
    font-size: 12.75px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media {
    margin: 12px -14px 0;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-wide img,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-square img {
    max-height: 72vh;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-tall {
    margin-inline: -6px;
    padding: 8px 6px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-tall img { max-height: 72vh; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Commerce stays visibly attached to the story but avoids a second large
   * button row on small screens. Disclosure remains untouched. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 9px;
    margin-top: 10px;
    padding: 9px 0 8px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__visual { width: 44px; height: 44px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__copy strong { font-size: 12.75px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__meta { font-size: 9.75px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-commerce__cta {
    grid-column: 2;
    width: auto;
    min-height: 34px;
    justify-self: start;
    justify-content: flex-start;
    margin-top: 0;
    padding-inline: 0;
    border: 0;
    background: transparent;
    color: var(--dhvx-text-secondary);
  }

  /* Primary actions remain reachable with 44px touch height while the row is
   * visually quieter. Deep read owns the second line instead of competing. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actions {
    min-height: 0;
    gap: 0 12px;
    padding-top: 6px;
    font-size: 11.75px;
    justify-content: space-between;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action {
    min-height: 44px;
    gap: 4px;
    border-radius: 7px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action.is-acknowledged {
    color: var(--dhvx-brand-strong);
    background: color-mix(in srgb, var(--dhvx-brand) 6%, transparent);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action .dhvx-icon { width: 17px; height: 17px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action.is-deep-read {
    flex: 1 0 100%;
    width: 100%;
    min-height: 34px;
    margin: 0;
    padding-top: 2px;
    justify-content: flex-end;
    border-top: 1px solid #f0ede7;
    color: var(--dhvx-text-secondary);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-reaction-panel {
    flex-basis: 100%;
    margin-top: 2px;
    padding-top: 8px;
    overflow: hidden;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-reaction-options {
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scroll-padding-inline: 1px;
    padding: 1px 1px 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-reaction-options::-webkit-scrollbar { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-reaction-option {
    flex: 0 0 auto;
    min-height: 44px;
    padding-inline: 12px;
    scroll-snap-align: start;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Related stories become a horizontal recirculation shelf so they do not
   * interrupt the vertical Feed with another tall card stack. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend {
    padding: 13px 0 12px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend__head {
    margin-bottom: 8px;
    padding-inline: 14px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend__list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scroll-padding-inline: 14px;
    scrollbar-width: none;
    padding: 0 28px 7px 14px;
    -webkit-overflow-scrolling: touch;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend__list::-webkit-scrollbar { display: none; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend-item {
    flex: 0 0 min(82vw, 306px);
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 68px;
    padding: 4px 0;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend-item:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--dhvx-brand) 52%, transparent);
    outline-offset: 3px;
    border-radius: 5px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend-item__media { width: 72px; }

  /* Inline truth-backed modules preserve their disclosure but take less
   * vertical territory than canonical stories on mobile. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module {
    padding: 14px 14px 15px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__layout.has-media {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 11px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__title { font-size: 15px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__summary {
    -webkit-line-clamp: 2;
    font-size: 12.75px;
  }

  /* Mobile nav yields only during active downward reading. The JS controller
   * restores it on upward scroll, idle, resize or focus; CSS remains usable
   * without JS. */
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav {
    min-height: calc(var(--dhvx-mobile-bottom) + env(safe-area-inset-bottom, 0px));
    padding: 3px 6px env(safe-area-inset-bottom, 0px);
    background: color-mix(in srgb, var(--dhvx-surface) 99%, transparent);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: transform .18s ease, opacity .18s ease;
    will-change: transform;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav a {
    position: relative;
    min-height: 50px;
    gap: 0;
    border-radius: 8px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav a::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    width: 22px; height: 2px;
    border-radius: 999px;
    background: transparent;
    transform: translateX(-50%);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav a.is-active::before { background: var(--dhvx-brand); }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav a .dhvx-icon { width: 20px; height: 20px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav small { max-width: 74px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav__avatar {
    width: 22px; height: 22px; display: block; border-radius: 50%; object-fit: cover;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav a.has-attention .dhvx-bottom-nav__avatar { outline: 1px solid color-mix(in srgb, var(--dhvx-brand) 54%, transparent); outline-offset: 2px; }
  @media (hover: none) and (pointer: coarse) {
    .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-icon:active {
      background: var(--dhvx-surface-soft);
      transform: scale(.97);
    }
    .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav a:active,
    .dhvx-app[data-dhv-experience="feed"] .dhvx-search-close:active { background: var(--dhvx-surface-soft); }
    .dhvx-app[data-dhv-experience="feed"] .dhvx-action:not(.is-deep-read):active,
    .dhvx-app[data-dhv-experience="feed"] .dhvx-reaction-option:active {
      background: var(--dhvx-surface-soft);
    }
    .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media:active { opacity: .985; }
    .dhvx-app[data-dhv-experience="feed"] .dhvx-search-clear:active {
      background: var(--dhvx-surface-soft);
      transform: translateY(-50%) scale(.97);
    }
  }
  .dhvx-app[data-dhv-experience="feed"].is-mobile-nav-hidden .dhvx-bottom-nav {
    transform: translateY(calc(100% + 2px));
    opacity: 0;
    pointer-events: none;
  }
  .dhvx-app[data-dhv-experience="feed"].is-mobile-nav-hidden .dhvx-toast {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 359px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured { padding-inline: 12px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media { margin-inline: -12px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actions { gap-inline: 8px; font-size: 11.25px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action { gap: 3px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__layout.has-media { grid-template-columns: 84px minmax(0, 1fr); }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-reaction-option { transition: none; }
}

/* ================================================================
 * 13.44.13 — Homepage final convergence / accessibility edge states
 * Presentation-only hardening: explicit continuation states, durable focus
 * geometry, extreme-copy containment and touch-landscape convergence.
 * ================================================================ */
.dhvx-app[data-dhv-experience="feed"] .dhvx-post,
.dhvx-app[data-dhv-experience="feed"] .dhvx-recommend,
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module {
  scroll-margin-top: 84px;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-actor-copy,
.dhvx-app[data-dhv-experience="feed"] .dhvx-actor-line,
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__content,
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending__copy,
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__body,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__body {
  min-width: 0;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-actor-line strong,
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__title,
.dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary,
.dhvx-app[data-dhv-experience="feed"] .dhvx-trending__copy a,
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__title,
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module__summary,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__title,
.dhvx-app[data-dhv-experience="feed"] .dhvx-rail-module__summary {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* The continuation surface now exposes a visual state that mirrors the
 * existing JS state machine without creating any new network/business truth. */
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more[data-dhvx-feed-loader-state="loading"] .dhvx-feed-more__status::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 7px;
  border: 1.5px solid var(--dhvx-border-strong);
  border-top-color: var(--dhvx-text-secondary);
  border-radius: 50%;
  vertical-align: -1px;
  animation: dhvx-feed-loader-spin .72s linear infinite;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more.is-error .dhvx-feed-more__status {
  color: #8b3438;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more.is-error .dhvx-feed-more__button {
  border-color: color-mix(in srgb, var(--dhvx-brand) 34%, var(--dhvx-border-strong));
  color: var(--dhvx-brand-strong);
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more.is-offline .dhvx-feed-more__status {
  max-width: 34em;
  color: var(--dhvx-text-secondary);
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more.is-offline .dhvx-feed-more__button:disabled {
  cursor: not-allowed;
  opacity: .72;
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more.is-ended {
  border-top-color: color-mix(in srgb, var(--dhvx-border) 78%, transparent);
}
@keyframes dhvx-feed-loader-spin { to { transform: rotate(360deg); } }

/* Empty state is deliberately editorial and compact rather than a generic
 * application card. It remains useful at 320px without manufacturing content. */
.dhvx-app[data-dhv-experience="feed"] .dhvx-empty {
  min-height: 220px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding-inline: clamp(18px, 6vw, 44px);
}
.dhvx-app[data-dhv-experience="feed"] .dhvx-empty p { max-width: 34em; }

/* Native details and every custom feed control receive the same keyboard cue.
 * Global anchor/button focus remains the fallback for unknown extensions. */
.dhvx-app[data-dhv-experience="feed"] summary:focus-visible,
.dhvx-app[data-dhv-experience="feed"] input:focus-visible,
.dhvx-app[data-dhv-experience="feed"] .dhvx-search-chip:focus-visible,
.dhvx-app[data-dhv-experience="feed"] .dhvx-recommend-item:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--dhvx-focus) 42%, transparent);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module {
    scroll-margin-top: calc(var(--dhvx-mobile-top) + 52px);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more {
    padding-inline: 14px;
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more__status {
    max-width: 30em;
    font-size: 11.25px;
  }
}

/* Very narrow devices keep semantic actions intact; only spacing contracts. */
@media (max-width: 329px) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured { padding-inline: 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media { margin-inline: -10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__title,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post.is-featured .dhvx-post__title { font-size: 18.25px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__summary { font-size: 14.25px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__actions { gap-inline: 5px; font-size: 10.75px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action { min-width: 0; padding-inline: 2px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-action .dhvx-icon { width: 16px; height: 16px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav { padding-inline: 2px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav small { max-width: 64px; font-size: 9.5px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend-item { flex-basis: min(86vw, 276px); }
}

/* Touch landscape is a reading surface, not a compressed three-column desktop.
 * Coarse-pointer guard prevents short desktop windows from being reclassified. */
@media (max-width: 920px) and (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {
  :root { --dhvx-mobile-top: 44px; --dhvx-mobile-bottom: 50px; }
  body.dhvx-preview-body,
  body.dhvx-experience-body {
    padding: var(--dhvx-mobile-top) 0 calc(var(--dhvx-mobile-bottom) + env(safe-area-inset-bottom, 0px));
    background: var(--dhvx-surface);
  }
  .dhvx-app[data-dhv-experience="feed"] { display: block; width: 100%; margin: 0; min-height: 100vh; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-left,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-right { display: none !important; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-main { width: min(100%, 680px); margin-inline: auto; min-height: calc(100vh - var(--dhvx-mobile-top)); border: 0; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-topbar {
    position: fixed; z-index: 100; inset: 0 0 auto 0;
    height: var(--dhvx-mobile-top); display: grid;
    grid-template-columns: minmax(0, 1fr) 44px; align-items: center;
    padding: 0 max(12px, env(safe-area-inset-right, 0px)) 0 max(12px, env(safe-area-inset-left, 0px));
    border-bottom: 1px solid var(--dhvx-border); background: var(--dhvx-surface);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand { display: inline-flex; align-items: center; width: fit-content; height: 40px; padding-inline: 3px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand svg,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-brand img { width: 28px; height: 28px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-mobile-icon { width: 44px; height: 44px; display: grid; place-items: center; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs { top: var(--dhvx-mobile-top); min-height: 42px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-tabs a { min-height: 42px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav {
    position: fixed; z-index: 100; inset: auto 0 0 0;
    min-height: calc(var(--dhvx-mobile-bottom) + env(safe-area-inset-bottom, 0px));
    display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
    padding: 2px max(6px, env(safe-area-inset-right, 0px)) env(safe-area-inset-bottom, 0px) max(6px, env(safe-area-inset-left, 0px));
    border-top: 1px solid var(--dhvx-border); background: var(--dhvx-surface);
  }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav a { min-height: 46px; display: grid; place-items: center; align-content: center; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-bottom-nav small { font-size: 9.5px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post { padding-block: 12px 10px; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-wide img,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-square img,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post__media.is-tall img { max-height: 78vh; }
  .dhvx-app[data-dhv-experience="feed"] .dhvx-post,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-recommend,
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-module { scroll-margin-top: calc(var(--dhvx-mobile-top) + 48px); }
  .dhvx-app[data-dhv-experience="feed"].is-mobile-nav-hidden .dhvx-bottom-nav {
    transform: translateY(calc(100% + 2px)); opacity: 0; pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dhvx-app[data-dhv-experience="feed"] .dhvx-feed-more[data-dhvx-feed-loader-state="loading"] .dhvx-feed-more__status::before {
    animation: none;
    border-top-color: var(--dhvx-border-strong);
  }
}
