/* SIGN BLOCK */
.hp-sign-block {
  margin-bottom: 12px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.hp-sign-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.hp-sign-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hp-sign-icon {
  width: 64px;
  height: 64px;
}

.hp-sign-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

.hp-sign-date {
  font-size: 13px;
  color: #64748b;
}

/* DIVIDER */
.hp-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e2e8f0, transparent);
  margin: 28px 0;
}

/* INSIGHTS */
.hp-insights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.hp-chip {
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.hp-chip span {
  display: block;
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
}

.hp-chip strong {
  font-size: 15px;
}

/* CTA */
.hp-readmore {
  margin-top: 24px;
}

.hp-readmore a {
  font-weight: 700;
  color: #f59e0b;
  transition: 0.3s;
}

.hp-readmore a:hover {
  letter-spacing: 0.5px;
}

/* ================= EDITORIAL TYPOGRAPHY ================= */
.hp-sign-content {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}

/* remove browser margin chaos */
.hp-sign-content * {
  margin-top: 0;
}

/* paragraphs */
.hp-sign-content p {
  margin-bottom: 1.1em;
}

/* headings */
.hp-sign-content h1,
.hp-sign-content h2,
.hp-sign-content h3,
.hp-sign-content h4,
.hp-sign-content h5 {
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

/* first element spacing fix */
.hp-sign-content > *:first-child {
  margin-top: 0 !important;
}

/* hierarchy */
.hp-sign-content h1 {
  font-size: 26px;
}

.hp-sign-content h2 {
  font-size: 20px;
}

.hp-sign-content h3 {
  font-size: 18px;
}

.hp-sign-content h4 {
  font-size: 15px;
}

.hp-sign-content h5 {
  font-size: 12px;
}

/* luxury divider */
.hp-sign-content h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--hp-gold-1), var(--hp-gold-2));
  border-radius: 3px;
}

/* strong */
.hp-sign-content strong {
  font-weight: 800;
  color: #111827;
}

/* italic */
.hp-sign-content em {
  font-style: italic;
  color: #475569;
}

/* lists */
.hp-sign-content ul {
  padding-left: 22px;
  margin-bottom: 1.2em;
}

.hp-sign-content li {
  margin-bottom: 0.5em;
}

/* blockquote */
.hp-sign-content blockquote {
  border-left: 4px solid var(--hp-gold-1);
  padding: 14px 18px;
  margin: 22px 0;
  background: #fff8e6;
  border-radius: 12px;
  font-style: italic;
}

/* links */
.hp-sign-content a {
  color: #f59e0b;
  font-weight: 600;
}

.hp-sign-content a:hover {
  text-decoration: underline;
}

/* ================= ZODIAC NAV ================= */

.hp-zodiac-nav {
  position: sticky;
  top: 90px;
  z-index: 60;
  margin-bottom: 10px;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

@media (max-width: 500px) {
  .hp-zodiac-nav-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= SMART ZODIAC NAV ================= */

/* hidden state */
.hp-zodiac-nav.hide {
  transform: translateY(-120%);
  opacity: 0;
}

/* container */
.hp-zodiac-scroll {
  display: flex;
  gap: 10px;

  overflow-x: auto;
  white-space: nowrap;

  padding: 6px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  scrollbar-width: none;
}

.hp-zodiac-scroll::-webkit-scrollbar {
  display: none;
}

/* items */
.hp-zodiac-scroll a {
  flex: 0 0 auto;

  padding: 8px 16px;
  border-radius: 999px;

  font-weight: 600;
  font-size: 14px;
  color: #334155;

  transition: all 0.25s ease;
}

/* hover luxury */
.hp-zodiac-scroll a:hover {
  background: linear-gradient(90deg, var(--hp-gold-1), var(--hp-gold-2));
  color: #111;
  transform: translateY(-2px);
}

.hp-sign-block {
  scroll-margin-top: 100px;
}
