/* ============================================================
   NUMEROLOGY â€“ TODAY'S UNIVERSAL ENERGY HERO BLOCK
   numerology.html only
   ============================================================ */

.numerology-page {
  /* we let .page from styles.css handle the core width/padding */
}

/* optional: light spacing for the numerology header wrapper */
.numerology-hero {
  margin: 2rem 0 1.5rem;
}

/* Match numerology H1 to the page-hero H1 on other pages */
.numerology-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.85rem;      /* same visual size as index/horoscopes */
  line-height: 1.25;
  letter-spacing: 0.015em;
  color: var(--teal-dark); /* teal, not black */
  margin: 0 0 1.25rem;     /* similar spacing under the header */
}

/* Generic hidden utility for numerology result sections */
.numerology-page .is-hidden {
  display: none;
}


/* Section heading under the main H1 */
.numerology-energy-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.015em;
  margin: 0 0 0.25rem;
}

/* subtitle under the section title */
.energy-subtitle {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: #4a4a4a;
}

/* ============================================================
   MAIN TEAL CONTAINER
   ============================================================ */

.numerology-energy-section {
  margin: 2rem 0 3rem;   /* follow the same content width as .page */
}

.numerology-energy-inner {
  display: flex;
  align-items: stretch;
  gap: 2rem;

  padding: 1.75rem 1.75rem 1.9rem;
  border-radius: 1.25rem;

  background: linear-gradient(
    135deg,
    rgba(151, 205, 202, 0.32) 0%,
    rgba(231, 246, 245, 0.92) 55%,
    rgba(245, 243, 239, 1) 100%
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   LEFT SIDE: IMAGE PANEL
   ============================================================ */

.numerology-energy-image {
  flex: 0 0 380px;
  max-width: 420px;
  border-radius: 1.1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.numerology-energy-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* gentle teal glow over the image */
.numerology-energy-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(151, 205, 202, 0.25),
    transparent 55%
  );
  pointer-events: none;
}

/* ============================================================
   RIGHT SIDE: TITLE + TEXT + CARDS
   ============================================================ */

.numerology-energy-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* small eyebrow if you ever use it */
.numerology-energy-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 59, 59, 0.85);
  margin-bottom: 0.25rem;
}

/* stack the 3 cards vertically */
.energy-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

/* ============================================================
   CARD BASE
   ============================================================ */

.energy-card {
  background: #ffffff;
  border-radius: 0.95rem;
  padding: 0.9rem 1.1rem 1.05rem;
  border: 1px solid rgba(15, 59, 59, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);

  position: relative;
  overflow: visible;
  padding-right: 7rem;   /* reserve clean space for the big number */
}

/* Top row container so label stays clean */
.energy-card-header {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  margin-bottom: 0.35rem;
}

/* "UNIVERSAL YEAR" etc. â€“ match your H1 family, bigger size */
.energy-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: rgba(15, 59, 59, 0.96);
}

/* Title line inside card â€“ "The Global Healer" */
.energy-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  color: #6f4e5f;
  margin-top: -0.25rem;
  margin-bottom: 0.45rem;
}

/* Body copy in the card */
.energy-card-text {
  margin: 0;
  font-size: 1rem;
  color: #374444;
  line-height: 1.65;
}

/* Optional note / small italics line */
.energy-card-note {
  margin: 0.5rem 0 0;
  font-size: 0.86rem;
  color: rgba(15, 59, 59, 0.8);
  font-style: italic;
}

/* Large full-color numerology number on the right */
.energy-card-number-large {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;   /* same style as Today's Energy pill */
  font-weight: 500;
  font-size: 6rem;                    /* large and bold */
  line-height: 1;
  color: #0f3b3b;                     /* dark teal full color */
  pointer-events: none;
}

