body{
  background:
    radial-gradient(circle at top left, rgba(90,158,56,0.08), transparent 34%),
    linear-gradient(180deg, #fbfaf6 0%, #f4f0e8 100%);
}

.blog-hero{
  padding:66px 0 22px;
}

.blog-hero-inner{
  max-width:none;
  margin:0 auto;
  height:560px;
  min-height:560px;
  display:grid;
  grid-template-columns:0.95fr 1.45fr;
  align-items:stretch;
  overflow:hidden;
  background:#fff;
}

.blog-hero-copy{
  padding:34px 50px 34px max(40px, calc((100vw - 1400px) / 2 + 40px));
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 62%, rgba(255,255,255,0.78) 78%, rgba(255,255,255,0.05) 100%);
  position:relative;
  z-index:2;
}

.blog-kicker{
  font-size:10.5px;
  font-weight:700;
  letter-spacing:2.6px;
  text-transform:uppercase;
  color:var(--gl);
  margin-bottom:12px;
}

.blog-hero-copy h1{
  font-family:'Playfair Display',serif;
  font-size:52px;
  line-height:0.98;
  color:#10213c;
  margin-bottom:14px;
}

.blog-hero-line{
  width:54px;
  height:4px;
  background:linear-gradient(90deg, var(--gl), #adc97f);
  border-radius:999px;
  margin-bottom:16px;
}

.blog-hero-copy p{
  max-width:420px;
  font-size:14px;
  line-height:1.7;
  color:#2c362d;
}

.blog-hero-visual{
  position:relative;
  height:560px;
  min-height:560px;
}

.blog-hero-visual::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.12) 14%, rgba(0,0,0,0) 34%);
  z-index:1;
}

.blog-hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-page{
  max-width:1400px;
  margin:0 auto;
  padding:10px 40px 80px;
}

.recent-post,
.all-posts{
  background:transparent;
  border:none;
  box-shadow:none;
}

.recent-post{
  padding:44px 0;
  margin-bottom:28px;
}

.all-posts{
  padding:12px 0 36px;
}

.section-top h2{
  font-size:36px;
  font-family:'Playfair Display',serif;
  color:var(--g);
}

.section-inline{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:26px;
}

.section-rule{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, rgba(90,158,56,0.55), rgba(90,158,56,0.08));
}

.recent-card{
  display:grid;
  grid-template-columns:1.2fr 0.95fr;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 14px 40px rgba(17,20,16,0.07);
}

.recent-media img{
  width:100%;
  height:100%;
  min-height:380px;
  object-fit:cover;
  display:block;
}

.recent-body{
  padding:40px 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.post-tag{
  font-size:11px;
  font-weight:700;
  letter-spacing:1.9px;
  text-transform:uppercase;
  color:var(--gl);
  margin-bottom:18px;
}

.recent-body h3{
  font-size:42px;
  line-height:1.13;
  color:#18243c;
  font-family:'Playfair Display',serif;
  margin-bottom:16px;
}

.post-meta{
  font-size:14px;
  color:#5b645c;
  margin-bottom:18px;
}

.post-meta span{
  margin:0 10px;
}

.recent-body p{
  font-size:16px;
  line-height:1.8;
  color:#4c564d;
  margin-bottom:28px;
}

.post-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:168px;
  padding:14px 24px;
  border:1.5px solid rgba(90,158,56,0.45);
  border-radius:8px;
  color:var(--g);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
  transition:all .2s;
}

.post-btn:hover{
  background:var(--g);
  color:#fff;
}

.posts-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.post-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.07);
  box-shadow:0 12px 30px rgba(17,20,16,0.05);
  transition:transform .22s, box-shadow .22s;
}

.post-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 38px rgba(17,20,16,0.08);
}

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

.post-card-body{
  padding:20px 18px 18px;
}

.post-card-body h3{
  font-size:28px;
  line-height:1.2;
  color:#18243c;
  font-family:'Playfair Display',serif;
  margin-bottom:10px;
}

.card-date{
  font-size:13px;
  color:#6d766f;
  margin-bottom:12px;
}

.post-card-body p{
  font-size:14px;
  line-height:1.75;
  color:#4d5750;
  min-height:74px;
  margin-bottom:18px;
}

.card-link{
  color:var(--g);
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  border-bottom:1px solid rgba(45,90,27,0.2);
  padding-bottom:3px;
}

.card-link:hover{
  border-color:var(--g);
}

