:root{
  /* Editorial palette */
  --bg: #fbfaf7;
  --bg2: #f7f3ee;
  --surface: #ffffff;
  --surface2: #f3efe6;
  --text: #1a1a1a;
  --muted: #4b5563;   /* readable gray */
  --muted2: #6b7280;  /* secondary */
  --border: #e6dfd2;

  /* Single accent (ink green) */
  --accent: #0b3d2e;
  --accent2: #0b3d2e;
  --ok: #14532d;

  /* Soft, single-level shadow */
  --shadow: 0 14px 40px rgba(17,24,39,.10);
  --shadow2: 0 10px 28px rgba(17,24,39,.09);

  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --pad: clamp(16px, 3vw, 28px);

  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-serif: "Cormorant Garamond", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}


*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);

  /* Typographic rhythm (editorial) */
  font-size: 18px;
  line-height: 1.75;

  overflow-x:hidden;

  /* Header is fixed; keep content from hiding under it */
  padding-top: var(--header-h, 84px);
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline; text-decoration-thickness: 2px; text-underline-offset: 3px}

img,svg{max-width:100%; height:auto}
p,h1,h2,h3,h4,h5,h6,.cardDesc,.link,.miniText,.heroSub{overflow-wrap:anywhere; word-break:normal}
section{scroll-margin-top: calc(var(--header-h, 84px) + 10px)}

:focus-visible{
  outline: 2px solid rgba(11,61,46,.45);
  outline-offset: 3px;
  border-radius: 12px;
}

@supports (text-wrap: balance){
  .heroTitle,.h2{ text-wrap: balance; }
}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 14px;
  background: var(--surface);
  border:1px solid var(--border);
  border-radius:12px; z-index:9999;
  box-shadow: var(--shadow2);
}

.container{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}

/* Text measure: keeps long text readable */
.measure{max-width:72ch}
.measure--center{max-width:72ch; margin-left:auto; margin-right:auto}


