/* Zodiac Signs archive (/zodiac-sign/) */

.zs-page {
  --zs-night: #1a0f2e;
  --zs-night-2: #2a1845;
  --zs-gold: #D4A574;
  --zs-gold-light: #E8C9A1;
  --zs-ink: var(--color-text, #2D2A32);
  --zs-muted: var(--color-text-light, #6B6670);
  --zs-line: var(--color-border, #E8E6E3);

  padding-top: 32px;
  padding-bottom: 64px;
}

/* Element tints */
.zs-el-fire  { --zs-el: #E0703A; --zs-el-soft: rgba(224, 112, 58, 0.12); }
.zs-el-earth { --zs-el: #6E9A5B; --zs-el-soft: rgba(110, 154, 91, 0.13); }
.zs-el-air   { --zs-el: #7C8FD6; --zs-el-soft: rgba(124, 143, 214, 0.14); }
.zs-el-water { --zs-el: #3A9AB5; --zs-el-soft: rgba(58, 154, 181, 0.13); }

/* Glyphs: force text presentation so they don't render as emoji boxes */
.zs-glyph {
  font-family: 'Noto Sans Symbols', 'Segoe UI Symbol', 'Apple Symbols', 'DejaVu Sans', sans-serif;
  font-variant-emoji: text;
  line-height: 1;
}

/* Quick jump strip */
.zs-jump {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 32px;
  padding: 12px;
  background: linear-gradient(135deg, var(--zs-night) 0%, var(--zs-night-2) 100%);
  border-radius: 16px;
}

.zs-jump__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.zs-jump__item .zs-glyph {
  font-size: 1.5rem;
  color: var(--zs-gold);
}

.zs-jump__name {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.zs-jump__item:hover,
.zs-jump__item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.zs-jump__item.is-current {
  background: rgba(212, 165, 116, 0.16);
  box-shadow: inset 0 0 0 1px rgba(212, 165, 116, 0.5);
  color: #fff;
}

/* Grid */
.zs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */
.zs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(45, 42, 50, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  scroll-margin-top: 110px;
  overflow: hidden;
}

.zs-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--zs-el);
  opacity: 0.85;
}

.zs-card:hover,
.zs-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--zs-el);
  box-shadow: 0 12px 28px rgba(26, 15, 46, 0.12);
}

.zs-card.is-current {
  border-color: var(--zs-gold);
  box-shadow: 0 0 0 1px var(--zs-gold), 0 10px 26px rgba(212, 165, 116, 0.22);
}

.zs-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zs-night);
  background: var(--zs-gold-light);
  border-radius: 999px;
}

.zs-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.zs-medallion {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  box-shadow: inset 0 0 0 2px rgba(212, 165, 116, 0.55), 0 4px 12px rgba(26, 15, 46, 0.25);
  transition: transform 0.3s ease;
}

.zs-medallion .zs-glyph {
  font-size: 2rem;
  color: var(--zs-gold);
}

.zs-card:hover .zs-medallion {
  transform: rotate(-8deg) scale(1.05);
}

.zs-card__titles {
  min-width: 0;
}

.zs-card__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
}

.zs-card__link {
  color: var(--zs-ink);
  text-decoration: none;
}

/* Whole card is clickable */
.zs-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.zs-card__link:focus-visible {
  outline: none;
}

.zs-card:focus-within {
  outline: 2px solid var(--zs-el);
  outline-offset: 2px;
}

.zs-card__dates {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--zs-muted);
  letter-spacing: 0.02em;
}

.zs-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.zs-chip {
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--zs-muted);
  background: #F4F2EF;
  border-radius: 999px;
}

.zs-chip--element {
  font-weight: 700;
  color: var(--zs-el);
  background: var(--zs-el-soft);
}

.zs-card__excerpt {
  flex: 1;
  margin: 0 0 18px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--zs-muted);
}

.zs-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-dark, #6B5B7E);
  transition: gap 0.2s, color 0.2s;
}

.zs-card:hover .zs-card__cta {
  gap: 10px;
  color: var(--zs-night);
}

