/* ═══════════════════════════════════════════════════════════
   BLOG CSS — Rodrigo Medeiros | Portal de Saúde Mental
   Design: News Portal / Magazine
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg-dark:   #0f1f36;
  --bg-dark2:  #162843;
  --gold:      #c9a84c;
  --gold-l:    #e5c878;
  --gold-d:    #a8872e;
  --navy:      #112D4E;
  --slate:     #424F61;
  --muted:     #5D6A7A;
  --border:    #e2e8f2;
  --light:     #f8fafc;
  --white:     #ffffff;
  --r-sm:      8px;
  --r:         14px;
  --r-lg:      20px;
  --r-xl:      28px;
  --pill:      999px;
  --nav-h:     72px;
  --sh-sm:     0 2px 12px rgba(17,45,78,.07);
  --sh-md:     0 4px 24px rgba(17,45,78,.10);
  --sh-lg:     0 8px 40px rgba(17,45,78,.16);
  --sh-gold:   0 4px 24px rgba(201,168,76,.25);
  --max-w:     1160px;
  --tr:        all .22s cubic-bezier(.4,0,.2,1);
}

.blog-body {
  background: var(--light);
  color: var(--slate);
  font-family: 'Inter', -apple-system, sans-serif;
}

/* ══════════════════════════════════════════
   BLOG HERO
   ══════════════════════════════════════════ */
.bh-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 5rem 0 0;
  overflow: hidden;
}

.bh-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(14,40,80,.8) 0%, transparent 70%);
  pointer-events: none;
}

.bh-hero-inner {
  position: relative;
  z-index: 1;
}

.bh-breadcrumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 2rem;
}
.bh-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.bh-breadcrumb a:hover { color: var(--gold); }
.bh-breadcrumb svg { opacity: .4; flex-shrink: 0; }

.bh-hero-text { margin-bottom: 2.5rem; }

.bh-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--pill);
  margin-bottom: 1.25rem;
}
.bh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.bh-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.bh-em {
  font-style: italic;
  color: var(--gold);
}

.bh-desc {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.55);
  max-width: 560px;
  line-height: 1.7;
}

/* Category bar */
.bh-cats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bh-cats-bar::-webkit-scrollbar { display: none; }

.bh-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .38rem .95rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  border-radius: var(--pill);
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--tr);
  text-decoration: none;
}
.bh-cat-pill span {
  background: rgba(255,255,255,.1);
  padding: .1rem .45rem;
  border-radius: var(--pill);
  font-size: .72rem;
}
.bh-cat-pill:hover,
.bh-cat-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}
.bh-cat-pill.active span { background: rgba(0,0,0,.15); }

/* ══════════════════════════════════════════
   MAIN LAYOUT
   ══════════════════════════════════════════ */
.bh-main { padding: 3.5rem 0 5rem; }

.bh-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 960px) {
  .bh-layout { grid-template-columns: 1fr; }
  .bh-sidebar { order: -1; }
}

/* ══════════════════════════════════════════
   FEATURED POST
   ══════════════════════════════════════════ */
.bh-featured {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  transition: var(--tr);
}
.bh-featured:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
@media (max-width: 700px) {
  .bh-featured { grid-template-columns: 1fr; }
}

.bh-featured-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.bh-featured-img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .5s;
}
.bh-featured:hover .bh-featured-img img { transform: scale(1.04); }

.bh-featured-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--pill);
}

.bh-featured-body {
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bh-featured-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.bh-featured-title a { color: inherit; transition: color .2s; }
.bh-featured-title a:hover { color: var(--gold-d); }

.bh-featured-excerpt {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Meta (author + date) ── */
.bh-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.bh-meta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.bh-meta-info { flex: 1; min-width: 100px; }
.bh-meta-info strong { display: block; font-size: .82rem; color: var(--navy); }
.bh-meta-info span   { font-size: .76rem; color: var(--muted); }

.bh-read-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg-dark);
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: var(--pill);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--tr);
  text-decoration: none;
  flex-shrink: 0;
}
.bh-read-btn:hover { background: var(--gold); color: var(--bg-dark); }