.pagination{
  margin-top:28px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.page-link,
.page-dots{
  width:38px;
  height:38px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}

.page-link{
  background:#fff;
  color:#5d645d;
  border:1px solid rgba(0,0,0,0.1);
}

.page-link.active{
  background:var(--g);
  color:#fff;
  border-color:var(--g);
}

.page-arrow{
  font-size:24px;
  line-height:1;
}

.page-dots{
  color:#8c928d;
}

.topic-banner{
  margin-top:34px;
  background:linear-gradient(90deg, #081a2f 0%, #0d2240 100%);
  border-radius:10px;
  padding:22px 34px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  color:#fff;
  box-shadow:0 18px 45px rgba(8,26,47,0.18);
}

.topic-icon{
  width:72px;
  height:72px;
  border-radius:18px;
  background:rgba(129,188,57,0.14);
  color:#9aca44;
  display:flex;
  align-items:center;
  justify-content:center;
}

.topic-icon svg{
  width:34px;
  height:34px;
}

.topic-copy h2{
  font-family:'Playfair Display',serif;
  font-size:28px;
  line-height:1.15;
  margin-bottom:4px;
}

.topic-copy p{
  color:rgba(255,255,255,0.72);
  font-size:14px;
  line-height:1.6;
}

.topic-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  padding:14px 28px;
  background:#7cb332;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
}

.topic-btn:hover{
  background:#6aa125;
}

.blog-detail-shell{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
}

.blog-detail-hero{
  padding:110px 0 38px;
}

.detail-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:22px;
  color:var(--g);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.detail-back:hover{
  color:var(--gm);
}

.detail-back::before{
  content:'';
  width:14px;
  height:1px;
  background:currentColor;
}

.detail-hero-grid{
  display:grid;
  grid-template-columns:0.95fr 1.15fr;
  gap:32px;
  align-items:center;
}

.detail-hero-copy h1{
  font-family:'Playfair Display',serif;
  font-size:54px;
  line-height:1.04;
  color:#18243c;
  margin-bottom:16px;
}

.detail-author{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.detail-author-avatar{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:1px solid rgba(0,0,0,0.08);
  background:#f2f2ef;
}

.detail-author-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.detail-author-name{
  font-size:15px;
  font-weight:700;
  color:#18243c;
  line-height:1.2;
}

.detail-author-meta{
  font-size:14px;
  color:#5b645c;
  line-height:1.4;
}

.detail-author-meta span{
  margin:0 8px;
}

.detail-hero-copy p{
  font-size:16px;
  line-height:1.8;
  color:#4c564d;
  max-width:560px;
}

.detail-hero-media img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  box-shadow:0 16px 40px rgba(17,20,16,0.08);
}

.blog-detail-page{
  padding:0 0 80px;
}

.detail-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 340px;
  gap:38px;
  align-items:start;
}

.detail-article{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:20px;
  padding:28px 28px 34px;
  box-shadow:0 12px 32px rgba(17,20,16,0.05);
}

.detail-feature-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:14px;
  display:block;
  margin-bottom:26px;
}

.detail-lead{
  font-size:20px;
  line-height:1.75;
  color:#2d3831;
  margin-bottom:22px;
}

.detail-article h2{
  font-family:'Playfair Display',serif;
  font-size:34px;
  line-height:1.15;
  color:#18243c;
  margin:32px 0 14px;
}

.detail-article p{
  font-size:15px;
  line-height:1.9;
  color:#4c564d;
  margin-bottom:14px;
}

.detail-quote{
  margin:28px 0;
  padding:24px 26px;
  border-left:4px solid var(--gl);
  background:linear-gradient(90deg, rgba(90,158,56,0.08), rgba(90,158,56,0.02));
  border-radius:0 12px 12px 0;
}

.detail-quote p{
  font-family:'Playfair Display',serif;
  font-size:28px;
  line-height:1.35;
  color:#18243c;
  margin:0;
}

.detail-highlights{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin:30px 0;
}

.detail-highlight{
  background:#f7fbf0;
  border:1px solid rgba(90,158,56,0.16);
  border-radius:14px;
  padding:20px 18px;
}

.detail-highlight strong{
  display:block;
  font-size:16px;
  color:#18243c;
  margin-bottom:8px;
}

.detail-highlight span{
  font-size:13px;
  line-height:1.7;
  color:#566159;
}

.detail-sidebar{
  position:sticky;
  top:92px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.detail-side-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:24px 22px;
  box-shadow:0 12px 32px rgba(17,20,16,0.05);
}

.detail-side-card h3{
  font-family:'Playfair Display',serif;
  font-size:26px;
  color:#18243c;
  margin-bottom:14px;
}

.detail-side-card p{
  font-size:14px;
  line-height:1.8;
  color:#4c564d;
  margin-bottom:18px;
}

.detail-side-list{
  list-style:none;
}