/* Responsive */
@media (max-width: 1024px) {
  .zs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zs-jump { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .zs-page { padding-top: 20px; }
  .zs-grid { grid-template-columns: 1fr; gap: 16px; }
  .zs-jump { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; padding: 8px; }
  .zs-jump__name { font-size: 0.68rem; }
  .zs-card { padding: 20px; }
  .zs-medallion { width: 56px; height: 56px; }
  .zs-medallion .zs-glyph { font-size: 1.75rem; }
  .zs-card__title { font-size: 1.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .zs-card,
  .zs-medallion,
  .zs-card__cta { transition: none; }
  .zs-card:hover,
  .zs-card:hover .zs-medallion { transform: none; }
}

/* ==========================================================
   Single sign page (/zodiac-sign/{sign}/)
   ========================================================== */

/* Hero */
.zs-hero {
  --zs-night: #1a0f2e;
  --zs-night-2: #2a1845;
  --zs-gold: #D4A574;
  --zs-gold-light: #E8C9A1;

  position: relative;
  overflow: hidden;
  padding: 36px 0 56px;
  color: #fff;
  background:
    radial-gradient(ellipse at 85% 10%, var(--zs-el-soft, rgba(124, 143, 214, 0.14)) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(212, 165, 116, 0.14) 0%, transparent 50%),
    linear-gradient(160deg, #2a1845 0%, #1a0f2e 65%, #140b24 100%);
}

.zs-hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(1px 1px at 12% 22%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 68%, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 44% 30%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 58% 80%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 67% 18%, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 78% 58%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 90% 34%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 6% 84%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 36% 8%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 95% 88%, #fff 50%, transparent 51%);
}

.zs-hero__inner {
  position: relative;
}

.zs-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.zs-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.zs-breadcrumb a:hover {
  color: var(--zs-gold-light);
}

.zs-hero__main {
  display: flex;
  align-items: center;
  gap: 36px;
}

.zs-medallion--xl {
  width: 148px;
  height: 148px;
  box-shadow:
    inset 0 0 0 2px rgba(212, 165, 116, 0.7),
    0 0 0 10px rgba(212, 165, 116, 0.08),
    0 0 60px rgba(212, 165, 116, 0.25);
}

.zs-medallion--xl .zs-glyph {
  font-size: 4.5rem;
}

.zs-hero__eyebrow {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zs-gold);
}

.zs-hero__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.zs-hero__tagline {
  max-width: 560px;
  margin: 12px 0 18px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.zs-hero__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zs-hero__keywords li {
  padding: 5px 14px;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

/* Facts strip — overlaps the hero */
.zs-single {
  padding-top: 0;
}

.zs-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -28px 0 48px;
  background: var(--zs-line);
  border: 1px solid var(--zs-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(26, 15, 46, 0.10);
}

.zs-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
}

.zs-fact__icon {
  flex-shrink: 0;
  padding: 8px;
  box-sizing: content-box;
  color: var(--zs-el);
  background: var(--zs-el-soft);
  border-radius: 10px;
}

.zs-fact__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zs-muted);
}

.zs-fact__value {
  display: block;
  margin-top: 2px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--zs-ink);
}

/* Main column */
.zs-main {
  max-width: 880px;
  margin: 0 auto;
}

.zs-section {
  margin-bottom: 48px;
}

.zs-section__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--zs-ink);
}

.zs-section__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--zs-gold), transparent);
  opacity: 0.6;
}

.zs-about__image {
  float: right;
  width: 38%;
  max-width: 300px;
  margin: 4px 0 16px 28px;
}

.zs-about__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(26, 15, 46, 0.15);
}

.zs-prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--zs-ink);
}

.zs-prose p {
  margin: 0 0 1.1em;
}

.zs-prose::after {
  content: '';
  display: table;
  clear: both;
}

/* Strengths / challenges */
.zs-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.zs-traits__col {
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid var(--zs-line);
  background: #fff;
}

.zs-traits__col h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
}

.zs-traits__col--plus h3 { color: #3F8A5A; }
.zs-traits__col--minus h3 { color: #B4633A; }

.zs-traits__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zs-traits__col li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--zs-ink);
  border-top: 1px dashed var(--zs-line);
}