/* Make it even bigger on wide screens */
@media (min-width: 1100px) {
  .energy-card-number-large {
    font-size: 5.5rem;
    right: 1.4rem;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets and down: stack image above content */
@media (max-width: 900px) {
  .numerology-energy-inner {
    flex-direction: column;
    padding: 1.5rem 1.25rem 1.7rem;
  }

  .numerology-energy-image {
    flex: none;
    max-width: 100%;
  }
}

/* Small phones: tighten spacing, slightly smaller type */
@media (max-width: 600px) {
  .numerology-energy-inner {
    padding: 1.25rem 1rem 1.5rem;
  }

  .energy-subtitle {
    font-size: 0.94rem;
  }

  .energy-card {
    padding: 0.8rem 0.9rem 0.95rem;
    padding-right: 5.5rem;
  }

  .energy-card-label {
    font-size: 1rem;
    letter-spacing: 0.10em;
  }

  .energy-card-title {
    font-size: 1.05rem;
  }

  .energy-card-text {
    font-size: 0.95rem;
  }

  .energy-card-number-large {
    font-size: 4rem;
    right: 0.9rem;
  }
}

@media (max-width: 420px) {
  .energy-card {
    padding-right: 4.5rem;
  }

  .energy-card-number-large {
    font-size: 3.4rem;
  }
}





/* ============================================================
   EXPLORE YOUR PERSONAL NUMEROLOGY â€“ HEADER + WIDE TEAL BOX
   ============================================================ */

/* H2 + paragraph OUTSIDE the teal box */
.numerology-tools-header {
  max-width: 1200px;
  margin: 2.4rem auto 1.2rem;
  padding: 0 1.5rem;
}

.numerology-tools-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
  margin: 0;
}

.numerology-tools-header p {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(9, 49, 49, 0.88);
}

/* Teal block with the 8 cards â€“ SAME WIDTH as the Universal Energy block */
.section.numerology-tools-section {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  padding: 0;               /* no extra padding so it lines up perfectly */
}

.numerology-tools-inner {
  padding: 1.9rem 1.8rem 2.1rem;
  border-radius: 1.25rem;

  background: linear-gradient(
    135deg,
    rgba(151, 205, 202, 0.30) 0%,
    rgba(231, 246, 245, 0.96) 55%,
    #f5f3ef 100%
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.11);

  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Grid of 8 cards (2 per row on desktop) */
.numerology-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.4rem;
}

/* Card layout: image left, text right */
.numerology-tool-card {
  display: flex;
  align-items: stretch;
  gap: 1.1rem;

  background: #ffffff;
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(15, 59, 59, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* Image pane */
.numerology-tool-card__media {
  flex: 0 0 36%;
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.numerology-tool-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Soft teal glow overlay on card images */
.numerology-tool-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(151, 205, 202, 0.18),
    transparent 55%
  );
  pointer-events: none;
}

/* Text side */
.numerology-tool-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.numerology-tool-card__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f3b3b;
  margin: 0 0 0.45rem;
}

.numerology-tool-card__body p {
  margin: 0 0 0.75rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #344141;
}

/* BUTTONS â€“ match Tarot/Numerology homepage look, scoped to this section */
.numerology-tools-section .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0f3b3b, #275a63);
  color: #f5f3ef;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.numerology-tools-section .btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  filter: brightness(1.05);
}

.numerology-tools-section .btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

/* =============== Responsive tweaks =============== */

@media (max-width: 1024px) {
  .numerology-tools-inner {
    padding: 1.7rem 1.4rem 1.9rem;
  }
}

@media (max-width: 900px) {
  .numerology-tools-grid {
    grid-template-columns: 1fr;   /* single column */
  }
}

@media (max-width: 720px) {
  .numerology-tools-header {
    margin-top: 2rem;
    padding: 0 1.25rem;
  }

  .section.numerology-tools-section {
    padding: 0 1.25rem;
  }

  .numerology-tool-card {
    flex-direction: column;
    padding: 0.9rem 0.9rem 1.1rem;
  }

  .numerology-tool-card__media {
    flex: none;
    height: 190px;
  }

  .numerology-tools-header h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .numerology-tools-inner {
    padding: 1.4rem 0.85rem 1.7rem;
  }

  .numerology-tool-card__media {
    height: 180px;
  }

  .numerology-tool-card__body p {
    font-size: 0.93rem;
  }
}






/* ============================================================
   LIFE PATH PAGE â€“ DESIGN TWEAKS & SHARED CALC STYLES
   (Overrides go at bottom of numerology.css)
   ============================================================ */

/* Hero lead: full width of main content */
.numerology-hero-lead {
  margin-top: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(9, 49, 49, 0.88);
}

/* --------- CALCULATOR HERO BLOCK --------- */

.numerology-calc-section {
  margin: 2.1rem 0 2.8rem;
}

.numerology-calc-inner {
  display: flex;
  gap: 3rem;
  align-items: stretch;

  padding: 1.9rem 1.9rem 2.1rem;
  border-radius: 1.25rem;

  background: linear-gradient(
    135deg,
    rgba(151, 205, 202, 0.32) 0%,
    rgba(231, 246, 245, 0.94) 55%,
    #f5f3ef 100%
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Left image block â€“ slightly smaller so it lines up with button bottom */
.numerology-calc-image {
  flex: 0 0 320px;
  max-width: 370px;
  height: 350px;
  border-radius: 1.1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.numerology-calc-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numerology-calc-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(151, 205, 202, 0.25),
    transparent 55%
  );
  pointer-events: none;
}

/* Right content + form â€“ top aligned, form centered horizontally */
.numerology-calc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* heading at top of card */
  align-items: center;          /* center form and content block */
  padding-top: 0.2rem;
}

