/* ══════════════════════════════════════════════
   BE WEISZ — Blog Post Shared Styles
   Used by: jan_blog.html, dec_blog.html, nov_blog.html
   ══════════════════════════════════════════════ */

/* ── Post Hero ── */
.post-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 70px;
  overflow: hidden;
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgb(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgb(201, 168, 76, 0.05) 0%, transparent 50%), var(--black);
  z-index: 0;
}

.post-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.post-category {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.post-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.post-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.post-meta-divider {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ── Floating Particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    0 0 12px 4px rgb(201, 168, 76, 0.6),
    0 0 30px 8px rgb(201, 168, 76, 0.25);
  animation: floatUp ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 8%;
  width: 8px;
  height: 8px;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 25%;
  width: 10px;
  height: 10px;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle:nth-child(3) {
  left: 45%;
  width: 7px;
  height: 7px;
  animation-delay: 4s;
  animation-duration: 11s;
}

.particle:nth-child(4) {
  left: 65%;
  width: 9px;
  height: 9px;
  animation-delay: 1s;
  animation-duration: 13s;
}

.particle:nth-child(5) {
  left: 85%;
  width: 11px;
  height: 11px;
  animation-delay: 3s;
  animation-duration: 15s;
}

.particle:nth-child(6) {
  left: 50%;
  width: 8px;
  height: 8px;
  animation-delay: 5s;
  animation-duration: 12s;
}

@keyframes floatUp {
  0% {
    bottom: -5%;
    opacity: 0;
    transform: translateX(0) scale(0.3);
  }

  8% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 1;
    transform: translateX(12px);
  }

  50% {
    opacity: 0.9;
    transform: translateX(-8px);
  }

  75% {
    opacity: 0.7;
    transform: translateX(15px);
  }

  92% {
    opacity: 0.3;
  }

  100% {
    bottom: 105%;
    opacity: 0;
    transform: translateX(-5px) scale(0.5);
  }
}

/* ── Nav Active State ── */
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── Article Body ── */
.post-body {
  padding: 60px 24px 80px;
  background: var(--black);
}

.post-content {
  max-width: 680px;
  margin: 0 auto;
}

.post-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--grey-light);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.post-content p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  float: left;
  line-height: 0.85;
  margin-right: 10px;
  margin-top: 6px;
  color: var(--gold);
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  margin: 2rem 0 0.8rem;
}

.post-content ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.post-content ul li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.post-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

.post-content em {
  color: var(--gold-light);
  font-style: italic;
}

.post-content strong {
  color: var(--white);
  font-weight: 500;
}

.post-content blockquote {
  margin: 2rem 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: rgb(201, 168, 76, 0.03);
  border-radius: 0 8px 8px 0;
}

.post-content blockquote p {
  color: var(--grey-light);
  font-style: italic;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ── Poetic Lines (dec_blog) ── */
.post-content .poetic-lines {
  margin: 2rem 0;
  padding-left: 20px;
}

.post-content .poetic-lines p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* ── Signature ── */
.post-signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.signature-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.signature-site {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}

/* ── PDF Download ── */
.pdf-download {
  margin-top: 2rem;
  text-align: center;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid rgb(201, 168, 76, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pdf-link:hover {
  background: rgb(201, 168, 76, 0.06);
  border-color: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.pdf-link svg {
  width: 16px;
  height: 16px;
  stroke: currentcolor;
  fill: none;
  stroke-width: 2;
}

/* ── Post Navigation ── */
.post-nav {
  padding: 0 24px 80px;
  background: var(--black);
}

.post-nav-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal);
}

.post-nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.post-nav-link:hover {
  color: var(--gold);
}

.post-nav-link svg {
  width: 14px;
  height: 14px;
  stroke: currentcolor;
  fill: none;
  stroke-width: 2;
}

/* ── Responsive ── */
@media (width <= 768px) {
  .post-hero {
    padding: 130px 20px 50px;
    min-height: 32vh;
  }

  .post-content p:first-child::first-letter {
    font-size: 2.5rem;
  }
}

/* ══════════════════════════════════════════════
   BE WEISZ — Blog Post Shared Styles
   Used by: jan_blog.html, dec_blog.html, nov_blog.html
   ══════════════════════════════════════════════ */

/* ── Post Hero ── */
.post-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 70px;
  overflow: hidden;
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgb(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgb(201, 168, 76, 0.05) 0%, transparent 50%), var(--black);
  z-index: 0;
}

.post-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.post-category {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.post-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.post-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.post-meta-divider {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ── Floating Particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    0 0 12px 4px rgb(201, 168, 76, 0.6),
    0 0 30px 8px rgb(201, 168, 76, 0.25);
  animation: floatUp ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 8%;
  width: 8px;
  height: 8px;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 25%;
  width: 10px;
  height: 10px;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle:nth-child(3) {
  left: 45%;
  width: 7px;
  height: 7px;
  animation-delay: 4s;
  animation-duration: 11s;
}

.particle:nth-child(4) {
  left: 65%;
  width: 9px;
  height: 9px;
  animation-delay: 1s;
  animation-duration: 13s;
}

.particle:nth-child(5) {
  left: 85%;
  width: 11px;
  height: 11px;
  animation-delay: 3s;
  animation-duration: 15s;
}

.particle:nth-child(6) {
  left: 50%;
  width: 8px;
  height: 8px;
  animation-delay: 5s;
  animation-duration: 12s;
}

@keyframes floatUp {
  0% {
    bottom: -5%;
    opacity: 0;
    transform: translateX(0) scale(0.3);
  }

  8% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 1;
    transform: translateX(12px);
  }

  50% {
    opacity: 0.9;
    transform: translateX(-8px);
  }

  75% {
    opacity: 0.7;
    transform: translateX(15px);
  }

  92% {
    opacity: 0.3;
  }

  100% {
    bottom: 105%;
    opacity: 0;
    transform: translateX(-5px) scale(0.5);
  }
}

/* ── Nav Active State ── */
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── Article Body ── */
.post-body {
  padding: 60px 24px 80px;
  background: var(--black);
}

.post-content {
  max-width: 680px;
  margin: 0 auto;
}

.post-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--grey-light);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.post-content p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  float: left;
  line-height: 0.85;
  margin-right: 10px;
  margin-top: 6px;
  color: var(--gold);
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  margin: 2rem 0 0.8rem;
}