.zs-traits__col li:first-child {
  border-top: 0;
}

.zs-traits__col li::before {
  position: absolute;
  left: 0;
  top: 7px;
  font-weight: 700;
}

.zs-traits__col--plus li::before { content: '+'; color: #3F8A5A; }
.zs-traits__col--minus li::before { content: '–'; color: #B4633A; }

/* Love / career / friendship */
.zs-life {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.zs-life__card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 16px;
}

.zs-life__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--zs-gold);
  background: linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 12px;
}

.zs-life__card h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--zs-ink);
}

.zs-life__card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--zs-muted);
}

.zs-life__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.zs-life__tags li {
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--zs-el);
  background: var(--zs-el-soft);
  border-radius: 999px;
}

/* Growth tip */
.zs-growth {
  position: relative;
  margin: -16px 0 48px;
  padding: 22px 28px 22px 32px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.16), rgba(212, 165, 116, 0.05));
  border-left: 4px solid var(--zs-gold);
  border-radius: 0 14px 14px 0;
}

.zs-growth__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A6B3C;
}

.zs-growth p {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--zs-ink);
}

/* Compatibility */
.zs-compat {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.zs-compat__group {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 16px;
}

.zs-compat__group h3 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zs-muted);
}

.zs-compat__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zs-sign-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--zs-ink);
  text-decoration: none;
  background: var(--zs-el-soft);
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.zs-sign-pill .zs-glyph {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.05rem;
  color: #fff;
  background: var(--zs-el);
  border-radius: 50%;
}

a.zs-sign-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(26, 15, 46, 0.12);
}

.zs-compat__note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--zs-muted);
}

/* Horoscope list */
.zs-horoscopes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.zs-horo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  color: var(--zs-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.zs-horo:hover {
  transform: translateY(-2px);
  border-color: var(--zs-el);
  box-shadow: 0 10px 22px rgba(26, 15, 46, 0.10);
}

.zs-horo__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.zs-horo__excerpt {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--zs-muted);
}

.zs-horo__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary-dark, #6B5B7E);
}

.zs-horo--latest {
  grid-column: 1 / -1;
  padding: 26px 28px;
  color: #fff;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(212, 165, 116, 0.22), transparent 55%),
    linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-color: transparent;
}

.zs-horo--latest .zs-horo__label {
  font-size: 2rem;
}

.zs-horo--latest .zs-horo__excerpt {
  max-width: 640px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
}

.zs-horo--latest .zs-horo__cta {
  color: var(--zs-gold);
}

.zs-horo__badge {
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zs-night);
  background: var(--zs-gold-light);
  border-radius: 999px;
}

.zs-empty {
  color: var(--zs-muted);
}

/* Prev / next */
.zs-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 24px;
  padding-top: 32px;
  border-top: 1px solid var(--zs-line);
}

.zs-pager__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  min-width: 200px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.zs-pager__link--next {
  margin-left: auto;
  text-align: right;
}

.zs-pager__link:hover {
  border-color: var(--zs-gold);
  box-shadow: 0 6px 16px rgba(26, 15, 46, 0.08);
}

.zs-pager__dir {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zs-muted);
}

.zs-pager__link--prev .zs-pager__dir::before { content: '← '; }
.zs-pager__link--next .zs-pager__dir::after { content: ' →'; }

.zs-pager__sign {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--zs-ink);
}

.zs-pager__link--next .zs-pager__sign {
  justify-content: flex-end;
}

.zs-pager__sign .zs-glyph {
  color: #9A6B3C;
}

.zs-jump--compact {
  margin-bottom: 0;
}

