/* ===== BLOG HERO ===== */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e3a5f 100%);
  padding: 130px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,98,10,.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-hero h1 {
  font-family: var(--font-h);
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.blog-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== BLOG MAIN ===== */
.blog-main { padding: var(--py) 0; }

.blog-listing {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}

/* ===== CARD ARTIGO ===== */
.blog-card-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: all var(--ease);
}
.blog-card-full:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow2);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.blog-date {
  color: var(--gray);
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-full h2 {
  font-family: var(--font-h);
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-full p {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* reutiliza .read-more e .blog-tag do style.css */

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {
  .blog-card-full { padding: 24px 20px; }
}