/* ══════════════════════════════════════════
   CATEGORY TAG (inline)
   ══════════════════════════════════════════ */
.bh-cats-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .75rem;
}
.bh-cats-sm { margin-bottom: .5rem; }

.bh-cat-tag {
  background: rgba(201,168,76,.13);
  color: var(--gold-d);
  border: 1px solid rgba(201,168,76,.3);
  font-size: .7rem;
  font-weight: 700;
  padding: .18rem .6rem;
  border-radius: var(--pill);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--tr);
}
.bh-cat-tag:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════
   GRID DE CARDS
   ══════════════════════════════════════════ */
.bh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) { .bh-grid { grid-template-columns: 1fr; } }

.bh-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.bh-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }

.bh-card-img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8edf5;
}
.bh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.bh-card:hover .bh-card-img img { transform: scale(1.05); }

.bh-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#e8edf5,#d0d8e8);
  color: var(--muted);
}

.bh-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bh-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: .5rem;
}
.bh-card-title a { color: inherit; }
.bh-card-title a:hover { color: var(--gold-d); }

.bh-card-excerpt {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: .85rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bh-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.bh-card-date {
  font-size: .78rem;
  color: var(--muted);
}
.bh-card-read {
  font-size: .78rem;
  color: var(--gold-d);
  font-weight: 600;
  background: rgba(201,168,76,.1);
  padding: .18rem .55rem;
  border-radius: var(--pill);
}

/* ══════════════════════════════════════════
   PAGINAÇÃO
   ══════════════════════════════════════════ */
.bh-pagination {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.bh-page-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  border-radius: var(--pill);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--tr);
}
.bh-page-btn:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}
.bh-page-nums { display: flex; gap: .35rem; }
.bh-page-num {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: var(--tr);
  background: var(--white);
}
.bh-page-num:hover,
.bh-page-num.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  font-weight: 800;
}

/* ══════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════ */
.bh-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
}
.bh-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.bh-empty h2 { color: var(--navy); font-size: 1.4rem; margin-bottom: .5rem; }

/* ══════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════ */
.bh-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .bh-sidebar { position: static; }
}

/* CTA */
.bhs-cta {
  background: linear-gradient(145deg, var(--bg-dark), var(--bg-dark2));
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(201,168,76,.15);
}
.bhs-cta-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #1a2f4a;
}
.bhs-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .9;
}
.bhs-cta-body { padding: 1.25rem; color: #fff; }
.bhs-cta-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: #fff;
}
.bhs-cta-body p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Boxes */
.bhs-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}

.bhs-box-title {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--gold);
}

/* Trending */
.bhs-trending { display: flex; flex-direction: column; gap: .75rem; }
.bhs-trending-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.bhs-trend-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(201,168,76,.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 24px;
  font-variant-numeric: tabular-nums;
}
.bhs-trend-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  display: block;
  margin-bottom: .2rem;
  text-decoration: none;
  transition: color .2s;
}
.bhs-trend-title:hover { color: var(--gold-d); }
.bhs-trend-views {
  font-size: .75rem;
  color: var(--muted);
}