/* Single responsive */
@media (max-width: 1024px) {
  .zs-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zs-life { grid-template-columns: 1fr; }
  .zs-horoscopes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .zs-hero { padding: 24px 0 48px; }
  .zs-breadcrumb { margin-bottom: 20px; }
  .zs-hero__main { flex-direction: column; align-items: flex-start; gap: 20px; }
  .zs-medallion--xl { width: 96px; height: 96px; }
  .zs-medallion--xl .zs-glyph { font-size: 3rem; }
  .zs-hero__tagline { font-size: 1rem; }
  .zs-facts { margin-bottom: 36px; }
  .zs-fact { padding: 14px; gap: 10px; }
  .zs-fact__icon { padding: 6px; }
  .zs-fact__value { font-size: 0.9rem; }
  .zs-section__title { font-size: 1.65rem; }
  .zs-about__image { float: none; width: 100%; max-width: none; margin: 0 0 20px; }
  .zs-traits,
  .zs-compat,
  .zs-horoscopes { grid-template-columns: 1fr; }
  .zs-horo--latest .zs-horo__label { font-size: 1.6rem; }
  .zs-growth p { font-size: 1.2rem; }
  .zs-pager__link { min-width: 0; flex: 1; padding: 12px 14px; }
  .zs-pager__sign { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  .zs-horo,
  .zs-sign-pill { transition: none; }
  .zs-horo:hover,
  a.zs-sign-pill:hover { transform: none; }
}

/* ==========================================================
   Horoscope listings (/horoscopes/, /past-horoscopes/)
   ========================================================== */

.zs-hero--compact { padding-bottom: 64px; }

.zs-medallion--icon { color: var(--zs-gold); }

.zs-horo-page { padding-top: 0; }

.zs-jump--overlap {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  box-shadow: 0 12px 30px rgba(26, 15, 46, 0.18);
}

.zs-empty-state {
  padding: 40px 24px;
  text-align: center;
  color: var(--zs-muted);
  background: #fff;
  border: 1px dashed var(--zs-line);
  border-radius: 16px;
}

.zs-empty-state p { margin: 0; }

/* Archive call-to-action */
.zs-archive-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 32px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(212, 165, 116, 0.18), transparent 60%),
    linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 18px;
}

.zs-archive-cta h2 {
  margin: 0 0 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
}

.zs-archive-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.zs-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zs-night);
  text-decoration: none;
  background: var(--zs-gold);
  border-radius: 999px;
  transition: background 0.2s, gap 0.2s;
}

.zs-btn:hover {
  gap: 12px;
  color: var(--zs-night);
  text-decoration: none;
  background: var(--zs-gold-light);
}

/* Sign filter */
.zs-filter {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  margin-top: -32px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(26, 15, 46, 0.10);
}

.zs-filter__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--zs-ink);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.zs-filter__item--all { padding: 7px 16px; }

.zs-filter__item .zs-glyph {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 0.95rem;
  color: var(--zs-el);
  background: var(--zs-el-soft);
  border-radius: 50%;
}

.zs-filter__item:hover {
  color: var(--zs-ink);
  text-decoration: none;
  background: #F4F2EF;
}

.zs-filter__item.is-active {
  color: #fff;
  background: var(--zs-night);
}

.zs-filter__item.is-active .zs-glyph {
  color: var(--zs-night);
  background: var(--zs-gold);
}

.zs-archive-note {
  margin: 20px 0 36px;
  font-size: 0.92rem;
  color: var(--zs-muted);
}

.zs-archive-note a {
  font-weight: 700;
  color: var(--color-primary-dark, #6B5B7E);
}

/* Months grid (default view) */
.zs-year { margin-bottom: 40px; }

.zs-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.zs-month {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 16px;
}

.zs-month__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.zs-month__head h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--zs-ink);
}

.zs-month__count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zs-muted);
}

.zs-month__signs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zs-month__sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 2px;
  color: var(--zs-ink);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s;
}

a.zs-month__sign:hover {
  color: var(--zs-ink);
  text-decoration: none;
  background: var(--zs-el-soft);
}

.zs-month__sign .zs-glyph {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  color: var(--zs-gold);
  background: linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 50%;
}

.zs-month__name {
  font-size: 0.7rem;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zs-month__sign.is-missing { opacity: 0.3; }

.zs-month__sign.is-missing .zs-glyph {
  color: var(--zs-muted);
  background: #EEEBE7;
}

/* Single-sign history (filtered view) */
.zs-sign-history__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.zs-sign-history__head h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--zs-ink);
}

.zs-sign-history__head p {
  margin: 2px 0 0;
  color: var(--zs-muted);
}

.zs-timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 28px;
  list-style: none;
}