/* Header */
.header{
  position:fixed; top:0; left:0; right:0;
  z-index:70;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(251,250,247,.82);
  border-bottom:1px solid rgba(230,223,210,.85);
  box-shadow: var(--shadow2);
  transition: background .18s ease, box-shadow .18s ease;
}
.header__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.header.header--scrolled{
  background: rgba(251,250,247,.94);
  box-shadow: var(--shadow);
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:0;
  /* Give it a tiny breathing room from the viewport edge */
  padding-left: 6px;
}
.brand__mark{
  width:36px; height:36px; border-radius:14px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface2) 100%);
  border:1px solid var(--border);
  display:grid; place-items:center;
  box-shadow: 0 10px 22px rgba(17,24,39,.10);
}
.brand__mark svg{width:22px;height:22px; opacity:.9}
.brand__text{min-width:0}
.brand__name{
  font-family: var(--font-serif);
  font-weight:800; letter-spacing:.22px;
  font-size: 18px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.brand__tag{
  color:var(--muted); font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

.nav{
  display:flex; align-items:center; gap:8px;
  justify-content:center;
  min-width:0;
  justify-self:center;
}
.nav a{
  padding:8px 10px; border-radius:12px; color:var(--muted2);
  border:0;
  font-size:14px; white-space:nowrap;
}
.nav a:hover{
  color:var(--text);
  border-color: transparent;
  background: rgba(243,239,230,.85);
}
.nav a.active{
  color:var(--text);
  border-color: rgba(11,61,46,.22);
  background: rgba(11,61,46,.06);
}

.header__actions{display:flex; align-items:center; gap:10px; justify-self:end}

.progress{height:2px; background:rgba(230,223,210,.75); border-radius:99px; overflow:hidden; margin:0 0 10px}
.progress__bar{height:100%; width:0%; background: var(--accent);}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: var(--surface);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  box-shadow: none;
}
.btn:hover{transform:none; background: rgba(243,239,230,.55)}
.btn:active{transform:none}
.btn--primary{
  background: var(--accent);
  border-color: rgba(11,61,46,.35);
  color: #fff;
  box-shadow: 0 10px 22px rgba(11,61,46,.14);
}
.btn--primary:hover{background: #083528}
.btn--ghost{background: transparent; box-shadow:none}
.btn--icon{padding:10px 10px}
.btn svg{width:16px;height:16px; opacity:.95}

.menuBtn{display:none}

/* Hero */
.hero{padding:34px 0 10px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
.heroCard{
  border:1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard__inner{padding: 28px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--muted2);
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
}
.kickerDot{
  width:8px;height:8px;border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(11,61,46,.10)
}
.heroTitle{
  margin:12px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.02;
  letter-spacing:.22px;
}
.heroSub{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 17px;
  max-width: 70ch;
}
.heroMeta{
  display:flex; flex-wrap:wrap; gap:10px;
  margin: 18px 0 22px;
}
.pill{
  border:1px solid var(--border);
  background: var(--surface2);
  padding:8px 10px;
  border-radius: 14px;
  color:var(--muted2);
  font-size: 12px;
}
.pill strong{color:var(--text); font-weight:700}
.heroActions{display:flex; flex-wrap:wrap; gap:10px}

.sideCard{
  display:flex; flex-direction:column; gap:14px;
  padding: 18px;
}
.sideCard .mini{
  border:1px solid var(--border);
  background: rgba(243,239,230,.55);
  border-radius: var(--radius);
  padding:16px;
}
.miniTitle{
  margin:0 0 6px;
  font-size:13px;
  color:var(--muted2);
  letter-spacing:.08em;
  text-transform:uppercase;
}
.miniText{margin:0; color:var(--text); font-size:16px}
.divider{height:1px; background:rgba(230,223,210,.9); margin:14px 0}

/* Sections */
.section{padding: 72px 0}
.sectionHeader{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:24px}

.sectionTools{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.section{position:relative}
section.section + section.section::before{
  content:"";
  position:absolute;
  top:0;
  left:var(--pad);
  right:var(--pad);
  height:1px;
  background: rgba(230,223,210,.75);
}
.countLine{margin:8px 0 0; color:var(--muted2); font-size:12px}
.search{
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.65);
  padding: 10px 12px;
  border-radius: 16px;
  min-width: min(520px, 58vw);
  max-width: 100%;
  box-shadow: none;
}
.search__icon{width:18px;height:18px; opacity:.9; color:var(--muted2)}
.search__input{
  flex:1 1 auto;
  background:transparent;
  border:0;
  color:var(--text);
  font-size:15px;
  outline:none;
  min-width: 0;
}
.search__input::placeholder{color:rgba(75,85,99,.65)}
.search__clear{
  border:1px solid var(--border);
  background: rgba(243,239,230,.55);
  color:var(--text);
  width:28px; height:28px;
  border-radius:12px;
  cursor:pointer;
}
.search__clear:hover{background: rgba(243,239,230,.9)}
.h2{
  margin:0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 34px);
  letter-spacing:.18px;
}
.sub{margin:0; color:var(--muted); font-size:15px; max-width:72ch}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}

.card{
  border:1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
}
.card__inner{padding:18px}
.cardTitle{margin:0 0 6px; font-weight:750; font-size:16px; letter-spacing:.2px}
.cardMeta{color:var(--muted2); font-size:12px; display:flex; gap:10px; flex-wrap:wrap}
.cardDesc{margin:10px 0 14px; color:var(--muted); font-size:14px}
.cardLinks{display:flex; gap:10px; flex-wrap:wrap}
.link{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--text);
  font-size:13px;
  border:1px solid var(--border);
  background: rgba(243,239,230,.55);
  padding:8px 10px;
  border-radius:14px;
}
.link:hover{background: rgba(243,239,230,.9)}
.link svg{width:14px;height:14px; opacity:.9}

.bookCard{display:grid; grid-template-columns: 110px 1fr; gap:14px}
.bookCover{
  width:110px; aspect-ratio: 3/4;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(243,239,230,.55);
  overflow:hidden;
}
.bookCover img{width:100%; height:100%; object-fit:cover; display:block}

