/* ---------------------------------------------------------------
   The wall.

   Tiles, still, scrolled. They arrive as somebody reaches them and
   they never leave. Gold is the ink, never a frame.
   --------------------------------------------------------------- */

.dhb-hand--nothing  { font-family: 'Nothing You Could Do', cursive; }
.dhb-hand--glory    { font-family: 'Give You Glory', cursive; }
.dhb-hand--square   { font-family: 'Square Peg', cursive; }
.dhb-hand--longcang { font-family: 'Long Cang', cursive; }

/* Every hand draws at its own true size. These even them out so that
   one person's writing is never smaller than another's by accident. */
.dhb-hand--nothing  { font-size: 1em; }
.dhb-hand--glory    { font-size: 1.12em; }
.dhb-hand--square   { font-size: 1.45em; }
.dhb-hand--longcang { font-size: 1.35em; }
.dhb-hand--shadows  { font-family: 'Shadows Into Light Two', cursive; font-size: 1.05em; letter-spacing: .01em; }
.dhb-hand--allura   { font-family: 'Allura', cursive; font-size: 1.4em; }

.dhb-wall {
  max-width: 72rem;
  margin-inline: auto;
  padding-block: var(--dhb-space-lg, 4rem) var(--dhb-space-xl, 8rem);
}

