:root {
  --green:#1a4731;--green-mid:#2d6a4f;--green-light:#52b788;
  --gold:#c9a84c;--cream:#faf7f0;--white:#fff;--dark:#0f1f17;--gray:#8a9ba8;
  --border:rgba(26,71,49,0.12);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'DM Sans',system-ui,sans-serif;background:var(--cream);color:var(--dark);line-height:1.65;min-height:100vh;cursor:auto;}
a{color:var(--green-mid);}
.prog-top{position:sticky;top:0;z-index:100;background:rgba(250,247,240,0.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);padding:14px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;}
.prog-back{font-size:13px;font-weight:600;color:var(--green);text-decoration:none;display:inline-flex;align-items:center;gap:8px;text-transform:uppercase;letter-spacing:0.5px;}
.prog-back:hover{color:var(--green-light);}
.prog-back svg{width:18px;height:18px;}
.prog-wrap{max-width:820px;margin:0 auto;padding:32px 24px 80px;}
.prog-date{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--green-light);margin-bottom:12px;}
.prog-title{font-family:'Cormorant Garamond',serif;font-size:clamp(28px,4vw,42px);font-weight:400;color:var(--green);line-height:1.15;margin-bottom:28px;}
.prog-title em{font-style:italic;color:var(--gold);}
/* Slideshow — fade + auto */
.prog-slideshow{margin-bottom:36px;}
.prog-slides{position:relative;width:100%;min-height:200px;max-height:460px;height:clamp(200px,50vw,460px);border-radius:12px;overflow:hidden;background:var(--white);border:1px solid var(--border);}
.prog-slide{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:12px;opacity:0;transition:opacity .5s ease;pointer-events:none;}
.prog-slide.is-active{opacity:1;z-index:1;pointer-events:auto;}
.prog-slide img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block;}
.prog-slideshow-bar{display:flex;justify-content:center;align-items:center;gap:14px;padding-top:14px;}
.prog-slider-btn{width:40px;height:40px;border-radius:8px;border:1px solid var(--border);background:var(--white);color:var(--green);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s,border-color .2s;}
.prog-slider-btn:hover{background:var(--cream);border-color:var(--green-light);}
.prog-slider-btn svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.prog-dots{display:flex;gap:7px;flex-wrap:wrap;justify-content:center;align-items:center;max-width:60%;}
.prog-dot{width:7px;height:7px;border-radius:50%;background:var(--gray);opacity:.35;border:none;cursor:pointer;padding:0;transition:opacity .2s,transform .2s;}
.prog-dot:hover{opacity:.6;}
.prog-dot[aria-current="true"]{opacity:1;background:var(--green-mid);transform:scale(1.15);}
.prog-body{font-size:15px;color:var(--dark);opacity:0.92;}
.prog-body p{margin-bottom:16px;}
.prog-body p:last-child{margin-bottom:0;}
@media(max-width:640px){
  .prog-wrap{padding:24px 16px 60px;}
  .prog-slides{height:clamp(180px,45vh,320px);max-height:320px;}
}