.pubRow{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.pubDate{
  color:var(--muted2); font-size:12px; white-space:nowrap;
}
.pubOutlet{color:var(--muted2); font-size:12px}

/* Bio */
.bioWrap{display:grid; grid-template-columns: .75fr 1.25fr; gap:18px}
.portrait{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(243,239,230,.55);
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(17,24,39,.06);
}
.portrait img{width:100%; height:auto; display:block}
.portrait--fixed{aspect-ratio:4/5}
.portrait--fixed img{height:100%; object-fit:cover}
.bioText{max-width:72ch}
.bioText p{margin:0 0 14px; color:var(--muted)}
.kv{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:14px}
.kv .pill{border-radius:16px}

/* Newsletter */
.form{
  display:flex; gap:10px; flex-wrap:wrap;
}
.input{
  flex: 1 1 240px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: var(--surface);
  color:var(--text);
  padding:12px 14px;
  font-size:14px;
  outline:none;
  box-shadow: none;
}
.input::placeholder{color:rgba(75,85,99,.6)}
.formMsg{margin:8px 0 0; color:var(--ok); font-size:13px; min-height: 18px}
.smallNote{margin:10px 0 0; color:var(--muted2); font-size:12px}

/* Footer */
.footer{padding: 24px 0 40px; border-top: 1px solid rgba(230,223,210,.95)}
.footerRow{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footerLinks{display:flex; gap:10px; flex-wrap:wrap}
.footerLinks a{color:var(--muted2); font-size:13px; padding:8px 10px; border-radius:12px}
.footerLinks a:hover{color:var(--text); background: rgba(243,239,230,.65)}


/* Modal / Settings */
.modal{
  position:fixed; inset:0; z-index:90;
  background: rgba(0,0,0,.55);
  display:none;
  padding: 16px;
}
.modal.open{display:grid; place-items:center}
.modalPanel{
  width: min(560px, 96vw);
  border-radius: 22px;
  border:1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
}
.modalHead{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.modalTitle{font-weight:800; font-size:18px; letter-spacing:.2px}
.modalSub{color:var(--muted2); font-size:12px; margin-top:4px}
.toggleRow{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 12px 10px;
  border-radius: 16px;
  border:1px solid rgba(230,223,210,.95);
  background: rgba(243,239,230,.55);
  margin-top: 10px;
}
.toggleTitle{display:block; font-weight:700; font-size:14px}
.toggleDesc{display:block; color:var(--muted2); font-size:12px; margin-top:2px}
.toggleRow input{width:18px;height:18px}
.modalActions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; margin-top: 12px}

/* Floating actions */
.fab{
  position:fixed;
  right: 18px;
  bottom: 18px;
  z-index: 85;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display:grid;
  place-items:center;
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.fab:hover{transform: translateY(-1px); background: rgba(243,239,230,.65)}
.fab svg{width:18px;height:18px}
.fab--pdf{
  bottom: 72px;
  width:auto;
  padding: 0 14px;
  gap: 8px;
  display:inline-flex;
  font-weight:800;
  letter-spacing:.08em;
}
.fab--pdf span{font-size:12px}

/* Reading mode */
body.reading{
  line-height: 1.8;
}
body.reading .heroSub, body.reading .cardDesc, body.reading .bioText p{
  font-size: 18px;
}
body.reading .card__inner{padding: 20px}
body.reading .sub{font-size: 14.5px}
body.reduce-motion *{transition:none !important; animation:none !important}
/* Mobile */
@media (max-width: 940px){
  .heroGrid{grid-template-columns: 1fr;}
  .bioWrap{grid-template-columns: 1fr;}
  .grid3{grid-template-columns: 1fr;}
  .grid2{grid-template-columns: 1fr;}
  .entries--two{grid-template-columns: 1fr;}
  .heroLayout{grid-template-columns: 1fr;}
  .heroSurface{padding: 24px}
  .contactWrap{grid-template-columns: 1fr;}
}


/* --- Off-canvas menu drawer (mobile) --- */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.55);
  display: none; /* hidden by default (prevents desktop layout shift) */
}
.drawer.open{display:block}
.drawerPanel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawerPanel a{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(243,239,230,.55);
  color: var(--text);
}
.drawerPanel a:hover{background: rgba(243,239,230,.9)}


@media (max-width: 1040px){
  .nav{display:none}
  .menuBtn{display:inline-flex}

}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important; animation:none !important}
  .btn:hover{transform:none}
}

