/*! Purple Holiday Homes — Journal layer (additive).
   Extends phh-design.css ("Elevated v2"). Same identity: white, vibrant purple
   #7C3AED, Plus Jakarta Sans display + Inter body.
   Two layouts, matched to the requested references:
     1) Blog index  — bordered editorial grid (date · category pill · image · title · excerpt · READ MORE)
     2) Article page — big title + subtitle + circular read-more + featured image + vertical social rail beside the body
   Load AFTER phh-design.css. Nothing else on the site is touched. */

/* ============================================================
   1) BLOG INDEX — bordered editorial grid
   ============================================================ */
.jr-hero{padding:138px 0 0}
.jr-hero .head{max-width:760px}
.jr-hero h1{font-size:clamp(36px,5vw,60px);line-height:1.02;letter-spacing:-.038em;margin:16px 0 0}
.jr-hero .lead{font-size:clamp(16px,1.5vw,19px);line-height:1.6;color:var(--ink2);max-width:600px;margin-top:18px}

.bgrid{display:grid;grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);border-left:1px solid var(--line);margin-top:48px}
.bpost{position:relative;border-right:1px solid var(--line);border-bottom:1px solid var(--line);
  padding:36px;display:flex;flex-direction:column;background:#fff;transition:background .35s var(--ease)}
.bpost:hover{background:var(--acc-tint)}
.bpost a.stretch{position:absolute;inset:0;z-index:3}

.bpost .top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:24px}
.bpost .date{font:500 12.5px/1 var(--sans);color:var(--muted);letter-spacing:.005em}
.bpost .cat{font:600 10.5px/1 var(--sans);letter-spacing:.13em;text-transform:uppercase;color:var(--ink2);
  border:1px solid var(--line2);border-radius:999px;padding:7px 14px;white-space:nowrap;transition:border-color .3s,color .3s}
.bpost:hover .cat{border-color:var(--acc);color:var(--acc-d)}

.bpost .thumb{width:100%;aspect-ratio:16/11;object-fit:cover;border-radius:3px;background:var(--bg2)}
.bpost h3{font-family:var(--disp);font-weight:700;font-size:21px;line-height:1.22;letter-spacing:-.022em;
  color:var(--ink);margin:26px 0 12px}
.bpost .ex{font:400 13.5px/1.6 var(--sans);color:var(--ink2);margin:0 0 26px}
.bpost .more{margin-top:auto;font:600 11px/1 var(--sans);letter-spacing:.13em;text-transform:uppercase;
  color:var(--ink);display:inline-flex;align-items:center;align-self:flex-start;
  padding-bottom:4px;border-bottom:1.5px solid var(--ink);transition:color .3s,border-color .3s}
.bpost:hover .more{color:var(--acc-d);border-color:var(--acc)}

/* ============================================================
   2) ARTICLE PAGE — statement intro + featured image + social rail
   ============================================================ */
.post-hero{padding:138px 0 0}
.post-hero .wrap{max-width:1080px}
.post-back{font:600 12.5px/1 var(--sans);color:var(--acc-d);display:inline-flex;gap:7px;align-items:center;margin-bottom:24px}
.post-back .ar{transition:transform .3s var(--ease)}
.post-back:hover .ar{transform:translateX(-4px)}
.post-hero h1{font-family:var(--disp);font-weight:700;font-size:clamp(34px,5vw,58px);line-height:1.04;
  letter-spacing:-.035em;color:var(--ink);max-width:16ch;margin:14px 0 0}
.post-hero .sub{font:400 17.5px/1.62 var(--sans);color:var(--ink2);max-width:680px;margin-top:22px}

/* circular READ MORE cue */
.read-cue{display:inline-flex;align-items:center;gap:15px;margin-top:30px}
.read-cue .circ{width:48px;height:48px;border-radius:50%;background:var(--acc);display:grid;place-items:center;
  box-shadow:0 14px 30px -12px var(--acc-ring);transition:transform .35s var(--ease),background .3s}
.read-cue:hover .circ{transform:translateY(3px);background:var(--acc-d)}
.read-cue .circ svg{width:18px;height:18px;stroke:#fff;stroke-width:2.2;fill:none}
.read-cue .lbl{font:600 11px/1 var(--sans);letter-spacing:.16em;text-transform:uppercase;color:var(--ink)}

/* featured image */
.post-figure{max-width:1080px;margin:46px auto 0}
.post-figure img{width:100%;aspect-ratio:16/8.4;object-fit:cover;border-radius:14px;background:var(--bg2)}

/* body shell: social rail + content */
.post-shell{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:56px minmax(0,1fr);gap:46px;align-items:start}
.post-social{position:sticky;top:120px;display:flex;flex-direction:column;gap:13px}
.post-social a{width:44px;height:44px;border-radius:50%;border:1px solid var(--line2);display:grid;place-items:center;
  color:var(--ink2);transition:color .3s,border-color .3s,background .3s,transform .3s var(--ease)}
.post-social a:hover{color:var(--acc-d);border-color:var(--acc);background:var(--acc-tint);transform:translateY(-2px)}
.post-social a svg{width:18px;height:18px;fill:currentColor}
.post-content{min-width:0}
.post-content .rich{max-width:680px}
.post-content .rich>p:first-of-type{font-size:19px;line-height:1.72;color:var(--ink)}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:900px){
  .bgrid{grid-template-columns:repeat(2,1fr)}
  .post-shell{grid-template-columns:1fr;gap:0}
  .post-social{position:static;flex-direction:row;gap:11px;margin-bottom:26px}
}
@media(max-width:600px){
  .jr-hero,.post-hero{padding-top:120px}
  .bgrid{grid-template-columns:1fr}
  .bpost{padding:30px 26px}
  .post-figure img{aspect-ratio:16/10;border-radius:10px}
}
