/* Deavita Horoskop section — "Quiet Constellations" (approved v1 mockup).
   Section-only tokens; global brand tokens stay untouched. */
:root {
  --hs-ink: #1a1a1a;
  --hs-ink-soft: #4f4f4f;
  --hs-line: #e6e6e6;
  --hs-teal: #b0dddd;
  --hs-cream: #f8f8ee;
  --hs-peach: #ffdfb3;
  --hs-pink: #e5125c;
  --hs-night: #171d33;
  --hs-night2: #232b4d;
  --hs-gold: #d3b06d;
  --hs-gold-soft: #e9d8ae;
  --hs-gold-deep: #a8823f;
}

.hs * { box-sizing: border-box; }
.hs a { text-decoration: none; }
.hs .hs-kicker {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--hs-ink-soft); font-weight: 600;
}
.hs .hs-num { font-variant-numeric: tabular-nums; }

/* ---------- hero (hub) ---------- */
.hs-hero {
  position: relative; overflow: hidden; border-radius: 0 0 28px 28px;
  background: linear-gradient(160deg, #fffef8 0%, var(--hs-cream) 55%, #f2ecd9 100%);
  border-bottom: 1.5px solid var(--hs-line);
  color: var(--hs-ink);
}
.hs-stars { position: absolute; inset: 0; background-image:
  radial-gradient(1.5px 1.5px at 12% 30%, rgba(23,29,51,.28), transparent 60%),
  radial-gradient(1px 1px at 25% 70%, rgba(23,29,51,.18), transparent 60%),
  radial-gradient(2px 2px at 38% 20%, rgba(168,130,63,.5), transparent 60%),
  radial-gradient(1px 1px at 52% 55%, rgba(23,29,51,.2), transparent 60%),
  radial-gradient(1.5px 1.5px at 66% 28%, rgba(23,29,51,.24), transparent 60%),
  radial-gradient(1px 1px at 78% 64%, rgba(168,130,63,.45), transparent 60%),
  radial-gradient(2px 2px at 88% 38%, rgba(23,29,51,.26), transparent 60%),
  radial-gradient(1px 1px at 45% 85%, rgba(23,29,51,.15), transparent 60%),
  radial-gradient(1.5px 1.5px at 92% 80%, rgba(168,130,63,.4), transparent 60%); }
.hs-ring { position: absolute; top: 50%; left: 50%; width: 560px; height: 560px;
  transform: translate(-50%,-50%); border: 1px solid rgba(23,29,51,.08);
  border-radius: 50%; pointer-events: none; }
.hs-ring.hs-r2 { width: 760px; height: 760px; border-color: rgba(23,29,51,.05); }
.hs-hero-inner { position: relative; padding: 64px 20px 58px; text-align: center; }
.hs-hero-inner .hs-kicker { color: var(--hs-gold-deep); }
.hs-hero-inner h1 { font-size: clamp(38px, 6vw, 58px); font-weight: 600;
  margin: 10px 0 6px; color: var(--hs-ink); line-height: 1.08; }
.hs-hero-inner .hs-sub { color: var(--hs-ink-soft); font-size: 17px; max-width: 560px;
  margin: 0 auto; line-height: 1.5; }
.hs-date { display: inline-block; margin-top: 20px; padding: 8px 18px;
  border: 1px solid rgba(168,130,63,.5); border-radius: 999px; background: #fff;
  color: var(--hs-gold-deep); font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; }

/* ---------- zodiac grid ---------- */
.hs-zgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  width: 100%; padding: 0 8px; }
.hs-zcard { background: #fff; border: 1.5px solid var(--hs-line);
  border-radius: 18px; padding: 22px 10px 18px; text-align: center;
  transition: transform .22s, box-shadow .22s, border-color .22s; }
.hs-zcard:hover { border-color: var(--hs-night); transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(23,29,51,.12); }
.hs-glyph { width: 54px; height: 54px; margin: 0 auto 10px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #2c355e, var(--hs-night));
  color: var(--hs-gold-soft); font-size: 26px; line-height: 54px; }

/* watercolor sign icons (ELLE-style set) */
.hs-icon { width: 96px; height: 96px; display: block; margin: 0 auto 8px;
  transition: transform .22s; }
