.analysis-hero{
  padding:72px 0 56px;
  background:
    linear-gradient(90deg, rgba(15,15,18,.98), rgba(15,15,18,.88) 58%, rgba(15,15,18,.96)),
    url("hero.jpg") right 34% center / min(34vw, 420px) auto no-repeat,
    linear-gradient(180deg, #0b0b0e, #111116);
  border-bottom:1px solid var(--borda);
}

.analysis-hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 430px;
  gap:46px;
  align-items:center;
}

.analysis-hero h1{
  max-width:760px;
  font-size:clamp(2.55rem, 5vw, 5rem);
  line-height:1.03;
  margin-bottom:18px;
}

.analysis-lead{
  max-width:66ch;
  color:#d8d8de;
  line-height:1.75;
  font-size:1.08rem;
}

.analysis-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.featured-analysis{
  overflow:hidden;
  border:1px solid rgba(184,122,140,.32);
  border-radius:8px;
  background:rgba(28,28,34,.62);
  box-shadow:var(--shadow);
  display:block;
}

.featured-analysis img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.featured-analysis-body{
  padding:18px;
}

.featured-analysis h2{
  font-size:1.34rem;
  line-height:1.18;
  margin:12px 0 10px;
}

.featured-analysis p{
  color:var(--cinza);
  line-height:1.6;
}

.analysis-section{
  padding-top:48px;
}

.analysis-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-bottom:44px;
}

.analysis-strip div{
  border:1px solid var(--borda);
  background:rgba(255,255,255,.035);
  border-radius:8px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.analysis-strip strong{
  display:block;
  font-size:1.02rem;
  margin-bottom:6px;
}

.analysis-strip span{
  display:block;
  color:var(--cinza);
  line-height:1.55;
}

.analysis-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}

.analysis-heading h2{
  max-width:720px;
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  line-height:1.1;
}

.analysis-heading .muted{
  max-width:42ch;
}

.analysis-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}

.analysis-card{
  border:1px solid var(--borda);
  border-radius:8px;
  overflow:hidden;
  background:rgba(255,255,255,.035);
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.analysis-card:hover{
  transform:translateY(-3px);
  border-color:rgba(184,122,140,.38);
  box-shadow:var(--shadow);
}

.analysis-card a{
  display:flex;
  flex-direction:column;
  height:100%;
}

.analysis-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}

.analysis-card-large{
  grid-row:span 2;
}

.analysis-card-large img{
  height:360px;
}

.analysis-card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.analysis-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--cinza);
  font-size:.86rem;
  flex-wrap:wrap;
}

.analysis-card h3{
  font-size:1.24rem;
  line-height:1.2;
}

.analysis-card-large h3{
  font-size:1.55rem;
}

.analysis-card p{
  color:var(--cinza);
  line-height:1.65;
}

.read-link{
  margin-top:auto;
  color:var(--branco);
  font-weight:900;
  border-bottom:1px solid rgba(184,122,140,.45);
  align-self:flex-start;
  padding-bottom:3px;
}

.analysis-cta{
  margin-top:34px;
  border:1px solid var(--borda);
  border-radius:8px;
  background:rgba(28,28,34,.35);
  box-shadow:var(--shadow);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.analysis-cta h2{
  font-size:1.55rem;
  margin-bottom:6px;
}

.article-shell{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 280px;
  gap:34px;
  align-items:start;
}

.post{
  max-width:none;
}

.post-hero{
  margin-bottom:22px;
}

.post h1{
  max-width:820px;
  font-size:clamp(2.2rem, 4.2vw, 4.2rem);
}

.article-sidebar{
  position:sticky;
  top:96px;
  border:1px solid var(--borda);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.article-sidebar strong{
  display:block;
  margin-bottom:10px;
}

.article-sidebar p{
  color:var(--cinza);
  line-height:1.6;
  margin-bottom:14px;
}

.article-sidebar .btn{
  width:100%;
}

.post-box{
  border-radius:8px;
  padding:30px;
}

.post-intro{
  border-left:3px solid var(--rosa);
  padding-left:16px;
}

.post-box h2{
  color:#fff;
  padding-top:4px;
}

.post-box p{
  max-width:74ch;
}

@media (max-width: 1060px){
  .analysis-hero{
    background:linear-gradient(180deg, #0b0b0e, #111116);
  }

  .analysis-hero-grid,
  .article-shell{
    grid-template-columns:1fr;
  }

  .featured-analysis{
    max-width:540px;
  }

  .article-sidebar{
    position:static;
  }
}

@media (max-width: 860px){
  .analysis-strip,
  .analysis-grid{
    grid-template-columns:1fr;
  }

  .analysis-heading{
    align-items:flex-start;
    flex-direction:column;
  }

  .analysis-card-large{
    grid-row:auto;
  }

  .analysis-card-large img,
  .analysis-card img{
    height:240px;
  }
}

@media (max-width: 560px){
  .analysis-hero{
    padding:34px 0 28px;
  }

  .analysis-hero h1{
    font-size:2.25rem;
    line-height:1.06;
    margin-bottom:14px;
  }

  .analysis-lead{
    font-size:1rem;
    line-height:1.55;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .analysis-actions{
    display:none;
  }

  .analysis-actions .btn{
    min-height:50px;
  }

  .featured-analysis,
  .analysis-strip,
  .analysis-cta,
  .article-sidebar{
    display:none;
  }

  .analysis-section{
    padding-top:34px;
  }

  .analysis-heading{
    gap:10px;
    margin-bottom:16px;
  }

  .analysis-heading h2{
    font-size:1.85rem;
    line-height:1.12;
  }

  .analysis-heading .muted{
    font-size:.98rem;
    line-height:1.55;
  }

  .analysis-grid{
    gap:14px;
  }

  .analysis-card{
    box-shadow:none;
  }

  .analysis-card-large img,
  .analysis-card img{
    display:none;
  }

  .analysis-card-body{
    padding:14px;
    gap:8px;
  }

  .analysis-meta{
    font-size:.8rem;
  }

  .analysis-card h3,
  .analysis-card-large h3{
    font-size:1.16rem;
    line-height:1.22;
  }

  .analysis-card p{
    font-size:.95rem;
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .read-link{
    padding-top:4px;
  }

  .post-box{
    padding:20px 16px;
  }

  .post-hero{
    margin-bottom:16px;
  }

  .post h1{
    font-size:2rem;
    line-height:1.1;
  }

  .post-cover{
    max-width:100%;
    margin-bottom:14px;
  }

  .post-cover img{
    max-height:240px;
    object-fit:cover;
  }

  .post-intro{
    font-size:1rem;
    line-height:1.65;
    margin-bottom:18px;
  }

  .post-box h2{
    font-size:1.22rem;
    margin:22px 0 8px;
  }

  .post-box p{
    font-size:.98rem;
    line-height:1.7;
  }
}