.dhb-wall__empty {
  text-align: center;
  font-family: var(--dhb-font-display, serif);
  font-size: 1.3rem;
  color: var(--dhb-ink-faint, #7d94aa);
}

.dhb-wall__tiles {
  display: grid;
  gap: var(--dhb-space-md, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  align-items: start;
}

/* --- A tile ------------------------------------------------------ */

.dhb-tile {
  position: relative;
  padding: var(--dhb-space-md, 2rem) var(--dhb-space-sm, 1.25rem) var(--dhb-space-sm, 1rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(202, 223, 238, 0.7);
  border-radius: var(--dhb-radius, 2px);
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  transition: opacity 0.9s var(--dhb-ease, ease), transform 0.9s var(--dhb-ease, ease),
              background 0.4s ease, border-color 0.4s ease;
}

.dhb-tile.is-here { opacity: 1; transform: none; }

.dhb-tile:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--dhb-sky-deep, #aecbe2);
}

.dhb-tile__link { text-decoration: none; display: block; }

.dhb-tile__words {
  margin: 0;
  max-width: none;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.35;
  color: var(--dhb-leap-voice, #5a6bc8);
  text-wrap: balance;
}


.dhb-tile--love      .dhb-tile__words { color: var(--dhb-leap-love, #d6199b); }
.dhb-tile--work      .dhb-tile__words { color: var(--dhb-leap-work, #a53bad); }
.dhb-tile--body      .dhb-tile__words { color: var(--dhb-leap-body, #7b53bf); }
.dhb-tile--voice     .dhb-tile__words { color: var(--dhb-leap-voice, #5a6bc8); }
.dhb-tile--adventure .dhb-tile__words { color: var(--dhb-leap-adventure, #3f86c9); }

/* Gold is the ink. Nothing is drawn around it. */
.dhb-tile.is-gold .dhb-tile__words {
  color: var(--dhb-gold, #c2971f);
  text-shadow: 0 0 16px rgba(232, 193, 78, 0.4), 0 0 34px rgba(232, 193, 78, 0.16);
}

.dhb-tile.is-gold {
  background: rgba(255, 253, 246, 0.72);
  border-color: rgba(194, 151, 31, 0.32);
}

.dhb-tile__went {
  margin: 0.7rem 0 0;
  max-width: none;
  font-family: var(--dhb-font-body, sans-serif);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #a8862a;
}

.dhb-tile__foot {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: var(--dhb-space-sm, 1rem);
  padding-top: 0.6rem;
  border-top: 1px solid rgba(202, 223, 238, 0.6);
  font-size: 0.75rem;
  color: var(--dhb-ink-faint, #7d94aa);
}

.dhb-tile__who--none { font-style: normal; opacity: 0.65; }

/* --- One person's words, full size ------------------------------- */

.dhb-one {
  max-width: 42rem;
  margin-inline: auto;
  padding-block: var(--dhb-space-lg, 4rem);
}

.dhb-one__words {
  max-width: none;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  line-height: 1.28;
  color: var(--dhb-leap-voice, #5a6bc8);
  margin-bottom: var(--dhb-space-md, 2rem);
  text-wrap: balance;
}


.dhb-one--love      .dhb-one__words { color: var(--dhb-leap-love, #d6199b); }
.dhb-one--work      .dhb-one__words { color: var(--dhb-leap-work, #a53bad); }
.dhb-one--body      .dhb-one__words { color: var(--dhb-leap-body, #7b53bf); }
.dhb-one--voice     .dhb-one__words { color: var(--dhb-leap-voice, #5a6bc8); }
.dhb-one--adventure .dhb-one__words { color: var(--dhb-leap-adventure, #3f86c9); }

.dhb-one.is-gold .dhb-one__words {
  color: var(--dhb-gold, #c2971f);
  text-shadow: 0 0 22px rgba(232, 193, 78, 0.42), 0 0 50px rgba(232, 193, 78, 0.18);
}

.dhb-one__went {
  font-family: var(--dhb-font-body, sans-serif);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #a8862a;
  margin-bottom: var(--dhb-space-sm, 1rem);
}

.dhb-one__who {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--dhb-ink-faint, #7d94aa);
  margin-bottom: var(--dhb-space-lg, 3rem);
}

.dhb-one__more {
  border-left: 1px solid var(--dhb-sky, #cadfee);
  padding-left: var(--dhb-space-sm, 1rem);
  color: var(--dhb-ink-soft, #46617c);
  margin-bottom: var(--dhb-space-lg, 3rem);
}

/* --- Words of encouragement --------------------------------------- */

.dhb-words { margin-top: var(--dhb-space-lg, 3rem); }

.dhb-words__list { list-style: none; padding: 0; margin: 0 0 var(--dhb-space-md, 2rem); }

.dhb-said {
  max-width: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(202, 223, 238, 0.55);
}

.dhb-said__words {
  margin: 0 0 0.2rem;
  max-width: none;
  font-family: var(--dhb-font-display, serif);
  font-size: 1.05rem;
  color: var(--dhb-ink, #22303f);
}

.dhb-said__who {
  margin: 0;
  max-width: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--dhb-ink-faint, #7d94aa);
}

.dhb-encourage { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }

.dhb-encourage input {
  flex: 1 1 16rem;
  font: inherit;
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid var(--dhb-sky, #cadfee);
  background: transparent;
  color: var(--dhb-ink, #22303f);
}

.dhb-encourage input:focus { outline: none; border-bottom-color: var(--dhb-accent, #d6199b); }

.dhb-encourage__go,
.dhb-answer {
  background: none;
  border: 1px solid var(--dhb-sky-deep, #aecbe2);
  color: var(--dhb-ink-soft, #46617c);
  padding: 0.5rem 1.4rem;
  font: inherit;
  font-size: 0.9rem;
  border-radius: var(--dhb-radius, 2px);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.dhb-encourage__go:hover,
.dhb-answer:hover { border-color: var(--dhb-accent, #d6199b); color: var(--dhb-accent, #d6199b); }

.dhb-answer.is-chosen {
  border-color: var(--dhb-accent, #d6199b);
  background: var(--dhb-accent, #d6199b);
  color: #fff;
}

.dhb-encourage__invite {
  font-size: 0.9rem;
  color: var(--dhb-ink-faint, #7d94aa);
}

/* --- Coming back ---------------------------------------------------- */

.dhb-came-back {
  margin-block: var(--dhb-space-lg, 3rem);
  padding-top: var(--dhb-space-md, 2rem);
  border-top: 1px solid var(--dhb-sky, #cadfee);
}

.dhb-came-back.is-answered .dhb-came-back__three,
.dhb-came-back.is-answered .dhb-came-back__line { display: none; }

.dhb-came-back__ask {
  font-family: var(--dhb-font-display, serif);
  font-size: 1.4rem;
  color: var(--dhb-ink, #22303f);
  margin-bottom: 0.2rem;
}

.dhb-came-back__note {
  font-size: 0.85rem;
  color: var(--dhb-ink-faint, #7d94aa);
  margin-bottom: var(--dhb-space-sm, 1rem);
}

.dhb-came-back__three { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.dhb-came-back__line { margin-top: var(--dhb-space-md, 1.5rem); }

.dhb-came-back__line p {
  font-size: 0.9rem;
  color: var(--dhb-ink-soft, #46617c);
  margin-bottom: 0.4rem;
}

.dhb-came-back__line input {
  font: inherit;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid var(--dhb-sky, #cadfee);
  background: transparent;
  color: var(--dhb-gold, #c2971f);
  margin-right: 0.6rem;
}

.dhb-came-back__line input:focus { outline: none; border-bottom-color: var(--dhb-gold, #c2971f); }

/* --- Blossom thrown up ---------------------------------------------
   Only ever after somebody comes back. Up, not down.
   --------------------------------------------------------------------- */

.dhb-burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  overflow: hidden;
}

.dhb-burst__petal {
  position: absolute;
  bottom: -4vh;
  width: 18px;
  height: 14px;
  border-radius: 62% 18% 62% 18%;
  opacity: 0;
  animation-name: dhb-throw;
  animation-timing-function: cubic-bezier(0.16, 0.9, 0.3, 1);
  animation-fill-mode: both;
}

.dhb-burst__petal--pink {
  background: linear-gradient(135deg, rgba(255,200,235,.98), rgba(255,150,213,.75));
}
.dhb-burst__petal--blue {
  background: linear-gradient(135deg, rgba(214,236,250,.98), rgba(160,205,235,.75));
}
.dhb-burst__petal--white {
  background: linear-gradient(135deg, #fff, rgba(240,248,255,.7));
}
.dhb-burst__petal--gold {
  background: linear-gradient(135deg, rgba(232,193,78,.98), rgba(194,151,31,.8));
  box-shadow: 0 0 10px rgba(232,193,78,.6);
}

@keyframes dhb-throw {
  0%   { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg); }
  8%   { opacity: 1; }
  55%  { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--sway, 0), calc(var(--rise, 60vh) * -1), 0) rotate(var(--spin, 360deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .dhb-burst { display: none; }
  .dhb-tile { opacity: 1; transform: none; transition: none; }
}

/* --- The moment after ------------------------------------------------ */

.dhb-one__closing {
  font-family: var(--dhb-font-display, serif);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  color: var(--dhb-ink-soft, #46617c);
  max-width: 34ch;
  margin-bottom: var(--dhb-space-lg, 3rem);
  animation: dhb-arrive 1.6s var(--dhb-ease, ease) 1.1s both;
}

.dhb-one.is-fresh .dhb-one__words { animation: dhb-arrive 1.8s var(--dhb-ease, ease) 0.5s both; }

.dhb-one__prompt {
  margin-block: var(--dhb-space-lg, 3rem);
  font-family: var(--dhb-font-display, serif);
  font-size: 1.15rem;
  animation: dhb-arrive 1.6s var(--dhb-ease, ease) 2.4s both;
}

.dhb-one__prompt a {
  color: var(--dhb-accent, #d6199b);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 25, 155, 0.3);
}

@keyframes dhb-arrive {
  from { opacity: 0; transform: translate3d(0, 1rem, 0); }
  to   { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   My life.

   No boxes. Each part sits in its own drift of mist, glowing at the
   edges and dissolving rather than stopping.
   --------------------------------------------------------------------- */

.dhb-life {
  max-width: 76rem;
  margin-inline: auto;
  padding-block: var(--dhb-space-md, 2rem) var(--dhb-space-xl, 6rem);
}

.dhb-life__top { margin-bottom: var(--dhb-space-lg, 3rem); }

.dhb-life__hello {
  font-family: var(--dhb-font-display, serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--dhb-ink, #22303f);
  margin: 0 0 0.15rem;
  max-width: none;
}

.dhb-life__second {
  font-family: var(--dhb-font-display, serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--dhb-ink-faint, #7d94aa);
  max-width: none;
  margin-bottom: 0.7rem;
}

.dhb-life__quiet-links {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--dhb-ink-faint, #7d94aa);
  max-width: none;
}

.dhb-life__quiet-links a { color: var(--dhb-ink-faint, #7d94aa); text-decoration: none; }
.dhb-life__quiet-links a:hover { color: var(--dhb-accent, #d6199b); }
.dhb-life__quiet-links span { margin-inline: 0.5rem; opacity: 0.5; }

/* --- The grid you feel rather than see ---------------------------------- */

.dhb-life__grid {
  display: grid;
  gap: var(--dhb-space-md, 2rem);
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: start;
}

.dhb-life__side { display: grid; gap: var(--dhb-space-md, 2rem); }

@media (max-width: 62rem) {
  .dhb-life__grid { grid-template-columns: 1fr; }
  .dhb-pool--sky { order: -1; }
}

/* Mist, not a card. It glows and then dissolves. */
.dhb-pool {
  position: relative;
  padding: var(--dhb-space-lg, 2.6rem) var(--dhb-space-md, 1.9rem);
  border-radius: 46% 54% 50% 50% / 8% 8% 9% 9%;
  background:
    radial-gradient(78% 55% at 32% 12%, rgba(255,255,255,.98) 0%, rgba(255,255,255,0) 74%),
    radial-gradient(86% 62% at 74% 84%, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 78%),
    radial-gradient(120% 100% at 50% 50%, rgba(255,255,255,.62) 0%, rgba(255,255,255,.18) 68%, rgba(255,255,255,0) 100%);
}

/* The glow around the edge, so nothing has a boundary. */
.dhb-pool::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 100%);
  filter: blur(26px);
  pointer-events: none;
}

.dhb-pool--sky {
  border-radius: 50% 50% 50% 50% / 7% 7% 8% 8%;
  padding-inline: var(--dhb-space-lg, 2.4rem);
}

.dhb-pool--sky::before {
  background:
    radial-gradient(closest-side, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(45% 40% at 72% 22%, rgba(214,25,155,.07) 0%, rgba(255,255,255,0) 100%);
}

.dhb-pool__eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dhb-heading, #35597c);
  margin-bottom: var(--dhb-space-sm, 0.9rem);
  max-width: none;
}

.dhb-pool__eyebrow::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dhb-accent, #d6199b);
  margin-right: 0.7em;
  vertical-align: middle;
  opacity: 0.7;
}

.dhb-pool__line {
  font-family: var(--dhb-font-display, serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.4;
  color: var(--dhb-ink, #22303f);
  max-width: 28ch;
}

.dhb-pool__help,
.dhb-pool__none {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--dhb-ink-faint, #7d94aa);
  max-width: 42ch;
}

.dhb-pool__none {
  font-family: var(--dhb-font-display, serif);
  font-size: 1.05rem;
  color: var(--dhb-ink-soft, #46617c);
}

.dhb-pool__done,
.dhb-pool__waiting {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  max-width: none;
}

.dhb-pool__done { color: var(--dhb-gold, #c2971f); margin-bottom: var(--dhb-space-sm, 1rem); }

.dhb-pool__waiting {
  color: var(--dhb-ink-faint, #7d94aa);
  margin-top: var(--dhb-space-md, 1.6rem);
  margin-bottom: 0.7rem;
}

.dhb-life__go {
  display: inline-block;
  border: 1px solid rgba(214, 25, 155, 0.4);
  border-radius: 999px;
  padding: 0.65rem 1.9rem;
  color: var(--dhb-accent, #d6199b);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  background: radial-gradient(120% 150% at 50% 0%, #fff 0%, rgba(255,255,255,.72) 62%, rgba(240,247,252,.55) 100%);
  box-shadow: 0 8px 24px rgba(70, 97, 124, 0.1);
  transition: transform .35s var(--dhb-ease, ease), box-shadow .35s ease, border-color .3s ease;
}

.dhb-life__go:hover {
  border-color: var(--dhb-accent, #d6199b);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(214, 25, 155, 0.15);
}

/* --- The star ------------------------------------------------------------
   One point for every dream. It grows as they keep adding.
   ------------------------------------------------------------------------- */

.dhb-star {
  width: min(15rem, 60%);
  margin: var(--dhb-space-md, 1.8rem) auto var(--dhb-space-md, 1.6rem);
  position: relative;
}

.dhb-star svg { width: 100%; height: auto; display: block; overflow: visible; }

.dhb-star path {
  stroke: var(--dhb-accent, #d6199b);
  stroke-width: 1.1;
  stroke-linejoin: round;
  fill: rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0 14px rgba(214, 25, 155, 0.22));
  transition: d .9s var(--dhb-ease, ease);
  animation: dhb-star-breathe 9s ease-in-out infinite;
}

@keyframes dhb-star-breathe {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* --- What they have declared -------------------------------------------- */

.dhb-mine { list-style: none; padding: 0; margin: 0; }

.dhb-mine__one { max-width: none; padding-block: var(--dhb-space-sm, 1.1rem); }

.dhb-mine__one + .dhb-mine__one { border-top: 1px solid rgba(202, 223, 238, 0.4); }

.dhb-mine__link { text-decoration: none; display: block; }

.dhb-mine__words {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.3;
  color: var(--dhb-leap-voice, #5a6bc8);
  text-wrap: balance;
}

.dhb-mine__one--love      .dhb-mine__words { color: var(--dhb-leap-love, #d6199b); }
.dhb-mine__one--work      .dhb-mine__words { color: var(--dhb-leap-work, #a53bad); }
.dhb-mine__one--body      .dhb-mine__words { color: var(--dhb-leap-body, #7b53bf); }
.dhb-mine__one--voice     .dhb-mine__words { color: var(--dhb-leap-voice, #5a6bc8); }
.dhb-mine__one--adventure .dhb-mine__words { color: var(--dhb-leap-adventure, #3f86c9); }

.dhb-mine__one.is-gold .dhb-mine__words {
  color: var(--dhb-gold, #c2971f);
  text-shadow: 0 0 16px rgba(232, 193, 78, 0.36);
}

.dhb-mine__went {
  margin: 0.5rem 0 0;
  max-width: none;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: #a8862a;
}

.dhb-mine__state { margin: 0.5rem 0 0; max-width: none; font-size: 0.76rem; color: var(--dhb-ink-faint, #7d94aa); }

.dhb-mine__state a {
  color: var(--dhb-accent, #d6199b);
  text-decoration: none;
  border-bottom: 1px solid rgba(214,25,155,.3);
}

.dhb-mine__said {
  list-style: none;
  padding: 0 0 0 0.9rem;
  margin: 0.8rem 0 0;
  border-left: 1px solid rgba(202, 223, 238, 0.7);
}

.dhb-mine__said li { max-width: none; margin-bottom: 0.5rem; }

.dhb-mine__said span {
  display: block;
  font-family: var(--dhb-font-display, serif);
  font-size: 0.92rem;
  color: var(--dhb-ink, #22303f);
}

.dhb-mine__said em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--dhb-ink-faint, #7d94aa);
}

/* --- Dreaming ------------------------------------------------------------ */

.dhb-quiets { list-style: none; padding: 0; margin: 0 0 var(--dhb-space-sm, 1rem); }

.dhb-quiet {
  max-width: none;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(202, 223, 238, 0.4);
}

.dhb-quiet__words {
  flex: 1 1 auto;
  font-family: var(--dhb-font-display, serif);
  font-size: 1.02rem;
  color: var(--dhb-ink-soft, #46617c);
}

.dhb-quiet__go,
.dhb-quiet__keep {
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(214, 25, 155, 0.3);
  padding: 0;
  font: inherit;
  font-size: 0.74rem;
  color: var(--dhb-accent, #d6199b);
  cursor: pointer;
  white-space: nowrap;
}

.dhb-quiet__drop {
  background: none;
  border: 0;
  padding: 0 0.15rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--dhb-ink-faint, #7d94aa);
  cursor: pointer;
  opacity: 0.4;
}

.dhb-quiet__drop:hover { opacity: 1; color: var(--dhb-accent-deep, #8e2a8b); }

.dhb-quiet-add { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; }

.dhb-quiet-add input {
  flex: 1 1 12rem;
  font: inherit;
  font-size: 0.98rem;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid var(--dhb-sky, #cadfee);
  background: transparent;
  color: var(--dhb-ink, #22303f);
}

.dhb-quiet-add input:focus { outline: none; border-bottom-color: var(--dhb-accent, #d6199b); }

/* --- The gift -------------------------------------------------------------- */

.dhb-gifts { list-style: none; padding: 0; margin: var(--dhb-space-sm, 1rem) 0 0; }

.dhb-gifts li { max-width: none; padding: 0.6rem 0; border-bottom: 1px solid rgba(202, 223, 238, 0.4); }
.dhb-gifts li:last-child { border-bottom: 0; }

.dhb-gifts a { text-decoration: none; display: block; }

.dhb-gifts strong {
  display: block;
  font-family: var(--dhb-font-display, serif);
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--dhb-ink, #22303f);
  transition: color .3s ease;
}

.dhb-gifts a:hover strong { color: var(--dhb-accent, #d6199b); }

.dhb-gifts em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dhb-ink-faint, #7d94aa);
}

/* --- The readings ---------------------------------------------------------- */

.dhb-reads { list-style: none; padding: 0; margin: 0; }

.dhb-reads li { max-width: none; padding: 0.55rem 0; border-bottom: 1px solid rgba(202, 223, 238, 0.4); }
.dhb-reads li:last-child { border-bottom: 0; }

.dhb-reads a {
  display: block;
  font-family: var(--dhb-font-display, serif);
  font-size: 1rem;
  color: var(--dhb-ink, #22303f);
  text-decoration: none;
  transition: color .3s ease;
}

.dhb-reads a:hover { color: var(--dhb-accent, #d6199b); }

.dhb-reads em { font-style: normal; font-size: 0.72rem; color: var(--dhb-ink-faint, #7d94aa); }

/* --- Your name, your email ------------------------------------------------- */

.dhb-life__yours {
  margin-top: var(--dhb-space-xl, 5rem);
  padding-top: var(--dhb-space-md, 2rem);
  border-top: 1px solid rgba(202, 223, 238, 0.5);
}

.dhb-life__yours .dhb-account { max-width: 34rem; margin-inline: 0; padding-block: 0; }

.dhb-life--shut { text-align: center; max-width: 34rem; }