.numerology-calc-right h2 {
  align-self: flex-start;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
  margin: 0 0 0.45rem;
}

.numerology-calc-right p {
  align-self: flex-start;
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #344141;
}

/* --------- FORM LOOK & FEEL --------- */

/* Whole form block centered inside the right column */
.numerology-form {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 360px;   /* controls width of name / DOB / button */
}

/* Extra space between Name and DOB rows */
.numerology-form .form-row-wide:first-of-type {
  margin-bottom: 0.25rem;
}

/* Each row */
.numerology-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Labels */
.numerology-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(9, 49, 49, 0.9);
}

/* Inputs + selects â€“ pill style, cream background */
.numerology-form input,
.numerology-form select {
  width: 100%;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 59, 59, 0.25);
  background-color: #f5f3ef;  /* cream */
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #0f3b3b;
  font-weight: 500;
  box-sizing: border-box;
}

/* Make selects look nice + centered, with arrow pulled in a bit */
.numerology-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
  text-align-last: center;
  padding-right: 2.2rem; /* room for arrow */

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230f3b3b' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 10px 6px;
}

.numerology-form input:focus,
.numerology-form select:focus {
  outline: none;
  border-color: rgba(15, 59, 59, 0.8);
  box-shadow: 0 0 0 1px rgba(15, 59, 59, 0.18);
}

/* DOB row: Month / Day / Year inline + centered text */
.numerology-form .dob-row {
  display: flex;
  gap: 0.45rem;
}

.numerology-form .dob-row select,
.numerology-form .dob-row input {
  flex: 1;
  text-align: center;
}

.numerology-form .dob-row select,
.numerology-form .dob-row input::placeholder {
  color: rgba(9, 49, 49, 0.9);
  font-weight: 600;
}

/* Button row: same width as fields, centered */
.numerology-form .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;   /* more space under DOB */
}

.numerology-form .form-actions .btn-primary {
  width: 100%;          /* same width as the fields */
  justify-content: center;
}

/* --------- BUTTON â€“ teal pill with visible color change on hover --------- */

.life-path-calc .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  padding: 0.6rem 1.6rem;

  background: linear-gradient(135deg, #0f3b3b, #275a63);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background 0.15s ease;
  cursor: pointer;
}

.life-path-calc .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  filter: brightness(1.12);
  background: linear-gradient(135deg, #1a5a5a, #33737d); /* slightly lighter teal */
}

.life-path-calc .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}







/* --------- RESPONSIVE TWEAKS --------- */

@media (max-width: 900px) {
  .numerology-calc-inner {
    flex-direction: column;
    padding: 1.6rem 1.4rem 1.9rem;
  }

  .numerology-calc-image {
    max-width: 100%;
    height: auto; /* let it grow naturally on smaller screens */
  }

  .numerology-calc-right {
    align-items: flex-start;
  }

  .numerology-form {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .numerology-hero {
    margin: 1.8rem 0 1.3rem;
  }

  .numerology-hero-lead {
    font-size: 0.95rem;
  }

  .numerology-calc-inner {
    padding: 1.3rem 1rem 1.6rem;
  }

  .numerology-form .dob-row {
    flex-direction: column;
  }
	
}


@media (max-width: 420px) {
  .dob-row {
    flex-direction: column;
    gap: 0.65rem;
  }
}





/* ==============================================
   LIFE PATH â€“ MOBILE IMAGE HEIGHT OVERRIDE
   (iPhone / small screens)
   ============================================== */
@media (max-width: 600px) {

  /* Make the calc layout stack (you already have something like this,
     but we're repeating here with higher precedence + later in file) */
  .life-path-calc .numerology-calc-inner {
    flex-direction: column;
  }

  /* Force a shorter image on mobile */
  .life-path-calc .numerology-calc-image {
    height: 180px !important;   /* try 160â€“200px to taste */
    max-height: 180px !important;
  }

  .life-path-calc .numerology-calc-image img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
  }
}

/* ==============================================
   LIFE PATH â€“ FORM WIDTH / CENTERING FIX
   ============================================== */

.life-path-calc .numerology-calc-right {
  align-items: center; /* keep the form block centered in the card */
}

.life-path-calc .numerology-form {
  width: 100%;
  max-width: 360px !important;  /* narrow column for Name / DOB / button */
  margin: 0.9rem auto 0;        /* centers the whole stack */
}

/* Make sure each row + the button stay within that 360px column */
.life-path-calc .numerology-form .form-row,
.life-path-calc .numerology-form .form-row-wide,
.life-path-calc .numerology-form .form-actions {
  width: 100%;
}




/* ===========================================
   LIFE PATH RESULT â€“ LAYOUT + STICKY COLUMN
   =========================================== */

