/* Horoscope landing + detail + hub teaser. Dark-magazine premium feel. */

/* ========== shared container ========== */

.horoscope-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

.horoscope-back {
  display: inline-block;
  margin-top: 32px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--fs-small);
}

.horoscope-back:hover {
  color: var(--text-0);
}

/* ========== landing ========== */

.horoscope-hero {
  text-align: center;
  padding: 60px 16px 32px;
}

.horoscope-hero h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  margin: 0 0 12px;
}

.horoscope-hero .hero-sub {
  color: var(--text-muted);
  font-size: var(--fs-body);
  margin: 0 0 8px;
}

.horoscope-hero .week-line {
  font-size: var(--fs-small);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 540px) {
  .signs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 720px) {
  .signs-grid { grid-template-columns: repeat(4, 1fr); }
}

.sign-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, background 0.15s ease;
}

.sign-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.sign-card .symbol {
  font-size: 32px;
  line-height: 1;
}

.sign-card .name {
  font-family: var(--font-serif);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text-0);
}

.sign-card .dates {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* ========== detail ========== */

.horoscope-detail-hero {
  text-align: center;
  padding: 60px 16px 24px;
}

.horoscope-detail-hero .symbol {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 16px;
}

.horoscope-detail-hero h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  margin: 0 0 6px;
}

.horoscope-detail-hero .meta {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.horoscope-hook {
  margin: 32px 0 40px;
  padding: 28px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: var(--lh-body);
  color: var(--text-0);
}

.horoscope-cross {
  margin-top: 40px;
  padding: 20px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.horoscope-cross .label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 8px;
}

.horoscope-cross a {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* ========== hub teaser (replaces the "Coming soon" placeholder card) ========== */

.horoscope-teaser {
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.horoscope-teaser .teaser-title {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  margin: 0 0 6px;
}

.horoscope-teaser .teaser-sub {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin: 0 0 16px;
}

.teaser-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.teaser-strip .teaser-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  font-size: 22px;
  transition: background 0.15s ease;
}

.teaser-strip .teaser-sign:hover {
  background: rgba(255, 255, 255, 0.08);
}

.horoscope-teaser .teaser-cta {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-0);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
}

.horoscope-teaser .teaser-cta:hover {
  background: rgba(255, 255, 255, 0.14);
}
