/* ══════ BLOG MAIN WRAPPER ══════ */
.blog-main{
  background:var(--dark,#f2ede6);
  min-height:60vh;
  padding-top:0;
}

/* ══════ BLOG HERO / PAGE HEADER ══════ */
.blog-page-hero{
  position:relative;
  padding:0;
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.blog-page-hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(0,0,0,0.35) 0%,rgba(0,0,0,0.65) 100%);
}
.blog-page-hero-content{
  position:relative;z-index:2;
  text-align:center;
  padding:140px 40px 60px;
  max-width:700px;
}
.blog-page-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(32px,5vw,54px);
  color:var(--champagne,#f5f0e8);
  margin-bottom:10px;
}
.blog-page-hero h1 em{font-style:italic;color:var(--gold,#c9a84c)}
.blog-page-hero p{
  font-family:'Jost',sans-serif;
  font-size:15px;
  color:rgba(245,240,232,0.75);
  max-width:560px;
  margin:0 auto;
}

/* ══════ POSTS GRID ══════ */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
  padding:60px 40px 100px;
  max-width:1400px;
  margin:0 auto;
}
@media(max-width:1100px){
  .blog-grid{grid-template-columns:repeat(2,1fr);padding:48px 24px 70px;gap:28px}
}
@media(max-width:680px){
  .blog-grid{grid-template-columns:1fr;padding:36px 18px 50px;gap:24px}
}

.blog-card{
  background:#0f0d0a;
  border:1px solid rgba(201,168,76,0.15);
  overflow:hidden;
  transition:transform .35s, box-shadow .35s;
  display:flex;
  flex-direction:column;
}
.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,0.35);
}
.blog-card-img-wrap{
  aspect-ratio:16/10;
  overflow:hidden;
  background:#1a1712;
}
.blog-card-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s;
}
.blog-card:hover .blog-card-img-wrap img{transform:scale(1.06)}
.blog-card-body{padding:24px;flex:1;display:flex;flex-direction:column}
.blog-card-cat{
  font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold,#c9a84c);font-weight:500;margin-bottom:10px;
}
.blog-card-title{
  font-family:'Cormorant Garamond',serif;
  font-size:23px;font-weight:500;line-height:1.2;
  color:var(--champagne,#f5f0e8);
  margin-bottom:10px;
  text-decoration:none;
  display:block;
}
.blog-card-title:hover{color:var(--gold,#c9a84c)}
.blog-card-excerpt{
  font-family:'Jost',sans-serif;
  font-size:13px;line-height:1.7;
  color:rgba(245,240,232,0.55);
  margin-bottom:16px;
  flex:1;
}
.blog-card-meta{
  font-size:11px;letter-spacing:.05em;
  color:rgba(245,240,232,0.35);
  display:flex;gap:14px;align-items:center;
  padding-top:14px;
  border-top:1px solid rgba(201,168,76,0.12);
}

/* ══════ NO POSTS ══════ */
.blog-empty{
  text-align:center;padding:100px 40px;
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-style:italic;
  color:rgba(15,13,10,0.5);
}

/* ══════ SINGLE POST ══════ */
.blog-post-wrap{
  max-width:760px;
  margin:0 auto;
  padding:60px 24px 100px;
}
.blog-post-cat{
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold3,#a8873a);font-weight:500;margin-bottom:16px;
  text-align:center;
}
.blog-post-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(30px,5vw,48px);
  line-height:1.15;
  color:var(--text,#0f0d0a);
  text-align:center;
  margin-bottom:20px;
}
.blog-post-meta{
  text-align:center;
  font-size:12px;color:rgba(15,13,10,0.5);
  margin-bottom:36px;
  display:flex;gap:16px;justify-content:center;flex-wrap:wrap;
}
.blog-post-hero-img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  margin-bottom:40px;
}
.blog-post-body{
  font-family:'Jost',sans-serif;
  font-size:16px;
  line-height:1.9;
  color:var(--text,#0f0d0a);
}
.blog-post-body h2{
  font-family:'Cormorant Garamond',serif;
  font-size:30px;font-weight:500;
  margin:44px 0 16px;
  color:var(--text,#0f0d0a);
}
.blog-post-body h3{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-weight:500;
  margin:32px 0 14px;
}
.blog-post-body p{margin-bottom:22px}
.blog-post-body a{color:var(--gold3,#a8873a);text-decoration:underline}
.blog-post-body ul,.blog-post-body ol{margin:0 0 22px 22px}
.blog-post-body li{margin-bottom:8px}
.blog-post-body img{width:100%;height:auto;margin:24px 0}
.blog-post-body blockquote{
  border-left:3px solid var(--gold,#c9a84c);
  padding:4px 24px;
  margin:28px 0;
  font-style:italic;
  color:rgba(15,13,10,0.7);
}
.blog-post-body table{
  width:100%;
  border-collapse:collapse;
  margin:28px 0;
  font-size:14px;
}
.blog-post-body th,
.blog-post-body td{
  padding:14px 18px;
  text-align:left;
  border:1px solid rgba(201,168,76,0.25);
}
.blog-post-body th{
  background:rgba(201,168,76,0.1);
  color:var(--gold3,#a8873a);
  font-weight:600;
  letter-spacing:.03em;
}
.blog-post-body td{
  color:rgba(15,13,10,0.8);
}
.blog-post-body tr:nth-child(even) td{
  background:rgba(201,168,76,0.03);
}
@media(max-width:640px){
  .blog-post-body table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
}
.blog-post-tags{
  margin-top:48px;padding-top:24px;
  border-top:1px solid rgba(201,168,76,0.15);
  display:flex;gap:10px;flex-wrap:wrap;
}
.blog-post-tags a{
  font-size:11px;letter-spacing:.05em;
  padding:6px 16px;
  border:1px solid rgba(201,168,76,0.3);
  border-radius:30px;
  color:var(--gold3,#a8873a);
  text-decoration:none;
}
.blog-post-tags a:hover{background:var(--gold,#c9a84c);color:#fff;border-color:var(--gold,#c9a84c)}