/* Force 2-column layout just for this Life Path panel */
.life-path-result-section .horoscope-panel {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Left column (image + tarot side card) */
.life-path-result-section .horoscope-panel-left {
  flex: 0 0 320px;          /* keep a nice fixed-ish column */
  max-width: 360px;
}

/* Right column grows */
.life-path-result-section .horoscope-panel-body {
  flex: 1;
}



/* ===========================================
   LIFE PATH RESULT â€“ FINAL STICKY OVERRIDE
   =========================================== */
@media (min-width: 900px) {
  body.numerology-page .life-path-result-section .horoscope-panel-left {
    position: sticky !important;
    top: 8.75rem !important;   /* adjust this number to line up with horoscopes.html */
    align-self: flex-start !important;
    z-index: 3;
  }
}

/* ===========================================
   LIFE PATH RESULT â€“ MOBILE LAYOUT
   Center image + side card and move to bottom
   =========================================== */
@media (max-width: 899px) {
  /* Stack the panel content vertically */
  .life-path-result-section .horoscope-panel {
    display: flex;
    flex-direction: column;
  }

  /* Show the reading FIRST on mobile */
  .life-path-result-section .horoscope-panel-body {
    order: 1;
    width: 100%;
  }

  /* Show the image + side card AFTER the reading, centered */
  .life-path-result-section .horoscope-panel-left {
    order: 2;
    position: static;          /* no sticky on mobile */
    flex: none;
    max-width: 360px;
    margin: 1.5rem auto 0;     /* centers it and pushes it to bottom */
  }
}



/* Life Path result is hidden until user submits the form */
.life-path-result-section.is-hidden {
  display: none;
}



.life-path-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 0;
  text-align: center;
  gap: 1.4rem;
}

.life-path-loading-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #97cdca; /* your mid-teal */
  box-shadow: 0 0 0 rgba(15, 59, 59, 0.25);
  animation: pulseGlow 1.3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); box-shadow: 0 0 0 rgba(15, 59, 59, 0.0); }
  50% { transform: scale(1.15); box-shadow: 0 0 15px rgba(15, 59, 59, 0.4); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 rgba(15, 59, 59, 0.0); }
}

.life-path-loading p {
  font-size: 1.15rem;
  opacity: 0.85;
  color: #0f3b3b;
}

/* For the Life Path: # */
.num-date {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #5c3358;
}




/* ===========================================
   Numerology Life Path â€“ left promo cards
   =========================================== */