/* --- Publications cards enhancements --- */
.pub-card .card-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.pub-card .card-meta-left,
.pub-card .card-meta-right{display:flex; align-items:center; gap:10px}
.badge{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(243,239,230,.55);
  color: var(--muted2);
  font-weight:750;
  letter-spacing:.2px;
  font-size:11px;
  line-height:1;
}
.pub-card .date{color:var(--muted2); font-size:12px; font-weight:700}
.pub-card .actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.pub-card .actions .btn{padding:8px 12px; border-radius:12px; font-size:12px}


/* Editorial rules */
.rule{height:1px; background:rgba(230,223,210,.9); margin:18px 0}

/* Surfaces: keep to a minimum */
.surface{
  background: var(--surface);
  border: 1px solid rgba(230,223,210,.9);
  border-radius: var(--radius2);
  box-shadow: 0 16px 36px rgba(17,24,39,.08);
}
.surface--soft{
  background: rgba(255,255,255,.9);
}
.surface__inner{padding: 28px}

/* Hero: single surface, airy editorial layout */
.hero{padding: 44px 0 24px}
.heroSurface{padding: 34px}
.heroLayout{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items:start;
}
.heroSub--tight{margin-top:-8px}
.heroTitle--featured{
  font-size: clamp(20px, 3vw, 32px);
  margin-top: 6px;
}
.heroMain .heroActions{margin-top: 18px}
.heroPortrait{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(230,223,210,.85);
  background: rgba(243,239,230,.55);
}
.asideBlocks{margin-top: 18px; display:flex; flex-direction:column; gap:16px}
.asideBlock{
  padding-top: 16px;
  border-top: 1px solid rgba(230,223,210,.75);
}
.asideBlock:first-child{border-top:0; padding-top:0}
/* Featured work (editorial block) */
.featuredWork{margin-top: 4px}
.featuredLabel{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted2);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 12px;
}
.featuredCard{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items:start;
}
.featuredCover{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(230,223,210,.85);
  background: rgba(243,239,230,.55);
  box-shadow: 0 14px 30px rgba(17,24,39,.08);
  transition: transform .18s ease;
}
.featuredCover:hover{transform: translateY(-2px)}
.featuredCover img{width:100%; height:auto; display:block}
.featuredBody{min-width: 0}
.featuredTitle{
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: .2px;
  line-height: 1.05;
}
.featuredExcerpt{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 72ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featuredMeta{
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13.5px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 8px;
}
.featuredMeta strong{color: var(--text); font-weight: 850}
.metaSep{opacity:.65; margin:0 6px}

@media (max-width: 700px){
  .featuredCard{grid-template-columns: 110px 1fr}
  .featuredCover{border-radius: 16px}
  .featuredTitle{font-size: clamp(20px, 5vw, 26px)}
}

/* Entries (replace cards): separators + generous whitespace */
.entries{
  display:flex;
  flex-direction:column;
  gap: 0;
}
.entries--two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.entry{
  padding: 22px 0;
  border-top: 1px solid rgba(230,223,210,.75);
}
.entries > .entry:first-child{border-top:0; padding-top:0}
.entries--two .entry:nth-child(-n+2){border-top:0; padding-top:0}
.entryTop{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 6px;
}
.entryTitle{
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 19px;
}
.entryMeta{
  margin-top: 6px;
  color: var(--muted2);
  font-size: 13.5px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}
.entryMeta .dot{opacity:.6}
.entryDesc{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 72ch;
}
.entryActions{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
}
.chip{
  color: var(--accent);
  font-weight: 650;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.chip:hover{opacity:.9}

/* Book row */
.entryRow{
  display:grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items:start;
}
.cover{
  width:112px;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(230,223,210,.85);
  background: rgba(243,239,230,.55);
}
.cover img{width:100%; height:100%; object-fit:cover; display:block}

/* Typographic covers (editorial placeholders) */
.cover--type{
  position:relative;
  background: linear-gradient(180deg, rgba(11,61,46,.06), rgba(243,239,230,.55));
}
.cover--type::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(17,24,39,.04), transparent 52%),
    radial-gradient(circle at 80% 30%, rgba(17,24,39,.03), transparent 55%),
    radial-gradient(circle at 40% 85%, rgba(17,24,39,.025), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.cover__inner{
  position:relative;
  z-index:1;
  height:100%;
  padding: 12px 12px 10px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap: 10px;
}
.cover__kicker{
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted2);
  line-height: 1.15;
}
.cover__title{
  font-family: var(--font-serif);
  font-weight: 750;
  font-size: 14px;
  line-height: 1.06;
  letter-spacing: .2px;
  color: var(--text);
  display:-webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.cover__footer{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
}
.cover__seal{
  font-size: 10px;
  color: var(--muted2);
  font-weight: 750;
  line-height: 1;
}
.cover__year{
  font-size: 11px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1;
}

/* Subtle variations */
.cover--v1::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height: 6px;
  background: var(--accent);
  opacity: .85;
}
.cover--v2{background: linear-gradient(180deg, rgba(11,61,46,.04), rgba(243,239,230,.6));}
.cover--v2::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 6px;
  background: var(--accent);
  opacity: .82;
}
.cover--v3{background: linear-gradient(180deg, rgba(11,61,46,.03), rgba(243,239,230,.62));}
.cover--v3::before{
  content:"";
  position:absolute;
  right: 10px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: var(--accent);
  opacity: .22;
}
.cover--v4{background: linear-gradient(180deg, rgba(11,61,46,.025), rgba(243,239,230,.64));}
.cover--v4::before{
  content:"";
  position:absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  transform: rotate(35deg);
  background: var(--accent);
  opacity: .12;
}

