/* FastOss — estilo compartilhado do blog */

.blog-shell{width:min(100%,820px);margin:0 auto}

/* ===== LISTAGEM ===== */
.blog-hero{
  padding:30px 32px;
  margin-bottom:18px;
  text-align:center;
}
.blog-hero h1{
  font-size:clamp(2rem,5vw,2.8rem);
  letter-spacing:-.03em;
  line-height:1.05;
  margin-bottom:10px;
}
.blog-hero p{
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  max-width:540px;
  margin:0 auto;
}

.blog-list{
  display:grid;
  gap:16px;
}
.blog-card{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:18px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
  text-decoration:none;
  color:inherit;
  transition:all .25s;
}
.blog-card:hover{
  transform:translateY(-2px);
  border-color:rgba(216,181,72,.42);
  box-shadow:0 16px 40px rgba(0,0,0,.32);
}
.blog-card .thumb{
  aspect-ratio:1/1;
  border-radius:14px;
  background:radial-gradient(circle at 50% 35%,rgba(255,255,255,.06),transparent 60%),linear-gradient(160deg,rgba(255,255,255,.04),rgba(0,0,0,.18));
  display:grid;
  place-items:center;
  padding:14px;
  overflow:hidden;
}
.blog-card .thumb img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.4));
}
.blog-card .body{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.blog-card .meta-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
  flex-wrap:wrap;
}
.blog-card .cat-pill{
  padding:3px 10px;
  border-radius:999px;
  background:rgba(216,181,72,.14);
  color:var(--gold-2);
  border:1px solid rgba(216,181,72,.32);
  font-family:'Barlow Condensed',sans-serif;
  font-size:10.5px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-weight:700;
}
.blog-card .meta-text{
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--muted);
}
.blog-card h2{
  font-size:18px;
  font-weight:800;
  letter-spacing:-.01em;
  line-height:1.25;
  margin-bottom:6px;
}
.blog-card p{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.5;
}

.blog-empty{padding:30px;text-align:center;color:var(--muted)}

/* ===== POST INDIVIDUAL ===== */
.post-shell{width:min(100%,720px);margin:0 auto}
.post-card{padding:34px 36px;margin-bottom:18px}
.post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:11.5px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--muted);
}
.post-meta .cat-pill{
  padding:3px 10px;
  border-radius:999px;
  background:rgba(216,181,72,.14);
  color:var(--gold-2);
  border:1px solid rgba(216,181,72,.32);
  font-weight:700;
}
.post-meta a{color:var(--gold-2);text-decoration:none}

.post-card h1{
  font-size:clamp(1.8rem,4.5vw,2.6rem);
  letter-spacing:-.02em;
  line-height:1.1;
  margin-bottom:16px;
}
.post-resumo{
  color:var(--silver);
  font-size:16px;
  line-height:1.6;
  padding-bottom:20px;
  margin-bottom:22px;
  border-bottom:1px solid var(--line);
}

.post-hero-image{
  aspect-ratio:16/9;
  border-radius:18px;
  background:radial-gradient(circle at 50% 35%,rgba(255,255,255,.08),transparent 60%),linear-gradient(160deg,rgba(255,255,255,.05),rgba(0,0,0,.18));
  display:grid;
  place-items:center;
  padding:24px;
  margin-bottom:24px;
  overflow:hidden;
}
.post-hero-image img{
  max-width:60%;
  max-height:100%;
  object-fit:contain;
  filter:drop-shadow(0 14px 30px rgba(0,0,0,.45));
}

.post-body{
  font-size:15.5px;
  line-height:1.75;
  color:var(--silver);
}
.post-body h2{
  font-size:22px;
  color:#fff;
  margin:32px 0 12px;
  letter-spacing:-.01em;
  font-weight:800;
}
.post-body h3{
  font-size:17px;
  color:var(--gold-2);
  margin:24px 0 8px;
  font-weight:800;
}
.post-body p{margin-bottom:14px}
.post-body strong{color:#fff}
.post-body a{color:var(--gold-2)}
.post-body ul,.post-body ol{padding-left:22px;margin-bottom:16px}
.post-body li{margin-bottom:6px}
.post-body blockquote{
  margin:18px 0;
  padding:14px 18px;
  border-left:3px solid var(--gold-2);
  background:rgba(216,181,72,.06);
  border-radius:0 12px 12px 0;
  color:#fff;
  font-style:italic;
}
.post-body .callout{
  margin:20px 0;
  padding:16px 18px;
  border:1px solid rgba(125,211,252,.32);
  background:rgba(125,211,252,.06);
  border-radius:14px;
  color:#cce7ff;
  font-size:14px;
  line-height:1.55;
}
.post-body .callout strong{color:var(--cyan)}
.post-body table{
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
  font-size:14px;
}
.post-body th{
  background:rgba(216,181,72,.10);
  padding:10px 12px;
  text-align:left;
  font-family:'Barlow Condensed',sans-serif;
  font-size:12px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--gold-2);
  border-bottom:1px solid var(--line);
}
.post-body td{
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.07);
  color:var(--silver);
}

.post-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:24px 0 0;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.post-tags a{
  padding:5px 10px;
  border-radius:8px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  color:var(--muted);
  text-decoration:none;
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  font-weight:700;
}
.post-tags a:hover{color:var(--gold-2);border-color:rgba(216,181,72,.42)}

.related-posts{
  margin-top:14px;
}
.related-posts h2{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-2);
  font-family:'Barlow Condensed',sans-serif;
  margin-bottom:14px;
  font-weight:700;
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}
.related-card{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  text-decoration:none;
  color:inherit;
  transition:all .2s;
}
.related-card:hover{
  border-color:rgba(216,181,72,.42);
  transform:translateY(-2px);
}
.related-card strong{
  display:block;
  font-size:13.5px;
  font-weight:800;
  line-height:1.35;
  margin-bottom:4px;
}
.related-card span{
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--gold-2);
}

@media(max-width:680px){
  .blog-card{grid-template-columns:1fr;gap:12px}
  .blog-card .thumb{aspect-ratio:16/9}
  .post-card{padding:24px 22px}
  .post-hero-image img{max-width:80%}
}