/* Desktop+ â€“ stack cards, keep them narrow */
@media (min-width: 900px) {
  body.numerology-page .life-path-result-section .numerology-panel-left {
    position: sticky !important;
    top: 8.75rem !important;
    align-self: flex-start !important;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.6rem;  /* extra gap between cards in addition to inline margin */
  }

  /* Make sure card contents never exceed the column */
  body.numerology-page .life-path-result-section
  .numerology-panel-left .horoscope-side-card {
    width: 100%;
    max-width: 260px;
    box-sizing: border-box;
  }

  /* Images behave nicely inside the narrow column */
  body.numerology-page .life-path-result-section
  .numerology-panel-left .horoscope-side-card__img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* Mobile / tablet â€“ let the column go full width again */
@media (max-width: 899px) {
  body.numerology-page #life-path-result .horoscope-panel-left {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.numerology-page .life-path-result-section .numerology-panel-left {
    position: static !important;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}





/* Yes / No Tarot result layout within horoscope-panel */
.yesno-result-section {
  max-width: 1120px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.yesno-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .yesno-reading-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.yesno-reading-text {
  min-width: 0;
}

.yesno-reading-card {
  display: flex;
  justify-content: center;
}

.yesno-card-frame {
  max-width: 260px;
  width: 100%;
}

/* Card image fade-in */
.yesno-card-image {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.yesno-card-image.is-hidden {
  opacity: 0;
  transform: translateY(6px);
}





.yesno-shuffle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.yesno-shuffle.is-visible {
  display: flex;
}

.yesno-shuffle-orb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(151, 205, 202, 0.4);
  box-shadow: 0 0 0 0 rgba(151, 205, 202, 0.6);
  animation: yesno-pulse 1.4s infinite;
}

@keyframes yesno-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(151, 205, 202, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(151, 205, 202, 0); }
  100% { box-shadow: 0 0 0 0 rgba(151, 205, 202, 0); }
}


/* Inline layout for Yes/No tarot card */
.yesno-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.yesno-meta {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.yesno-card-inline {
  flex: 0 0 auto;
  max-width: 140px;        /* smaller card */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.yesno-card-image {
  display: block;
  width: 100%;
  height: auto;
}

/* On mobile, center the card above the text, no squeeze */
@media (max-width: 780px) {
  .yesno-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .yesno-card-inline {
    max-width: 180px;
    margin-top: 0.75rem;
  }
}




/* Inline layout for Yes/No tarot result header */
.yesno-header-inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.yesno-header-text {
  flex: 1 1 auto;
}

.yesno-meta {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.yesno-divider {
  opacity: 0.7;
  padding: 0 0.35rem;
}

.yesno-card-inline {
  flex: 0 0 auto;
  max-width: 120px; /* small card */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.yesno-card-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Mobile: stack the card under the meta line */
@media (max-width: 780px) {
  .yesno-header-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .yesno-card-inline {
    max-width: 160px;
    margin-top: 0.75rem;
  }
}




/* Yes/No Tarot result container */
.yesno-result-section {
  margin-top: 2.75rem;
}

.yesno-result-section.is-hidden {
  display: none;
}

.yesno-result-section.has-result .horoscope-content-inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}

/* Shuffle state */
.yesno-result-section.is-loading .horoscope-content-inner {
  opacity: 0.5;
}



/* Card image on the right: float and fade */
.yesno-card-frame {
  float: right;
  margin-left: 1.75rem;
  margin-bottom: 1.25rem;
  max-width: 180px;
}

.yesno-card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}

.yesno-card-image.is-hidden {
  opacity: 0;
  transform: translateY(6px);
}

/* Make tarot question box match numerology inputs */
.numerology-form textarea#yesno-question {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d4cbc4;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #fdfaf6;
  color: #2d2a26;
  resize: vertical;
  min-height: 110px;
  box-sizing: border-box;
}



/* =========================================
   TAROT CARD OF THE DAY â€” 3 face-down cards
   ========================================= */

/* Flex row for the 3 cards */
.cotd-card-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* allows nice wrapping on small screens */
}

/* Individual card button */
.cotd-card-btn {
  width: clamp(90px, 12vw, 140px); /* responsive tarot size */
  aspect-ratio: 2 / 3;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

/* The back image itself */
.cotd-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* removes bottom spacing */
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  border: 1px solid rgba(15,59,59,0.25);
}

/* Hover effect */
.cotd-card-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

/* Small screens */
@media (max-width: 780px) {
  .cotd-card-row {
    gap: 0.8rem;
  }
  .cotd-card-btn {
    width: clamp(78px, 20vw, 110px);
  }
}

/* Ensure tarot meta line matches numerology size */
.yesno-meta {
  font-size: 1.55rem !important;
  line-height: 1.35;
}

/* Extra space before the final italic blessing line for Tarot Card of the Day */
.horoscope-panel--expression #cotd-card-body p:last-of-type {
  margin-top: 1.25rem !important;
}




/* Tarot Card of the Day ONLY â€” make left hero image full height */
.tarot-cotd-calc .numerology-calc-inner {
  align-items: stretch; /* ensures both columns match height */
}

.tarot-cotd-calc .numerology-calc-image {
  align-self: stretch;
  display: flex;
}

.tarot-cotd-calc .numerology-calc-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;       /* fills tall space nicely */
  border-radius: inherit;  /* keeps your rounded corners consistent */
}


/* Tarot Card of the Day â€” force centered plum countdown */
.cotd-reveal-line {
  text-align: center !important;
  color: #4a2a4a !important; /* plum */
  font-size: 1.1rem;
  margin-top: 0.65rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  display: block;
  width: 100%;
}





/* 3-card tarot: card row uses existing .cotd-card-row base styling */

/* hint + reset line under hero text */
.threecard-reset {
	margin-top: 1.75rem
}

.threecard-hint {
  margin-top: 1.75rem !important;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b3a55; /* same plum tone you use for num-date */
}




/* inline header layout like yes/no */
.threecard-header-inline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 820px) {
  .threecard-header-inline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* meta line under title */
.threecard-meta {
  font-size: 1.45rem; /* match your num-date look */
}

/* row of three mini cards in result header */
.threecard-mini-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.threecard-mini {
  max-width: 110px;
  text-align: center;
  font-size: 0.8rem;
  color: #4b3a55;
}

.threecard-mini img.yesno-card-image {
  width: 100%;
  height: auto;
  border-radius: 0.9rem;
  box-shadow: 0 10px 22px rgba(15, 59, 59, 0.3);
}

/* badge that appears on selected face-down cards */
.threecard-card-btn {
  position: relative;
}

.threecard-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 59, 59, 0.9);
  color: #f5f3ef;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* subtle highlight when a card is picked */
.threecard-card-btn.threecard-picked {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 59, 59, 0.25);
}

/* extra space before final blessing line in three-card reading */
.horoscope-panel--expression #threecard-body p:last-of-type {
  margin-top: 1.25rem;
}