@media (max-width: 560px){
  .entryRow{grid-template-columns: 100px 1fr; gap: 16px;}
  .cover{width:100px; border-radius: 16px;}
  .cover__title{font-size: 13.5px;}
}

/* Magazine-style list for publications */
.magList{
  display:flex;
  flex-direction:column;
}
.magItem{
  padding: 24px 0;
  border-top: 1px solid rgba(230,223,210,.75);
}
.magItem:first-child{border-top:0; padding-top:0}
.magTop{display:flex; flex-direction:column; gap: 6px;}
.magTitle{
  display:inline-block;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 750;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.08;
  letter-spacing: .2px;
  color: var(--text);
  text-decoration: none;
}
.magTitle:hover{
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.magMeta{
  color: var(--muted2);
  font-size: 13px;
  font-weight: 650;
}
.magExcerpt{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 72ch;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.magActions{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
}

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border: 1px solid rgba(230,223,210,.85);
  background: rgba(243,239,230,.55);
  color: var(--muted2);
  font-weight: 750;
  font-size: 11px;
  line-height: 1;
}
.date{color: var(--muted2); font-size: 12px; font-weight: 700}

/* Contact */
.h3{margin:0; font-family: var(--font-serif); font-size: 20px}
.contactWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 8px;
}
.contactCol{padding-top: 22px; border-top: 1px solid rgba(230,223,210,.75)}
.contactLinks{display:flex; flex-direction:column; gap:10px; margin-top: 14px}
.contactLink{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(230,223,210,.55);
  text-decoration:none;
}
.contactLink:hover{text-decoration:none; opacity:.92}
.contactIcon{display:inline-flex; align-items:center; justify-content:center; width:18px; height:18px; color: var(--accent)}
.contactIcon svg{width:16px; height:16px}
.contactText{font-size: 15px; font-weight: 700; color: var(--text)}

@media (max-width: 720px){
  html,body{font-size:17px}
}