/* Categories list */
.bhs-cat-list { list-style: none; display: flex; flex-direction: column; gap: .15rem; }
.bhs-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem .6rem;
  border-radius: var(--r-sm);
  font-size: .86rem;
  color: var(--muted);
  text-decoration: none;
  transition: var(--tr);
}
.bhs-cat-link:hover,
.bhs-cat-link.active {
  background: rgba(201,168,76,.08);
  color: var(--navy);
  font-weight: 600;
}
.bhs-cat-count {
  font-size: .75rem;
  background: var(--light);
  color: var(--muted);
  padding: .12rem .5rem;
  border-radius: var(--pill);
  font-weight: 600;
}
.bhs-cat-link.active .bhs-cat-count {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Tags */
.bhs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.bhs-tag {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  padding: .2rem .6rem;
  border-radius: var(--pill);
  text-decoration: none;
  transition: var(--tr);
}
.bhs-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

/* Newsletter/RSS */
.bhs-newsletter {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #eef2f8);
}
.bhs-newsletter-icon { font-size: 2rem; margin-bottom: .5rem; }
.bhs-newsletter h3 { font-size: .9rem; color: var(--navy); margin-bottom: .35rem; }
.bhs-newsletter p  { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.bhs-rss-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #f26522;
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: var(--pill);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
}
.bhs-rss-btn:hover { background: #d4541a; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.bh-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.55);
  padding: 3rem 0 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(201,168,76,.15);
}

.bh-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 700px) {
  .bh-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

.bh-footer-brand img { height: 34px; width: auto; margin-bottom: .75rem; opacity: .85; filter: brightness(1.2); }
.bh-footer-brand p { font-size: .85rem; line-height: 1.6; }

.bh-footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bh-footer-links strong {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: .25rem;
}
.bh-footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.bh-footer-links a:hover { color: var(--gold); }

.bh-footer-copy {
  text-align: center;
  padding: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.bh-footer-copy a { color: rgba(255,255,255,.4); text-decoration: none; }
.bh-footer-copy a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   POST ÚNICO (bp = blog post)
   ══════════════════════════════════════════ */

/* Cover com overlay */
.bp-cover-wrap {
  position: relative;
  height: clamp(360px, 55vh, 520px);
  overflow: hidden;
  background: var(--bg-dark);
}

.bp-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  display: block;
}

.bp-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,31,54,.3) 0%,
    rgba(15,31,54,.6) 50%,
    rgba(15,31,54,.9) 100%
  );
  z-index: 1;
}

.bp-cover-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-bottom: 2.5rem;
  z-index: 2;
}

/* Breadcrumb no cover */
.bp-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .85rem;
}
.bp-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.bp-breadcrumb a:hover { color: var(--gold); }
.bp-breadcrumb svg { opacity: .4; flex-shrink: 0; }

.bp-cats-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
}

/* Título do post no cover */
.bp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