/* Make the hero image full-height on the 3-Card Tarot page */
.threecard-page .numerology-calc-section .numerology-calc-inner {
  align-items: stretch !important; /* allow left column to grow full height */
}

/* Ensure the left column grows vertically */
.threecard-page .numerology-calc-image {
  height: auto !important;
  align-self: stretch !important;
}

/* Make the image fit full height (just like your other pages)
   Keep aspect ratio while covering the entire column */
.threecard-page .numerology-calc-image img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;        /* fills column without distortion */
  object-position: center;  /* center the mystical altar */
}












/* ============================================
   BRANDED LINK STYLING FOR ALL NUMEROLOGY PAGES
   (Challenge, Life Path, Personality, Expression, etc.)
   ============================================ */

/* Target links inside any numerology content section */
.numerology-faq-section a,
.numerology-faqs a,
.numerology-tools-section a.btn-text, 
.numerology-page a.internal-link {
  color: #0f3b3b;              /* deep teal brand color */
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted rgba(15, 59, 59, 0.35);
}

/* Keep visited links same color */
.numerology-faq-section a:visited,
.numerology-faqs a:visited,
.numerology-tools-section a.btn-text:visited,
.numerology-page a.internal-link:visited {
  color: #0f3b3b;
}

/* Hover / focus state */
.numerology-faq-section a:hover,
.numerology-faqs a:hover,
.numerology-tools-section a.btn-text:hover,
.numerology-page a.internal-link:hover,
.numerology-faq-section a:focus,
.numerology-faqs a:focus,
.numerology-tools-section a.btn-text:focus,
.numerology-page a.internal-link:focus {
  border-bottom-style: solid;
  border-bottom-color: rgba(15, 59, 59, 0.7);
  text-decoration: none;
}

/* ============================================
   FORCE BRANDED LINKS IN CHALLENGE FAQ
   ============================================ */

.numerology-page .numerology-faqs .faq-item a {
  color: #0f3b3b !important;  /* deep teal */
  text-decoration: none !important;
  font-weight: 500;
  border-bottom: 1px dotted rgba(15, 59, 59, 0.35);
}

/* visited state */
.numerology-page .numerology-faqs .faq-item a:visited {
  color: #0f3b3b !important;
}

/* hover / focus */
.numerology-page .numerology-faqs .faq-item a:hover,
.numerology-page .numerology-faqs .faq-item a:focus {
  border-bottom-style: solid;
  border-bottom-color: rgba(15, 59, 59, 0.7);
  text-decoration: none !important;
}


/* ============================================
   Global “brand link” style for numerology
   ============================================ */

a.brand-link {
  color: #0f3b3b !important;  /* deep teal brand color */
  text-decoration: none !important;
  font-weight: 500;
  border-bottom: 1px dotted rgba(15, 59, 59, 0.35);
}

/* Keep visited links the same color */
a.brand-link:visited {
  color: #0f3b3b !important;
}

/* Hover / focus state */
a.brand-link:hover,
a.brand-link:focus {
  border-bottom-style: solid;
  border-bottom-color: rgba(15, 59, 59, 0.7);
  text-decoration: none !important;
}



/* ============================================
   BIRTH CHART PAGE – LAYOUT & WHEEL
   ============================================ */

.birthchart-page .numerology-hero {
  margin-top: 2.1rem;
}

.birthchart-page .numerology-hero h1 {
  color: var(--teal-dark);
}

/* Small privacy note under form */
.birthchart-privacy-note {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: rgba(9, 49, 49, 0.7);
}

/* Time-of-birth checkbox line */
.birthchart-checkbox {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  font-size: 0.86rem;
  color: rgba(9, 49, 49, 0.85);
}

.birthchart-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* Make sure birth chart result really hides when is-hidden is present */
.birthchart-result-section.is-hidden {
  display: none !important;
}

/* Slightly wider card ONLY for birth chart */
.horoscope-panel--birthchart {
  max-width: 1160px;
  margin: 0 auto;
}

/* Card body */
.horoscope-panel--birthchart .horoscope-panel-body {
  max-width: 100%;
  margin: 0 auto;
  padding: 2.2rem 3.2rem 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Meta line under title */
.birthchart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 1.05rem;
}

.birthchart-divider {
  opacity: 0.7;
}

/* ============================================
   SINGLE-COLUMN LAYOUT
   ============================================ */