.zs-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--zs-el), var(--zs-line));
  border-radius: 2px;
}

.zs-timeline__item {
  position: relative;
  margin-bottom: 14px;
}

.zs-timeline__item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid var(--zs-el);
  border-radius: 50%;
}

.zs-timeline__card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  color: var(--zs-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.zs-timeline__card:hover {
  color: var(--zs-ink);
  text-decoration: none;
  border-color: var(--zs-el);
  box-shadow: 0 8px 20px rgba(26, 15, 46, 0.08);
  transform: translateX(3px);
}

.zs-timeline__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--zs-gold);
  background: linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 12px;
}

.zs-timeline__month {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.zs-timeline__year {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.zs-timeline__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.zs-timeline__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.zs-timeline__excerpt {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--zs-muted);
}

.zs-timeline__arrow {
  flex-shrink: 0;
  color: var(--zs-muted);
}

@media (max-width: 900px) {
  .zs-months { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .zs-hero--compact { padding-bottom: 56px; }
  .zs-archive-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
  .zs-filter { gap: 4px; padding: 8px; }
  .zs-filter__name { display: none; }
  .zs-filter__item { padding: 5px; }
  .zs-filter__item--all { padding: 7px 14px; }
  .zs-month { padding: 18px; }
  .zs-month__signs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .zs-timeline { padding-left: 22px; }
  .zs-timeline__item::before { left: -21px; }
  .zs-timeline__card { gap: 12px; padding: 14px; }
  .zs-timeline__date { width: 50px; height: 50px; }
  .zs-timeline__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .zs-timeline__card,
  .zs-btn { transition: none; }
  .zs-timeline__card:hover { transform: none; }
}

/* ==========================================================
   Single horoscope (/horoscopes/{sign-month}/)
   ========================================================== */

.zs-hero__keywords a { color: #fff; text-decoration: none; }
.zs-hero__keywords a:hover { color: var(--zs-gold-light); }

.hs-page { padding-top: 40px; padding-bottom: 72px; }

.hs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}

/* Intro for visitors */
.hs-intro {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.16), rgba(212, 165, 116, 0.05));
  border: 1px solid rgba(212, 165, 116, 0.35);
  border-radius: 16px;
}

.hs-intro__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--zs-gold);
  background: linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 50%;
}

.hs-intro p { margin: 0 0 14px; line-height: 1.6; color: var(--zs-ink); }

.hs-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.hs-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #7A5230;
  text-decoration: none;
}

.hs-link:hover { color: var(--zs-night); text-decoration: underline; }

.hs-content { margin-bottom: 32px; }

/* Timeline */
.hs-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 31px;
  width: 2px;
  background: linear-gradient(var(--zs-el), rgba(212, 165, 116, 0.25));
  border-radius: 2px;
}

.hs-pred {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 22px;
  scroll-margin-top: 120px;
}

.hs-pred__date {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--zs-gold);
  background: linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--color-background, #FAFAF8), inset 0 0 0 1.5px rgba(212, 165, 116, 0.55);
}

.hs-pred__day {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.hs-pred__month {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hs-pred__card {
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hs-pred:target .hs-pred__card,
.hs-pred__card:hover {
  border-color: var(--zs-el);
  box-shadow: 0 10px 24px rgba(26, 15, 46, 0.08);
}

.hs-pred__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--zs-ink);
}

.hs-pred__detail {
  margin: 6px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--zs-el);
  font-weight: 700;
}

.hs-pred__body {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--zs-ink);
}

.hs-pred__body p { margin: 0 0 0.9em; }
.hs-pred__body p:last-child { margin-bottom: 0; }

.hs-pred__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--zs-line);
}

.hs-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--zs-muted);
  background: #F4F2EF;
  border-radius: 999px;
}

.hs-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #B8B2BC;
  border-radius: 50%;
}

.hs-status.is-open { color: #05603A; background: #ECFDF3; }
.hs-status.is-open::before { background: #12B76A; }

/* Rating */
.hs-eval {
  margin-top: 16px;
  padding: 18px 20px;
  background: #FAF8F5;
  border: 1px solid var(--zs-line);
  border-radius: 14px;
  transition: box-shadow 0.3s, opacity 0.2s;
}

.hs-eval.eval-loading { opacity: 0.6; pointer-events: none; }
.hs-eval.eval-success { box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.3); }

.hs-eval__q {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--zs-ink);
}