.post-content ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.post-content ul li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.post-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

.post-content em {
  color: var(--gold-light);
  font-style: italic;
}

.post-content strong {
  color: var(--white);
  font-weight: 500;
}

.post-content blockquote {
  margin: 2rem 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: rgb(201, 168, 76, 0.03);
  border-radius: 0 8px 8px 0;
}

.post-content blockquote p {
  color: var(--grey-light);
  font-style: italic;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ── Poetic Lines (dec_blog) ── */
.post-content .poetic-lines {
  margin: 2rem 0;
  padding-left: 20px;
}

.post-content .poetic-lines p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* ── Signature ── */
.post-signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.signature-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.signature-site {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}

/* ── PDF Download ── */
.pdf-download {
  margin-top: 2rem;
  text-align: center;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid rgb(201, 168, 76, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pdf-link:hover {
  background: rgb(201, 168, 76, 0.06);
  border-color: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.pdf-link svg {
  width: 16px;
  height: 16px;
  stroke: currentcolor;
  fill: none;
  stroke-width: 2;
}

/* ── Post Navigation ── */
.post-nav {
  padding: 0 24px 80px;
  background: var(--black);
}

.post-nav-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal);
}

.post-nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.post-nav-link:hover {
  color: var(--gold);
}

.post-nav-link svg {
  width: 14px;
  height: 14px;
  stroke: currentcolor;
  fill: none;
  stroke-width: 2;
}

/* ── Responsive ── */
@media (width <= 768px) {
  .post-hero {
    padding: 130px 20px 50px;
    min-height: 32vh;
  }

  .post-content p:first-child::first-letter {
    font-size: 2.5rem;
  }
}

/* ── Freebie Callout (in-post download block) ── */
.freebie-callout {
  margin: 3.5rem 0 2.5rem;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(180deg, rgb(201, 168, 76, 0.06), rgb(201, 168, 76, 0.02)), var(--black-rich, #0a0a0a);
  border: 1px solid rgb(201, 168, 76, 0.25);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.freebie-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgb(201, 168, 76, 0.08), transparent 60%);
  pointer-events: none;
}

.freebie-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(201, 168, 76, 0.4);
  border-radius: 50%;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.freebie-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentcolor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.freebie-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.freebie-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.freebie-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 10px;
}

.freebie-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
  margin: 0 0 18px;
}

.freebie-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid rgb(201, 168, 76, 0.4);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.freebie-link:hover {
  background: rgb(201, 168, 76, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 18px var(--gold-glow);
}

.freebie-link svg {
  width: 15px;
  height: 15px;
  stroke: currentcolor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (width <= 600px) {
  .freebie-callout {
    flex-direction: column;
    padding: 28px 24px;
    gap: 16px;
  }

  .freebie-title {
    font-size: 1.35rem;
  }
}