.birthchart-layout {
  width: 100%;
  max-width: 960px;
  margin: 1.25rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Wheel wrapper */
.birthchart-wheel-wrap {
  flex: none;
  width: 100%;
  max-width: 880px;
  margin: 0 auto 1.25rem;
}

/* Wheel container – no card chrome */
.birthchart-wheel {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* SVG wheel – larger overall */
.birthchart-wheel svg {
  display: block;
  width: 780px !important;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
}

/* Placeholder text before a chart is loaded */
.birthchart-wheel-placeholder {
  text-align: center;
  font-size: 0.94rem;
  color: rgba(9, 49, 49, 0.72);
  margin: 1.8rem 0;
}

/* Legend under wheel */
.birthchart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: rgba(9, 49, 49, 0.9);
}

.birthchart-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-line {
  display: inline-block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
}

/* Brand-aligned aspect colors */
.legend-line--conjunction { background: #c8a35c; }
.legend-line--trine       { background: #4f7fbf; }
.legend-line--sextile     { background: #68b9b0; }
.legend-line--square      { background: #c45858; }
.legend-line--opposition  { background: #8b3042; }
.legend-line--quincunx    { background: #6fa86a; }

/* SUMMARY: centered, readable width */
.birthchart-summary {
  flex: none;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   TABLES – PLANETS & ASPECTS
   ============================================ */

.birthchart-details {
  width: 100%;
  max-width: 900px;
  margin: 2.1rem auto 0;
}

.birthchart-table {
  margin-top: 0.6rem;
  margin-bottom: 1.6rem;
  border-radius: 0.75rem;
  background: #fbf8f3;
  border: 1px solid rgba(15, 59, 59, 0.08);
  padding: 0.6rem 0.7rem;
}

.birthchart-table-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.birthchart-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.4fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  background: #f8f4f0;
  font-size: 0.92rem;
}

.birthchart-table-row--head {
  font-weight: 600;
  background: #eee0d2;
  color: #3b3128;
}

.birthchart-cell {
  font-size: 0.92rem;
  color: #344141;
}

.birthchart-cell--planet-label {
  font-weight: 600;
  color: #0f3b3b;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.birthchart-cell--planet-retro {
  text-align: right;
  font-weight: 600;
  color: #8b3042;
}

.birthchart-glyph {
  font-size: 1.05rem;
}

/* Elements (match homepage element colors) */
.elem-fire  { color: #c66a24; font-weight: 600; }
.elem-earth { color: #5c7b34; font-weight: 600; }
.elem-air   { color: #1f6a7c; font-weight: 600; }
.elem-water { color: #4a4ca8; font-weight: 600; }

/* Aspect label cells */
.birthchart-cell--aspect-label {
  font-weight: 600;
  color: #4b3a55;
}

.birthchart-cell--aspect-orb {
  text-align: right;
  font-size: 0.86rem;
  color: rgba(9, 49, 49, 0.8);
}

/* Debug block */
.birthchart-debug {
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.birthchart-debug-json {
  margin-top: 0.5rem;
  background: #111827;
  color: #e5e7eb;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  max-height: 320px;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .horoscope-panel--birthchart .horoscope-panel-body {
    padding: 1.8rem 1.4rem 2.2rem;
  }

  .birthchart-layout {
    max-width: 100%;
  }

  .birthchart-wheel-wrap {
    max-width: 100%;
  }

  .birthchart-wheel svg {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .birthchart-table-row {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.8fr);
  }

  .birthchart-cell--planet-retro,
  .birthchart-cell--aspect-orb {
    text-align: left;
  }
}

/* Hide the old loader overlay */
.birthchart-loading {
  display: none !important;
}

/* ============================================
   SVG STYLING – CLEAN GLYPHS, NO PURPLE
   ============================================ */

/* Rings */
.birthchart-wheel svg .outer-ring {
  stroke-width: 18 !important;
  stroke: #e0d6cc !important;
}

.birthchart-wheel svg .zodiac-ring {
  stroke-width: 5 !important;
  stroke: #0f3b3b !important;
}

.birthchart-wheel svg .aspect-ring {
  stroke-width: 1 !important;
  stroke: #eadfd4 !important;
}

/* Dividers */
.birthchart-wheel svg .sign-line {
  stroke-width: 0.8 !important;
  stroke: #e9dfd6 !important;
}

.birthchart-wheel svg .house-line {
  stroke: #c8b39e !important;
  stroke-width: 1.3 !important;
  stroke-dasharray: 3 3 !important;
}

/* Use ONLY classic serif fonts for all glyph text */
.birthchart-wheel svg text {
  font-family: "Times New Roman", "Noto Serif", "DejaVu Serif", serif !important;
}



.birthchart-wheel svg .sign-degree {
  font-size: 11px !important;
  fill: #3c3229 !important;
}

/* House numbers */
.birthchart-wheel svg .house-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  fill: #7a5d47 !important;
}



.birthchart-wheel svg .planet-label {
  font-size: 12px !important;
  font-weight: 500 !important;
  fill: #0f3b3b !important;
}

/* Axis labels (ASC / MC) */
.birthchart-wheel svg .angle-label {
  font-size: 10px !important;
  fill: #7a5d47 !important;
}

/* Aspect lines */
.birthchart-wheel svg .aspect-line {
  stroke-width: 1.6 !important;
  opacity: 0.95 !important;
}

/* Kill ANY purple background tiles, no matter how they are drawn */
.birthchart-wheel svg rect {
  fill: none !important;
  stroke: none !important;
}

/* ============================================
   SVG STYLING – RADIUS / GLYPHS (CLEAN)
   ============================================ */

/* Overall wheel size on desktop */
.birthchart-wheel svg {
  width: 760px !important;
  max-width: 100%;
  height: auto !important;
}

/* Rings */
.birthchart-wheel svg .outer-ring {
  stroke-width: 18 !important;
  stroke: #e0d6cc !important;
}

.birthchart-wheel svg .zodiac-ring {
  stroke-width: 5 !important;
  stroke: #0f3b3b !important;
}

.birthchart-wheel svg .aspect-ring {
  stroke-width: 1 !important;
  stroke: #eadfd4 !important;
}

/* Sign/house divider lines */
.birthchart-wheel svg .sign-line {
  stroke-width: 0.8 !important;
  stroke: #e9dfd6 !important;
}

.birthchart-wheel svg .house-line {
  stroke: #c8b39e !important;
  stroke-width: 1.3 !important;
  stroke-dasharray: 3 3 !important;
}

/* ---- FONT OVERRIDES: kill emoji, use serif symbol fonts ---- */
.birthchart-wheel svg .sign-glyph,
.birthchart-wheel svg .sign-degree,
.birthchart-wheel svg .planet-glyph,
.birthchart-wheel svg .planet-label,
.birthchart-wheel svg .house-label,
.birthchart-wheel svg .angle-label {
  font-family: "Times New Roman", "Noto Serif", "DejaVu Serif",
               "Segoe UI Symbol", serif !important;
}



/* NEWLY ADDED 12:02am */
/* Planet radial labels: degree ? sign ? minute */
.birthchart-wheel svg .planet-degree,
.birthchart-wheel svg .planet-sign,
.birthchart-wheel svg .planet-minute {
  font-family: "Times New Roman", Georgia, serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  fill: #3c3229 !important;
}
.birthchart-wheel svg .planet-glyph {
  font-family: "Times New Roman", Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  fill: #0f3b3b !important;
}






/* Zodiac ring (sign glyphs + degrees) */
.birthchart-wheel svg .sign-glyph {
  font-size: 16px !important;
  font-weight: 600 !important;
  fill: #3c3229 !important;
}

.birthchart-wheel svg .sign-degree {
  font-size: 11px !important;
  fill: #3c3229 !important;
}

/* House numbers */
.birthchart-wheel svg .house-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  fill: #7a5d47 !important;
}

/* Planet glyphs + labels inside the houses */
.birthchart-wheel svg .planet-glyph {
  font-size: 18px !important;
  font-weight: 600 !important;
  fill: #0f3b3b !important;
}

/* Degree+sign+minute labels under each planet glyph */
.birthchart-wheel svg .planet-label {
  font-size: 12px !important;
  font-weight: 500 !important;
  fill: #0f3b3b !important;
}

/* Axis labels (ASC / MC) */
.birthchart-wheel svg .angle-label {
  font-size: 10px !important;
  fill: #7a5d47 !important;
}

/* Aspect lines */
.birthchart-wheel svg .aspect-line {
  stroke-width: 1.6 !important;
  opacity: 0.95 !important;
}

/* Subtle outline to fatten skinny glyphs so all planets look similar */
.birthchart-wheel svg .sign-glyph,
.birthchart-wheel svg .planet-glyph {
  stroke: #3c3229 !important;         /* outline color */
  stroke-width: 0.35 !important;      /* tweak up/down if needed */
  paint-order: stroke fill !important;/* draw stroke first, then fill */
}

/* Kill any leftover background tiles if there are rects with classes */
.birthchart-wheel svg rect[class] {
  fill: none !important;
  stroke: none !important;
}

/* i like this */
/*.birthchart-wheel svg .planet-glyph.planet-venus,
.birthchart-wheel svg .planet-glyph.planet-mars {
  font-size: 20px !important;
  stroke-width: 1.55 !important;
} */


/* Soften all planet glyphs & match size across the board */
.birthchart-wheel svg .planet-glyph {
  font-size: 20px !important;   /* a bit bigger, like you liked for Mars/Venus */
  font-weight: 500 !important;  /* lighter than the old 700 */
}

/* Slightly soften the outer sign glyphs too */
.birthchart-wheel svg .sign-glyph {
  font-weight: 500 !important;
}