.hs-eval__range {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hs-eval input[type="range"] {
  --fill: 50%;
  flex: 1;
  height: 8px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--zs-gold) var(--fill), #E4E0DB var(--fill));
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.hs-eval input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--zs-night);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(26, 15, 46, 0.35);
}

.hs-eval input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--zs-night);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(26, 15, 46, 0.35);
}

.hs-eval input[type="range"]:focus-visible { box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.35); }

.hs-eval__value {
  min-width: 48px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--zs-ink);
  text-align: right;
}

.hs-eval__scale {
  display: flex;
  justify-content: space-between;
  margin: 6px 62px 12px 0;
  font-size: 0.75rem;
  color: var(--zs-muted);
}

.hs-eval textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 0.92rem;
  color: var(--zs-ink);
  background: #fff;
  border: 1.5px solid var(--zs-line);
  border-radius: 10px;
  resize: vertical;
}

.hs-eval textarea:focus {
  outline: none;
  border-color: var(--zs-gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.zs-page .hs-eval .submit-eval,
.zs-page .hs-eval .submit-eval:hover {
  margin-top: 10px;
  min-height: 0;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--zs-night);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  transform: none;
}

.zs-page .hs-eval .submit-eval:hover { background: var(--zs-night-2); }

/* Sidebar */
.hs-side {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hs-box {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--zs-line);
  border-radius: 16px;
}

.hs-box__title {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zs-muted);
}

.hs-dates {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-dates a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--zs-ink);
  text-decoration: none;
  border-top: 1px solid #F1EEEA;
}

.hs-dates li:first-child a { border-top: 0; }

.hs-dates time {
  font-weight: 700;
  color: #9A6B3C;
}

.hs-dates a:hover span { text-decoration: underline; }

.hs-signs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-signs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 2px;
  color: var(--zs-ink);
  text-decoration: none;
  border-radius: 10px;
}