/* Título sem cover */
.bp-no-cover {
  background: var(--bg-dark);
  padding: 4.5rem 0 2.5rem;
}
.bp-title-plain {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

/* Meta bar */
.bp-meta-bar {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.bp-author-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  flex-shrink: 0;
}
.bp-meta-info { flex: 1; min-width: 0; }
.bp-meta-info strong {
  display: block;
  font-size: .88rem;
  color: #fff;
  font-weight: 700;
}
.bp-meta-info span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

.bp-meta-light .bp-meta-info strong { color: #fff; }
.bp-meta-light .bp-meta-stats { color: rgba(255,255,255,.55); }

.bp-meta-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-left: auto;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.bp-meta-stats span {
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}

/* Corpo do artigo */
.bp-body {
  padding: 3rem 0 4rem;
  background: var(--light);
}

.bp-grid {
  display: grid;
  grid-template-columns: min(720px, 100%);
  justify-content: center;
}

/* Excerpt lead */
.bp-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 400;
  font-style: italic;
  background: rgba(201,168,76,.07);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 2rem;
}

/* Conteúdo tipográfico */
.bp-content {
  font-size: 1.065rem;
  line-height: 1.85;
  color: #2d3748;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  margin-bottom: 2rem;
}
@media (max-width: 600px) { .bp-content { padding: 1.5rem; } }

.bp-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.bp-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 .75rem;
}
.bp-content p { margin-bottom: 1.3rem; }
.bp-content ul, .bp-content ol {
  margin: 1rem 0 1.3rem 1.5rem;
}
.bp-content li { margin-bottom: .45rem; }
.bp-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: rgba(201,168,76,.06);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
}
.bp-content a { color: #1e40af; text-decoration: underline; text-underline-offset: 2px; }
.bp-content a:hover { color: var(--gold-d); }
.bp-content img {
  border-radius: var(--r);
  max-width: 100%;
  margin: 1.5rem auto;
  display: block;
  box-shadow: var(--sh-md);
}
.bp-content strong { font-weight: 700; color: var(--navy); }
.bp-content em { font-style: italic; color: var(--slate); }
.bp-content code {
  background: #f1f5f9;
  padding: .15rem .45rem;
  border-radius: 4px;
  font-size: .9em;
  color: #c7254e;
}
.bp-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .92rem; }
.bp-content th, .bp-content td { padding: .65rem 1rem; border: 1px solid var(--border); text-align: left; }
.bp-content th { background: var(--light); font-weight: 700; color: var(--navy); }
.bp-content tr:nth-child(even) td { background: #f9fafb; }

/* Tags do post */
.bp-tags-section {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.bp-tags-label {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  margin-top: .1rem;
}
.bp-tags-list { display: flex; flex-wrap: wrap; gap: .35rem; }
.bp-tag {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: .8rem;
  font-weight: 500;
  padding: .22rem .65rem;
  border-radius: var(--pill);
  text-decoration: none;
  transition: var(--tr);
}
.bp-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

/* Compartilhar */
.bp-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.bp-share-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.bp-share-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
.bp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .9rem;
  border-radius: var(--pill);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--tr);
  border: none;
  font-family: inherit;
}
.bp-share-wa  { background: #e8fdf2; color: #128c7e; border: 1px solid #25d36630; }
.bp-share-wa:hover  { background: #25d366; color: #fff; }
.bp-share-fb  { background: #e8f0fb; color: #1877f2; border: 1px solid #1877f230; }
.bp-share-fb:hover  { background: #1877f2; color: #fff; }
.bp-share-li  { background: #e8f4fb; color: #0077b5; border: 1px solid #0077b530; }
.bp-share-li:hover  { background: #0077b5; color: #fff; }
.bp-share-copy { background: var(--light); color: var(--muted); border: 1px solid var(--border); }
.bp-share-copy:hover { background: var(--bg-dark); color: #fff; }

/* CTA pós-post */
.bp-cta {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark2));
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: var(--sh-md);
}
.bp-cta-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.bp-cta h2 { color: #fff; font-size: 1.4rem; margin-bottom: .75rem; font-weight: 700; }
.bp-cta p  { color: rgba(255,255,255,.6); margin-bottom: 1.75rem; font-size: .95rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.btn-outline-dark {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 1.05rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .22s;
  text-decoration: none;
}
.btn-outline-dark:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Autor */
.bp-author-box {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
@media (max-width: 500px) { .bp-author-box { flex-direction: column; align-items: center; text-align: center; } }
.bp-author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.bp-author-info { flex: 1; }
.bp-author-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-d);
  margin-bottom: .25rem;
}
.bp-author-name { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.bp-author-bio { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* Posts relacionados */
.bp-related { margin-bottom: 2rem; }
.bp-related-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.bp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 500px) { .bp-related-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .bh-hero { padding: 4rem 0 0; }
  .bh-featured { grid-template-columns: 1fr; min-height: auto; }
  .bh-featured-img img { min-height: 200px; }
  .bh-featured-body { padding: 1.25rem; }
  .bh-featured-title { font-size: 1.2rem; }
  .bh-meta { flex-direction: column; align-items: flex-start; }
  .bh-read-btn { width: 100%; justify-content: center; }

  .bp-cover-wrap { height: 300px; }
  .bp-title { font-size: 1.45rem; }
  .bp-meta-stats { gap: .6rem; }
  .bp-cta { padding: 1.75rem 1.25rem; }
  .bp-author-box { flex-direction: column; align-items: center; text-align: center; }

  .bh-footer-inner { grid-template-columns: 1fr; }
}
