/* Blog post shared styles - included in each post */
.post-hero {
  background: var(--ardosia);
  padding: 72px 56px 56px;
}
.post-hero .breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--lila);
  opacity: 0.75;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.post-hero .breadcrumb a { color: var(--lila); text-decoration: none; }
.post-hero .breadcrumb a:hover { color: var(--rose); }
.post-hero .post-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.post-hero h1 { color: var(--creme); margin-bottom: 18px; font-size: clamp(30px, 4vw, 46px); }
.post-hero .post-meta { font-size: 13px; font-weight: 500; color: var(--lila); opacity: 0.85; letter-spacing: 1px; }

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 40px;
}
.post-body p {
  font-size: 17px;
  color: var(--texto);
  line-height: 1.85;
  margin-bottom: 22px;
  font-weight: 400;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--roxo);
  margin: 44px 0 18px;
  font-weight: 500;
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 23px;
  color: var(--roxo);
  margin: 34px 0 14px;
  font-weight: 500;
}
.post-body ul, .post-body ol {
  padding-left: 26px;
  margin-bottom: 22px;
}
.post-body li {
  font-size: 17px;
  color: var(--texto);
  line-height: 1.8;
  margin-bottom: 8px;
  font-weight: 400;
}
.post-body strong { font-weight: 600; color: var(--roxo); }
.post-body a { color: var(--rose); font-weight: 500; }

.post-highlight {
  background: var(--lila);
  border-left: 3px solid var(--rose);
  padding: 22px 26px;
  margin: 30px 0;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--roxo);
  font-style: italic;
  line-height: 1.55;
  font-weight: 500;
}

.post-box {
  background: var(--creme);
  border: 0.5px solid var(--rose);
  padding: 26px;
  margin: 30px 0;
}
.post-box h3 { margin-top: 0; }

.post-assinatura {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 0.5px solid var(--rose);
  font-family: var(--serif);
  font-size: 19px;
  color: var(--roxo);
  font-style: italic;
  font-weight: 500;
}

.post-nav {
  background: var(--creme);
  border-top: 0.5px solid var(--rose);
  padding: 34px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--rose);
  text-decoration: none;
  text-transform: uppercase;
}
.post-nav a:hover { color: var(--roxo); }

@media (max-width: 768px) {
  .post-hero { padding: 56px 20px 40px; }
  .post-body { padding: 48px 20px; }
  .post-nav { padding: 26px 20px; flex-direction: column; gap: 14px; }
}
