:root{
  --green-dark:#3f4a2e;
  --green-mid:#5a6b3f;
  --green-pale:#e7e3d4;
  --cream:#f4f1e8;
  --gold:#c9a227;
  --maroon:#7a2e2e;
  --text-dark:#2c3320;
  --text-light:#f4f1e8;
  --radius:14px;
  --max-w:1240px;
  --header-h-desktop:74px;
  --header-h-mobile:64px;
}
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent;}
html,body{
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
}
body{
  font-family:'Jost',sans-serif;
  color:var(--text-dark);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  padding-top:var(--header-h-desktop);
}
h1,h2,h3{
  font-family:'Fraunces',serif;
  font-weight:500;
}
img{display:block;width:100%;height:100%;object-fit:cover;}
a,
a:link,
a:visited,
a:hover,
a:active{
  text-decoration:none;
  color:inherit;
}
.wrap{max-width:var(--max-w);margin:0 auto;padding:0 32px;}

/* ===== Image placeholders ===== */
.img-box{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:repeating-linear-gradient(45deg,#ded8c4,#ded8c4 10px,#e7e2d0 10px,#e7e2d0 20px);
}
.img-box::before{
  content:attr(data-label);
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:8px;
  font-size:12px;
  letter-spacing:.05em;
  color:#8a8268;
  background:rgba(244,241,232,.55);
  font-family:'Jost',sans-serif;
}
.img-box img{position:relative;z-index:1;}
.img-box img:not([src]),
.img-box img[src=""]{display:none;}

/* ===== Header ===== */
.blog-header{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:18px 32px;
  background:#637b31;
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:100;
}
.logo{
  font-size:25px;
  font-weight:500;
  color:white;
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  justify-self:start;
}
.logo img{
  width:48px;
  height:28px;
  object-fit:contain;
}
.header-spacer{justify-self:end;}
.back-btn{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:8px;
  background:#ac9129;
  color:#fff;
  padding:8px 22px 8px 8px;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
  transition:background .2s ease;
}
.back-arrow{
  font-size:16px;
  line-height:1;
  width:24px;
  height:24px;
  min-width:24px;
  border-radius:50%;
  background:#fff;
  color:#ac9129;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

/* ===== Article header ===== */
/* ===== Page-length side decorations ===== */
.blog-article{
  position:relative;
}
.page-deco-left,
.page-deco-right{
  position:absolute;
  top:0;
  height:100%;
  width:48px;
  object-fit:cover;
  z-index:1;
  pointer-events:none;
}
.page-deco-left{left:0;}
.page-deco-right{right:0;}

.article-header{
  max-width:760px;
  margin:0 auto;
  padding:56px 32px 40px;
  text-align:center;
}
.article-eyebrow{
  font-size:20px;
  font-weight:1000;
  text-transform:uppercase;
  color:#42532f;
  margin-bottom:4px;
}
.article-byline{
  font-size:15px;
  color:#495936;
  font-weight:500;
  margin-bottom:22px;
}
.article-title{
  color:#637b31;
  line-height:1.2;
  margin-bottom:14px;
}
.article-subtitle{
  font-size:15px;
  font-weight:500;
  line-height:1.6;
  color:#6d833d;
  opacity:.9;
}

/* ===== Article body ===== */
.article-body{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 32px 80px;
}

.article-row{
  margin-bottom:44px;
}
.article-row::after{
  content:"";
  display:table;
  clear:both;
}

.article-image{
  float:left;
  width:42%;
  margin:0 40px 24px 0;
}
.article-row--reverse .article-image{
  float:right;
  margin:0 0 24px 40px;
}

.article-image .img-box{
  aspect-ratio:4/5;
}

.article-text{
  overflow:visible;
}

.article-text p{
  font-size:17px;
  line-height:1.75;
  color:var(--text-dark);
  margin-bottom:16px;
}
.article-text h3{
  font-family:'Jost',sans-serif;
  font-weight: 900;
}
.article-text p:last-child{margin-bottom:0;}

.article-full{
  max-width:100%;
  margin:0 auto 44px;
  clear:both;
}
.article-full p{
  font-size:17px;
  line-height:1.75;
  color:var(--text-dark);
  margin-bottom:16px;
}
.article-full p:last-child{margin-bottom:0;}

.article-editorial-note{
  font-size:13px;
  opacity:.75;
}

/* ===== Footer (shared) ===== */
footer{
  background:#42532f;
  color:var(--text-light);
  padding:50px 0 30px;
  text-align:center;
}
footer h2{
  font-size:24px;
  margin-bottom:36px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.footer-brand{font-weight:600;}
.footer-tagline{font-weight:300;}
.footer-bottom{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:12px;
  opacity:.85;
  text-align:left;
}
.footer-contact{
  text-align:left;
  line-height:1.6;
  flex:1;
  color:rgb(255,255,255);
}
.footer-logo-mark{
  display:flex;
  justify-content:center;
  flex:1;
}
.social-icons{display:flex;gap:10px;justify-content:flex-end;flex:1;}
.social-icons a{
  width:32px;height:32px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  display:flex;align-items:center;justify-content:center;
  transition:background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-icons a:hover{
  background-color:var(--text-light);
  color:var(--green-dark);
  border-color:var(--text-light);
  transform:translateY(-2px);
}

@media(max-width:900px){
  .article-image{width:45%; margin:0 24px 20px 0;}
  .article-row--reverse .article-image{margin:0 0 20px 24px;}
  .article-image .img-box{aspect-ratio:3/4;}
  .article-header{padding:44px 24px 30px;}
  .article-title{font-size:30px;}
  .article-text p,
  .article-full p{font-size:14px;line-height:1.6;margin-bottom:12px;}
}

@media(max-width:560px){
  body{padding-top:var(--header-h-mobile);}
  .blog-header{padding:14px 16px;}
  .logo{font-size:18px;}
  .logo img{width:36px;height:22px;}
  .back-btn{padding:6px 16px 6px 6px;font-size:12.5px;}
  .back-arrow{width:20px;height:20px;min-width:20px;font-size:14px;}
  .article-header{padding:32px 20px 24px;}
  .article-eyebrow{font-size:13px;}
  .article-byline{font-size:12px;margin-bottom:16px;}
  .article-title{font-size:22px;margin-bottom:10px;}
  .article-subtitle{font-size:13px;}
  .article-body{padding:0 16px 56px;}
  .article-row{margin-bottom:24px;}

  .article-image{
    width:44%;
    margin:0 16px 16px 0;
  }
  .article-row--reverse .article-image{
    margin:0 0 16px 16px;
  }
  .article-image .img-box{aspect-ratio:3/4;border-radius:8px;}
  .article-text p,
  .article-full p{font-size:13.5px;line-height:1.55;margin-bottom:10px;}
  .article-full{margin-bottom:24px;}
  footer h2{font-size:20px;}
  .footer-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
  }

  .footer-contact{text-align:center;flex:none;}
  .footer-logo-mark{flex:none;}
  .social-icons{justify-content:center;flex:none;}
}

@media(max-width:767px){
  .page-deco-left,
  .page-deco-right{display:none;}
}