.hs-signs__item:hover { color: var(--zs-ink); text-decoration: none; background: #F4F2EF; }

.hs-signs__item .zs-glyph {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 1.05rem;
  color: var(--zs-gold);
  background: linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 50%;
}

.hs-signs__item.is-current { background: rgba(212, 165, 116, 0.14); }
.hs-signs__item.is-current .zs-glyph { color: var(--zs-night); background: var(--zs-gold); }

.hs-signs__name {
  font-size: 0.66rem;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hs-pager { margin-top: 32px; }

.hs-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 3000;
  max-width: calc(100% - 32px);
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: #05603A;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}

.hs-toast.is-error { background: #B42318; }

@media (max-width: 1000px) {
  .hs-layout { grid-template-columns: 1fr; }
  .hs-side { position: static; }
}

@media (max-width: 640px) {
  .hs-page { padding-top: 28px; }
  .hs-intro { flex-direction: column; gap: 12px; padding: 18px; }
  .hs-timeline::before { left: 23px; }
  .hs-pred { grid-template-columns: 48px minmax(0, 1fr); gap: 12px; }
  .hs-pred__date { width: 48px; height: 48px; }
  .hs-pred__day { font-size: 1.25rem; }
  .hs-pred__month { font-size: 0.6rem; }
  .hs-pred__card { padding: 18px; }
  .hs-pred__title { font-size: 1.3rem; }
  .hs-signs { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* The theme's .container clearfix pseudo-elements would take up grid cells */
.hs-layout::before,
.hs-layout::after { content: none; display: none; }

/* Rating gate for visitors: looks like the real rating UI, leads to sign-up */
.hs-gate {
  position: relative;
  margin-top: 16px;
  padding: 20px 22px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(212, 165, 116, 0.28), transparent 60%),
    linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
  border-radius: 14px;
}

.hs-gate.is-later {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(124, 143, 214, 0.25), transparent 60%),
    linear-gradient(145deg, var(--zs-night-2), var(--zs-night));
}

.hs-gate__q {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.hs-gate__hint {
  margin: 4px 0 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.hs-gate__scores {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 6px;
}

.hs-gate__score {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
}

.hs-gate__score:hover,
.hs-gate__score:focus-visible {
  color: var(--zs-night);
  text-decoration: none;
  background: var(--zs-gold);
  border-color: var(--zs-gold);
  transform: translateY(-2px);
  outline: none;
}

.hs-gate__scale {
  display: flex;
  justify-content: space-between;
  margin: 6px 0 16px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
}

.hs-gate.is-later .hs-gate__hint { margin-bottom: 16px; }

.hs-gate__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.hs-gate__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zs-night, #1a0f2e);
  text-decoration: none;
  background: var(--zs-gold, #D4A574);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(212, 165, 116, 0.35);
  transition: background 0.15s, transform 0.15s;
}

.hs-gate__cta:hover {
  color: var(--zs-night, #1a0f2e);
  text-decoration: none;
  background: var(--zs-gold-light, #E8C9A1);
  transform: translateY(-1px);
}

.hs-gate__or {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

.hs-gate__or a {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Score carried through sign-up */
.hs-eval.is-preset {
  border-color: var(--zs-gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.3);
}

.hs-eval__welcome {
  margin: 0 0 10px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #7A5230;
  background: rgba(212, 165, 116, 0.16);
  border-radius: 8px;
}

/* Sticky sign-up bar */
.hs-stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  padding: 12px 0;
  color: #fff;
  background: rgba(26, 15, 46, 0.97);
  border-top: 1px solid rgba(212, 165, 116, 0.4);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  animation: hsBarIn 0.25s ease;
}

@keyframes hsBarIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.hs-stickybar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hs-stickybar__inner::before,
.hs-stickybar__inner::after { content: none; display: none; }

.hs-stickybar p {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.hs-stickybar p strong { color: #fff; }

.hs-stickybar .hs-gate__cta { flex-shrink: 0; padding: 10px 20px; box-shadow: none; }

.hs-page .hs-stickybar__close,
.hs-stickybar__close,
.hs-stickybar__close:hover {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  min-height: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: 0;
  box-shadow: none;
  transform: none;
  cursor: pointer;
}

.hs-stickybar__close:hover { color: #fff; }

@media (max-width: 640px) {
  .hs-gate { padding: 18px 16px; }
  .hs-gate__q { font-size: 1.3rem; }
  .hs-gate__scores { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hs-gate__cta { flex: 1 1 100%; justify-content: center; }
  .hs-stickybar p span { display: none; }
  .hs-stickybar .hs-gate__cta { flex: 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .hs-gate__score, .hs-gate__cta { transition: none; }
  .hs-stickybar { animation: none; }
}

/* Monthly horoscope: answer-first summary, CTA between predictions, FAQ */
.hs-summary {
  margin: 0 0 32px;
  padding: 0 0 0 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: #2D2A32;
  border-left: 3px solid #D4A574;
}

.hs-timeline + .hs-intro { margin: 8px 0 28px; }

.hs-faq { margin-top: 48px; }

.hs-faq__item {
  padding: 18px 0;
  border-top: 1px solid #E8E4DF;
}

.hs-faq__item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2D2A32;
}

.hs-faq__item p {
  margin: 0;
  line-height: 1.65;
  color: #5E5963;
}

/* Sign page: definition list facts, one-line definition, FAQ */
.zs-facts dt,
.zs-facts dd { margin: 0; }

.zs-definition {
  margin: 0 0 32px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: #2D2A32;
}

.zs-compat__more { margin: 18px 0 0; }
.zs-compat__more a { font-weight: 700; color: #7A5230; text-decoration: none; }

.zs-faq__item { padding: 18px 0; border-top: 1px solid #E8E4DF; }
.zs-faq__item h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: #2D2A32; }
.zs-faq__item p { margin: 0; line-height: 1.65; color: #5E5963; }

.hs-byline { margin: -18px 0 32px; font-size: 0.88rem; color: #8F8993; }
.hs-byline a { font-weight: 700; color: #7A5230; text-decoration: none; }