.hs-zcard:hover .hs-icon { transform: scale(1.07) rotate(-2deg); }
.hs-icon-hero { width: 120px; height: 120px; display: block; }
.hs-icon-s { width: 40px; height: 40px; display: block; }
.hs-zcard b { display: block; font-size: 15px; font-weight: 600; color: var(--hs-ink); }
.hs-zcard span { font-size: 11.5px; color: var(--hs-ink-soft);
  font-variant-numeric: tabular-nums; }

/* ---------- today teaser (hub) ---------- */
.hs-today { display: grid; grid-template-columns: 1.1fr 1fr; border-radius: 24px;
  overflow: hidden; background: var(--hs-cream); width: 100%; margin: 0 8px; }
.hs-today-art { min-height: 300px; position: relative;
  background: linear-gradient(150deg, var(--hs-night), var(--hs-night2) 55%, #584a7d); }
.hs-today-art img { width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0; }
.hs-moon { position: absolute; right: 14%; top: 22%; width: 110px; height: 110px;
  border-radius: 50%; box-shadow: 0 0 60px rgba(211,176,109,.55);
  background: radial-gradient(circle at 34% 32%, #fdf6df, var(--hs-gold) 70%); }
.hs-today-txt { padding: 40px 42px; display: flex; flex-direction: column;
  justify-content: center; gap: 13px; }
.hs-today-txt h3 { font-size: 26px; font-weight: 600; line-height: 1.25;
  margin: 0; color: var(--hs-ink); }
.hs-today-txt h3 a { color: inherit; }
.hs-today-txt h3 a:hover { color: var(--hs-pink); }
.hs-today-txt p { color: var(--hs-ink-soft); font-size: 15.5px; margin: 0; }
.hs-btn { display: inline-block; background: var(--hs-ink); color: #fff !important;
  padding: 11px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: background .2s; width: fit-content; }
.hs-btn:hover { background: var(--hs-pink); }

/* ---------- chips ---------- */
.hs-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.hs-chip { background: #fff; border: 1px solid var(--hs-line); border-radius: 999px;
  padding: 5px 13px; font-size: 12.5px; color: var(--hs-ink-soft); }
.hs-chip.hs-hot { background: var(--hs-peach); border-color: var(--hs-peach);
  color: var(--hs-ink); }

/* ---------- sign page hero ---------- */
.hs-sign-hero { position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(160deg, #fffef8 0%, var(--hs-cream) 55%, #f2ecd9 100%);
  border: 1.5px solid var(--hs-line);
  color: var(--hs-ink); padding: 44px 46px; display: flex; align-items: center; gap: 32px;
  width: 100%; margin: 8px 8px 0; }
.hs-sign-hero .hs-kicker { color: var(--hs-gold-deep); }
.hs-sign-glyph { flex: 0 0 148px; width: 148px; height: 148px; border-radius: 50%;
  display: grid; place-items: center; font-size: 50px; color: var(--hs-gold-deep);
  background: #fff; border: 1.5px solid rgba(168,130,63,.45); position: relative;
  box-shadow: 0 8px 30px rgba(23,29,51,.1); }
.hs-sign-hero h1 { font-size: 38px; font-weight: 600; color: var(--hs-ink);
  line-height: 1.1; margin: 4px 0 0; }
.hs-sign-meta { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.hs-sign-meta .hs-chip { background: #fff;
  border-color: var(--hs-line); color: var(--hs-ink-soft); }
.hs-sign-meta .hs-chip.hs-gold { background: rgba(233,216,174,.35);
  border-color: rgba(168,130,63,.4); color: var(--hs-gold-deep); }

/* ---------- tabs + panel ---------- */
.hs-tabs { display: flex; gap: 8px; margin: 26px 8px 0; flex-wrap: wrap; }
.hs-tab { padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--hs-line);
  font-size: 14.5px; font-weight: 600; color: var(--hs-ink-soft); cursor: pointer;
  background: #fff; transition: border-color .18s, background .18s, color .18s; }
.hs-tab:hover { border-color: var(--hs-night); }
.hs-tab.hs-on { background: var(--hs-night); border-color: var(--hs-night);
  color: var(--hs-gold-soft); }
.hs-panel { margin: 20px 8px 0; background: var(--hs-cream); border-radius: 24px;
  padding: 36px 40px; width: 100%; }
.hs-panel[hidden] { display: none; }
.hs-panel .hs-pdate { font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--hs-ink-soft); margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.hs-panel h3 { font-size: 23px; font-weight: 600; margin: 0 0 12px; color: var(--hs-ink); }
.hs-panel .hs-lead { font-size: 16.5px; margin: 0 0 24px; max-width: 760px;
  color: var(--hs-ink); line-height: 1.55; }
.hs-facets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hs-facet { background: #fff; border-radius: 16px; padding: 20px 20px 18px;
  border: 1px solid rgba(0,0,0,.04); }
.hs-facet-head { display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px; }
.hs-facet-head b { font-size: 15px; color: var(--hs-ink); }
.hs-dots { display: flex; gap: 4px; }
.hs-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--hs-line); }
.hs-dots i.hs-f { background: var(--hs-gold); }
.hs-facet p { font-size: 13.5px; color: var(--hs-ink-soft); margin: 0; line-height: 1.5; }
.hs-empty { color: var(--hs-ink-soft); font-style: italic; }

/* ---------- all-signs strip ---------- */
.hs-strip { display: flex; gap: 10px; justify-content: center; margin: 34px 0 0;
  flex-wrap: wrap; width: 100%; }
.hs-strip-item { width: 54px; height: 54px; border-radius: 50%; background: #fff;
  border: 1.5px solid var(--hs-line); display: grid; place-items: center;
  font-size: 20px; color: var(--hs-ink-soft); transition: all .18s; overflow: hidden; }
.hs-strip-item:hover { border-color: var(--hs-night); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(23,29,51,.14); }
.hs-strip-item.hs-on { border-color: var(--hs-night); border-width: 2.5px; }

/* ---------- daily post body (rendered inside post content) ---------- */
.hs-jump { position: sticky; top: 0; background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px); border-bottom: 1px solid var(--hs-line);
  padding: 10px 0; margin: 26px 0; z-index: 5; }
.hs-jump-in { display: flex; gap: 6px; justify-content: flex-start;
  overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.hs-jump-in a { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-size: 17px; color: var(--hs-ink-soft);
  border: 1.5px solid transparent; transition: all .15s; scroll-snap-align: center; }
.hs-jump-in a:hover { border-color: var(--hs-night); color: var(--hs-night); }
.hs-zsec { border-top: 1px solid var(--hs-line); padding: 24px 0 6px; margin-top: 8px; }
.hs-zsec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.hs-zsec-head .hs-glyph { width: 46px; height: 46px; font-size: 22px;
  line-height: 46px; margin: 0; flex: 0 0 46px; }
.hs-zsec-head h2 { font-size: 21px; font-weight: 600; margin: 0; }
.hs-zsec-head span { font-size: 12.5px; color: var(--hs-ink-soft); display: block;
  font-variant-numeric: tabular-nums; }

/* ---------- personalized horoscope form ---------- */
.hs-personal { position: relative; overflow: hidden; border-radius: 24px;
  background: linear-gradient(135deg, var(--hs-night) 0%, var(--hs-night2) 60%, #3a3564 100%);
  color: #fff; width: 100%; margin: 0 8px; }
.hs-personal-in { position: relative; padding: 38px 42px 40px; }
.hs-personal-lead { color: #cfd3e6; font-size: 16px; max-width: 640px; margin: 0 0 22px; }
.hs-frow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 18px; }
.hs-frow label { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--hs-gold-soft); font-weight: 600; }
.hs-frow .hs-opt { text-transform: none; letter-spacing: 0; color: #8f96b8; font-weight: 400; }
.hs-frow select, .hs-frow input { appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 12px; color: #fff; padding: 11px 12px; font-size: 15px;
  font-family: inherit; transition: border-color .18s; }
.hs-frow select:focus, .hs-frow input:focus { outline: none; border-color: var(--hs-gold); }
.hs-frow select option { color: var(--hs-ink); background: #fff; }
.hs-frow input::placeholder { color: #8f96b8; }
.hs-fbtns { display: flex; gap: 12px; flex-wrap: wrap; }
.hs-btn-gold { background: var(--hs-gold); color: var(--hs-night) !important; }
.hs-btn-gold:hover { background: var(--hs-gold-soft); }
.hs-personal-status { margin-top: 18px; color: var(--hs-gold-soft); font-size: 15px; }
.hs-spin { display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(233,216,174,.35); border-top-color: var(--hs-gold-soft);
  animation: hs-rot 0.8s linear infinite; vertical-align: -2px; }
@keyframes hs-rot { to { transform: rotate(360deg); } }
.hs-personal-result { margin-top: 26px; }
.hs-presult-body { background: rgba(255,255,255,.97); color: var(--hs-ink);
  border-radius: 18px; padding: 30px 34px; }
.hs-presult-body h4 { font-size: 18px; font-weight: 600; margin: 22px 0 8px; color: var(--hs-ink); }
.hs-presult-body h4:first-child { margin-top: 0; }
.hs-presult-body p { font-size: 15.5px; line-height: 1.6; margin: 0 0 12px; color: var(--hs-ink-soft); }
.hs-presult-body ul, .hs-presult-body ol { margin: 0 0 12px 20px; }
.hs-presult-body li { font-size: 15px; line-height: 1.55; color: var(--hs-ink-soft); margin-bottom: 5px; }
.hs-hd-cta { margin-top: 16px; }
.hs-hd-btn { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left;
  background: rgba(233,216,174,.12); border: 1.5px solid rgba(233,216,174,.4);
  border-radius: 18px; padding: 18px 22px; color: #fff; cursor: pointer;
  font-family: inherit; font-size: 14px; line-height: 1.45; transition: all .2s; }
.hs-hd-btn:hover { background: rgba(233,216,174,.2); border-color: var(--hs-gold-soft); }
.hs-hd-btn strong { color: var(--hs-gold-soft); font-size: 16px; }
.hs-hd-icon { flex: 0 0 52px; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 27px; color: var(--hs-night);
  background: radial-gradient(circle at 32% 28%, #fdf6df, var(--hs-gold) 75%); }
.hs-hd-btn.hs-loading { opacity: .7; pointer-events: none; }
.hs-hd-result { margin-top: 16px; }

/* ---------- Individuell panel — celestial editorial card ---------- */
.hs-tab-ind { border-color: var(--hs-gold); background: linear-gradient(120deg, rgba(233,216,174,.35), rgba(233,216,174,.15)); color: var(--hs-ink); }
.hs-tab-ind:hover { border-color: var(--hs-night); transform: translateY(-1px); }
.hs-tab-ind.hs-on { background: var(--hs-night); border-color: var(--hs-night); color: var(--hs-gold-soft); }

.hs-panel-ind { position: relative; overflow: hidden; padding: 0;
  background: linear-gradient(150deg, #fffef8 0%, var(--hs-cream) 55%, #f2ecd9 100%);
  border: 1.5px solid var(--hs-line);
  color: var(--hs-ink); }
.hs-panel-ind .hs-stars { opacity: .9; }
.hs-ind-ring { position: absolute; right: -160px; top: -160px; width: 460px; height: 460px;
  border-radius: 50%; border: 1px solid rgba(23,29,51,.1); pointer-events: none; }
.hs-ind-ring::after { content: '✦'; position: absolute; left: 52px; bottom: 84px;
  color: var(--hs-gold-deep); font-size: 15px; animation: hs-twinkle 2.6s ease-in-out infinite; }
@keyframes hs-twinkle { 0%,100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }
.hs-ind-in { position: relative; padding: 46px 48px 44px; }
.hs-ind-kicker { font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--hs-gold-deep); font-weight: 600; margin-bottom: 14px; }
.hs-ind-title { font-size: clamp(28px, 4vw, 40px); font-weight: 300; letter-spacing: .01em;
  color: var(--hs-ink); margin: 0 0 30px !important; line-height: 1.15; }
.hs-ind-title em { font-family: Georgia, 'Times New Roman', serif; font-style: italic;
  color: var(--hs-gold-deep); font-weight: 400; }

/* mad-lib sentence with clearly outlined pill fields */
.hs-madlib { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 10px;
  font-family: Georgia, 'Times New Roman', serif; font-style: italic;
  font-size: 21px; color: var(--hs-ink-soft); margin: 0 0 30px; line-height: 1.4; }
.hs-ml-colon { font-family: inherit; margin: 0 -2px; color: var(--hs-gold-deep); }
.hs-ml-note { font-size: 13px; color: #8a8a80; font-style: italic; }
.hs-ml-field { position: relative; display: inline-flex; }
.hs-ml-field::after { content: ''; position: absolute; right: 16px; top: 50%;
  width: 8px; height: 8px; margin-top: -6px;
  border-right: 2px solid var(--hs-ink); border-bottom: 2px solid var(--hs-ink);
  transform: rotate(45deg); pointer-events: none; transition: border-color .18s; }
.hs-ml-field select { appearance: none; -webkit-appearance: none;
  font-family: 'Avenir', 'Trebuchet MS', sans-serif; font-style: normal;
  font-size: 18px; font-weight: 600; color: var(--hs-ink);
  background: #fff; cursor: pointer;
  border: 2px solid var(--hs-ink); border-radius: 14px;
  padding: 13px 42px 13px 18px; min-width: 130px;
  transition: border-color .18s, background .18s, box-shadow .18s; }
.hs-ml-s select { min-width: 96px; padding-right: 38px; }
.hs-ml-field select:hover { border-color: var(--hs-gold-deep); background: #fffdf5; }
.hs-ml-field select:focus { outline: none; border-color: var(--hs-gold-deep);
  box-shadow: 0 0 0 4px rgba(168,130,63,.25); }
.hs-ml-field select:invalid, .hs-ml-field select option[value=""] { color: #8a8a80; }
.hs-ml-field select option { color: var(--hs-ink); background: #fff; font-style: normal; }

/* editorial CTA buttons */
.hs-ind-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hs-ind-btn { display: flex; flex-direction: column; gap: 2px; text-align: left;
  font-family: inherit; cursor: pointer; border-radius: 16px;
  padding: 14px 26px 13px; min-width: 230px;
  background: #fff; color: var(--hs-ink); border: 2px solid var(--hs-ink);
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s, color .2s; }
.hs-ind-btn:hover { transform: translateY(-2px); background: var(--hs-ink); color: #fff;
  box-shadow: 0 14px 30px rgba(23,29,51,.25); }
.hs-ind-btn-gold { background: linear-gradient(120deg, var(--hs-gold-soft), var(--hs-gold));
  border-color: transparent; color: var(--hs-night); }
.hs-ind-btn-gold:hover { border-color: transparent; filter: brightness(1.05); }
.hs-ind-btn-k { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; opacity: .75; }
.hs-ind-btn-t { font-size: 15.5px; font-weight: 600; }

.hs-panel-ind .hs-personal-status { margin-top: 22px; color: var(--hs-gold-deep);
  font-family: Georgia, serif; font-style: italic; font-size: 16px; }
.hs-panel-ind .hs-spin { border-color: rgba(168,130,63,.3); border-top-color: var(--hs-gold-deep); }

/* result as magazine paper */
.hs-paper { background: #fff; color: var(--hs-ink); border-radius: 4px;
  border: 1px solid var(--hs-line);
  padding: 44px 48px; margin-top: 26px; position: relative;
  box-shadow: 0 18px 44px rgba(23,29,51,.14);
  animation: hs-paper-in .55s cubic-bezier(.22,.8,.35,1) both; }
@keyframes hs-paper-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hs-paper::before { content: ''; position: absolute; top: 0; left: 48px; right: 48px;
  height: 3px; background: linear-gradient(90deg, var(--hs-gold), rgba(211,176,109,0)); }
.hs-paper h4 { font-family: Georgia, 'Times New Roman', serif; font-style: italic;
  font-weight: 400; font-size: 21px; color: var(--hs-night);
  margin: 30px 0 10px; padding-bottom: 8px; position: relative; }
.hs-paper h4::after { content: ''; position: absolute; left: 0; bottom: 0;
  width: 44px; height: 1.5px; background: var(--hs-gold); }
.hs-paper h4:first-child { margin-top: 0; }
.hs-paper p { font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; color: #33343c; }
.hs-paper > h4:first-child + p::first-letter,
.hs-paper > p:first-child::first-letter {
  font-family: Georgia, serif; float: left; font-size: 54px; line-height: .82;
  padding: 6px 10px 0 0; color: var(--hs-gold); font-style: normal; }
.hs-paper ul, .hs-paper ol { margin: 0 0 14px 4px; list-style: none; }
.hs-paper li { font-size: 15px; line-height: 1.65; color: #33343c;
  padding-left: 22px; position: relative; margin-bottom: 7px; }
.hs-paper li::before { content: '✦'; position: absolute; left: 0; top: 1px;
  color: var(--hs-gold); font-size: 12px; }
.hs-paper strong { color: var(--hs-night); }

/* Human Design — large image banner CTA */
.hs-hd-banner { display: block; position: relative; width: 100%; margin-top: 22px;
  padding: 0; border: 1.5px solid rgba(168,130,63,.45); border-radius: 18px;
  overflow: hidden; cursor: pointer; background: var(--hs-night);
  transition: transform .25s, box-shadow .25s, border-color .25s; }
.hs-hd-banner img { display: block; width: 100%; height: auto;
  transition: transform .6s cubic-bezier(.22,.8,.35,1); }
.hs-hd-banner:hover { transform: translateY(-3px); border-color: var(--hs-gold-deep);
  box-shadow: 0 18px 40px rgba(23,29,51,.25); }
.hs-hd-banner:hover img { transform: scale(1.03); }
.hs-hd-caption { position: absolute; left: 26px; bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(120deg, var(--hs-gold-soft), var(--hs-gold));
  color: var(--hs-night); border-radius: 999px; padding: 13px 24px;
  font-size: 15.5px; box-shadow: 0 10px 26px rgba(0,0,0,.45);
  transition: filter .2s; }
.hs-hd-caption strong { font-weight: 600; }
.hs-hd-banner:hover .hs-hd-caption { filter: brightness(1.06); }
.hs-hd-arrow { font-size: 18px; transition: transform .2s; }
.hs-hd-banner:hover .hs-hd-arrow { transform: translateX(5px); }
.hs-hd-banner.hs-loading { opacity: .75; pointer-events: none; }

/* article-like structure inside the paper (matches site articles) */
.hs-paper h2 { font-size: 26px; font-weight: 600; color: var(--hs-ink);
  margin: 34px 0 12px; line-height: 1.3; }
.hs-paper h2:first-child { margin-top: 0; }
.hs-paper h3 { font-size: 20px; font-weight: 600; color: var(--hs-ink);
  margin: 24px 0 10px; line-height: 1.35; }
.hs-paper table { width: 100%; border-collapse: collapse; margin: 18px 0 22px;
  font-size: 14.5px; }
.hs-paper th { text-align: left; background: var(--hs-night); color: var(--hs-gold-soft);
  padding: 11px 14px; font-weight: 600; letter-spacing: .03em; }
.hs-paper th:first-child { border-radius: 8px 0 0 0; }
.hs-paper th:last-child { border-radius: 0 8px 0 0; }
.hs-paper td { padding: 10px 14px; border-bottom: 1px solid var(--hs-line);
  color: #33343c; vertical-align: top; }
.hs-paper tbody tr:nth-child(even) { background: #f6f4ea; }

/* CTA inside the public tab panels → jumps to the Individuell form */
.hs-panel-cta { margin: 26px 0 0; }
.hs-panel-cta .hs-btn { font-size: 15px; }
.hs-impuls { margin: 18px 0 0; color: var(--hs-gold-deep); font-size: 15.5px;
  font-family: Georgia, serif; }

/* ---------- result actions: print / e-mail ---------- */
.hs-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hs-act-btn { font-family: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--hs-ink); background: #fff; border: 2px solid var(--hs-ink);
  border-radius: 999px; padding: 11px 22px; cursor: pointer;
  transition: background .18s, color .18s, transform .18s; }
.hs-act-btn:hover { background: var(--hs-ink); color: #fff; transform: translateY(-1px); }
.hs-mail-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin-top: 14px; }
.hs-mail-row[hidden] { display: none; }
.hs-mail-row input { font-family: inherit; font-size: 16px; color: var(--hs-ink);
  background: #fff; border: 2px solid var(--hs-ink); border-radius: 14px;
  padding: 12px 16px; min-width: 260px; }
.hs-mail-row input:focus { outline: none; border-color: var(--hs-gold-deep);
  box-shadow: 0 0 0 4px rgba(168,130,63,.25); }
.hs-mail-row .hs-btn { border: none; cursor: pointer; font-family: inherit; }
.hs-mail-status { font-size: 14px; color: var(--hs-gold-deep);
  font-family: Georgia, serif; font-style: italic; }

/* ---------- support modal ---------- */
.hs-modal { position: fixed; inset: 0; z-index: 99999;
  background: rgba(23,29,51,.55); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px; }
.hs-modal[hidden] { display: none; }
.hs-modal-card { position: relative; max-width: 460px; width: 100%;
  background: linear-gradient(160deg, #fffef8 0%, var(--hs-cream) 70%, #f2ecd9 100%);
  border: 1.5px solid var(--hs-line); border-radius: 22px; padding: 34px 34px 30px;
  box-shadow: 0 30px 80px rgba(23,29,51,.4);
  animation: hs-paper-in .35s cubic-bezier(.22,.8,.35,1) both; }
.hs-modal-card h4 { font-size: 22px; font-weight: 600; color: var(--hs-ink);
  margin: 0 0 12px; line-height: 1.25; }
.hs-modal-card p { font-size: 15px; line-height: 1.55; color: var(--hs-ink-soft);
  margin: 0 0 16px; }
.hs-modal-x { position: absolute; top: 12px; right: 16px; font-size: 26px;
  line-height: 1; background: none; border: none; cursor: pointer;
  color: var(--hs-ink-soft); padding: 4px; }
.hs-modal-x:hover { color: var(--hs-ink); }
.hs-support-links { display: flex; flex-direction: column; gap: 10px; margin: 0 0 16px; }
.hs-support-link { display: block; font-size: 15px; font-weight: 600;
  color: var(--hs-ink) !important; background: #fff; border: 2px solid var(--hs-ink);
  border-radius: 14px; padding: 13px 18px; transition: border-color .18s, background .18s; }
.hs-support-link:hover { border-color: var(--hs-gold-deep); background: #fffdf5; }
.hs-support-thanks { font-family: Georgia, serif; font-style: italic;
  color: var(--hs-gold-deep) !important; }
.hs-modal .hs-btn { border: none; cursor: pointer; font-family: inherit; font-size: 15px; }

/* ---------- print: only the generated result ---------- */
@media print {
  body.hs-printing * { visibility: hidden; }
  body.hs-printing .hs-print-area, body.hs-printing .hs-print-area * { visibility: visible; }
  body.hs-printing .hs-print-area { position: absolute; left: 0; top: 0; width: 100%; }
  body.hs-printing .hs-print-area .hs-paper { box-shadow: none; border: none; padding: 0 8px; }
  body.hs-printing .hs-actions, body.hs-printing .hs-mail-row,
  body.hs-printing .hs-hd-cta { display: none !important; }
}

/* ---------- period banners (Wochen-/Monats-/Jahreshoroskop) ---------- */
.hs-banners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  width: 100%; padding: 0 8px; }
.hs-banner { position: relative; overflow: hidden; border-radius: 22px;
  color: #fff; padding: 28px 26px 24px; min-height: 210px;
  display: flex; align-items: flex-end;
  transition: transform .22s, box-shadow .22s; }
.hs-banner:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(23,29,51,.22); }
.hs-b-woche { background: linear-gradient(140deg, var(--hs-night) 10%, var(--hs-night2) 55%, #445086 100%); }
.hs-b-monat { background: linear-gradient(140deg, #2b1f3f 10%, #463f70 60%, #7a5f9e 100%); }
.hs-b-jahr  { background: linear-gradient(140deg, #1c2410 0%, #3f4d2c 55%, #a08a4f 130%); }
.hs-banner-art { position: absolute; top: -14px; right: 6px;
  font-size: 130px; line-height: 1; color: rgba(233,216,174,.22);
  pointer-events: none; }
.hs-banner-txt { position: relative; width: 100%; }
.hs-banner-txt h3 { font-size: 22px; font-weight: 600; margin: 0 0 4px; color: #fff; }
.hs-banner-txt p { font-size: 13.5px; color: rgba(255,255,255,.75); margin: 0 0 14px; }
.hs-banner-signs { display: flex; flex-wrap: wrap; gap: 6px; }
.hs-banner-signs a { width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center;
  transition: transform .16s, background .16s; }
.hs-banner-signs a:hover { transform: translateY(-2px) scale(1.08); background: #fff; }
.hs-icon-xs { width: 30px; height: 30px; display: block; }

/* ---------- section headers inside hub ---------- */
.hs-section-head { display: flex; align-items: baseline;
  justify-content: space-between; margin: 48px 8px 20px; width: 100%; }
.hs-section-head h2 { font-size: 25px; font-weight: 600; margin: 0; color: var(--hs-ink); }
.hs-section-head a { font-size: 14px; color: var(--hs-pink); font-weight: 600; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hs-zgrid { grid-template-columns: repeat(3, 1fr); }
  .hs-banners { grid-template-columns: 1fr; }
  .hs-banner { min-height: 170px; }
  .hs-frow { grid-template-columns: 1fr 1fr; }
  .hs-ind-in { padding: 30px 22px 32px; }
  .hs-madlib { font-size: 17px; }
  .hs-ml-field select { min-width: 104px; font-size: 16px; padding: 11px 36px 11px 14px; }
  .hs-ind-btn { width: 100%; }
  .hs-paper { padding: 30px 22px; }
  .hs-paper::before { left: 22px; right: 22px; }
  .hs-frow .hs-fwide { grid-column: 1 / -1; }
  .hs-personal-in { padding: 26px 20px 30px; }
  .hs-presult-body { padding: 22px 20px; }
  .hs-today { grid-template-columns: 1fr; }
  .hs-today-art { min-height: 190px; }
  .hs-facets { grid-template-columns: 1fr; }
  .hs-sign-hero { flex-direction: column; text-align: center; padding: 36px 22px; }
  .hs-sign-meta { justify-content: center; }
  .hs-panel { padding: 26px 22px; }
}
@media (max-width: 560px) {
  .hs-zgrid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Daily post: Inhaltsverzeichnis (TOC with per-sign teaser) ---- */
.hs-toc {
  clear: both;
  margin: 1.4em 0;
  padding: 1.1em 1.3em;
  border: 1px solid #e7ddc7;
  border-radius: 14px;
  background: #fbf7ee;
}
/* The theme floats every <p> in the article (.main-article p{float:left}).
   A floated title makes the first row (display:flex => BFC) collapse to width:0
   and jump right — same class of bug as the table BFC one. Unfloat + clear. */
.hs-toc .hs-toc-title {
  float: none !important;
  clear: both;
  margin: 0 0 .7em;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: .02em;
}
.hs-toc .hs-toc-list { clear: both; list-style: none; margin: 0; padding: 0; }
.hs-toc .hs-toc-list li { list-style: none; margin: .1em 0; }
.hs-toc .hs-toc-list li::before { content: none !important; display: none !important; }
.hs-toc .hs-toc-list li a {
  display: flex !important;
  align-items: center;
  gap: .6em;
  padding: .3em 0;
  color: inherit;
  text-decoration: none;
}
.hs-toc .hs-toc-list li a img {
  display: inline-block !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  float: none !important;
  margin: 0 !important;
  border-radius: 50%;
  border: 1.5px solid #e6e6e6;
  background: #fff;
}
.hs-toc .hs-toc-teaser { color: #6b6257; }

/* ---- Daily/weekly post: per-sign section (small square photo + wrapping text) ---- */
.hs-sign {
  clear: both;
  overflow: hidden;          /* contain the floated photo so the next sign is clean */
  margin: 0 0 1.6em;
}
.hs-sign h2 { clear: both; float: none !important; }
/* the theme floats every <p> in .main-article — undo it here so the copy wraps
   around the floated photo instead of stacking beside it */
.hs-sign p { float: none !important; }

.hs-sign-photo {
  float: left !important;
  position: relative;
  width: 208px;
  height: 208px;
  margin: 4px 22px 8px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(23, 29, 51, .12);
}
.hs-sign-photo a { display: block; width: 100%; height: 100%; }
.hs-sign-photo .hs-sign-img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  margin: 0 !important;
  border-radius: 14px;
  transition: transform .3s ease;
}
.hs-sign-photo a:hover .hs-sign-img { transform: scale(1.05); }
.hs-sign-photo .hs-sign-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  margin: 0 !important;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 3px 10px rgba(23, 29, 51, .28);
}
@media (max-width: 520px) {
  .hs-sign-photo { width: 132px; height: 132px; margin-right: 16px; }
  .hs-sign-photo .hs-sign-badge { width: 42px !important; height: 42px !important; left: 7px; bottom: 7px; }
}