.detail-side-list li{
  position:relative;
  padding-left:18px;
  font-size:14px;
  line-height:1.75;
  color:#4c564d;
  margin-bottom:12px;
}

.detail-side-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:9px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gl);
}

.detail-related{
  margin-top:44px;
}

.detail-topic-banner{
  margin-top:40px;
  padding:22px 34px;
  grid-template-columns:92px minmax(0, 1fr) auto;
  gap:28px;
}

.detail-topic-banner .topic-icon{
  width:72px;
  height:72px;
  border-radius:18px;
  background:rgba(129,188,57,0.12);
}

.detail-topic-banner .topic-copy h2{
  font-size:34px;
  line-height:1.12;
  margin-bottom:4px;
}

.detail-topic-banner .topic-copy p{
  font-size:15px;
  line-height:1.6;
}

.detail-topic-banner .topic-btn{
  min-width:162px;
}

@media(max-width:1200px){
  .blog-hero-copy{padding-left:28px;}
  .blog-hero-copy h1{font-size:56px;}
  .recent-body h3{font-size:36px;}
  .post-card-body h3{font-size:24px;}
  .blog-detail-shell{padding:0 28px;}
  .detail-hero-copy h1{font-size:46px;}
  .detail-layout{grid-template-columns:1fr 300px;}
  .detail-highlights{grid-template-columns:1fr;}
}

@media(max-width:900px){
  .blog-hero{padding:66px 0 24px;}
  .blog-hero-inner{grid-template-columns:1fr;height:auto;min-height:auto;}
  .blog-hero-copy{padding:32px 28px 28px;}
  .blog-hero-copy h1{font-size:42px;}
  .blog-hero-copy p{font-size:16px;max-width:none;}
  .blog-hero-visual{height:220px;min-height:220px;}
  .blog-page{padding:10px 24px 70px;}
  .recent-post{padding:28px 0;}
  .all-posts{padding:8px 0 28px;}
  .recent-card{grid-template-columns:1fr;}
  .recent-media img{min-height:260px;}
  .recent-body{padding:28px 24px;}
  .recent-body h3{font-size:32px;}
  .posts-grid{grid-template-columns:repeat(2,1fr);}
  .topic-banner{grid-template-columns:1fr;justify-items:start;padding:22px 22px;}
  .topic-copy h2{font-size:26px;}
  .blog-detail-hero{padding:96px 0 30px;}
  .blog-detail-shell{padding:0 24px;}
  .detail-hero-grid{grid-template-columns:1fr;}
  .detail-hero-media img{height:360px;}
  .detail-layout{grid-template-columns:1fr;}
  .detail-sidebar{position:static;}
  .detail-feature-image img{height:340px;}
  .detail-topic-banner{grid-template-columns:1fr;justify-items:start;gap:18px;padding:22px;}
  .detail-topic-banner .topic-copy h2{font-size:28px;}
}

@media(max-width:600px){
  .blog-hero{padding:66px 0 20px;}
  .blog-hero-copy{padding:26px 20px 24px;}
  .blog-hero-copy h1{font-size:34px;}
  .blog-hero-line{width:44px;height:4px;}
  .blog-hero-visual{height:180px;min-height:180px;}
  .blog-page{padding:8px 16px 56px;}
  .recent-post{padding:20px 0;}
  .all-posts{padding:4px 0 20px;}
  .section-top h2{font-size:28px;}
  .recent-body h3{font-size:28px;}
  .posts-grid{grid-template-columns:1fr;}
  .post-card img{height:220px;}
  .post-card-body h3{font-size:24px;}
  .pagination{flex-wrap:wrap;}
  .topic-icon{width:60px;height:60px;}
  .topic-copy h2{font-size:26px;}
  .blog-detail-shell{padding:0 16px;}
  .detail-hero-copy h1{font-size:34px;}
  .detail-author-avatar{width:46px;height:46px;}
  .detail-author-name{font-size:14px;}
  .detail-author-meta{font-size:13px;}
  .detail-hero-copy p{font-size:15px;}
  .detail-hero-media img{height:240px;border-radius:14px;}
  .detail-article{padding:18px 16px 24px;border-radius:16px;}
  .detail-feature-image img{height:220px;margin-bottom:18px;}
  .detail-lead{font-size:17px;}
  .detail-article h2{font-size:28px;}
  .detail-quote{padding:18px 16px;}
  .detail-quote p{font-size:22px;}
  .detail-topic-banner{padding:20px 18px;}
  .detail-topic-banner .topic-copy h2{font-size:24px;}
  .detail-topic-banner .topic-copy p{font-size:14px;}
}
