
:root{
  --white:#ffffff;
  --black:#111111;
  --gray:#6b6b6b;
  --line:#dddddd;
  --muted:#707070;
  --hover:#7a7a7a;
  --max:1180px;
  --side:clamp(24px,5vw,72px);
  --sans:"Helvetica Neue","Avenir Next",Avenir,Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fff;
  color:var(--black);
  font-family:var(--sans);
  font-size:15px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit}
.site-header{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 var(--side);
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.97);
  transition:box-shadow .22s ease;
}
.site-header.scrolled{box-shadow:0 1px 0 rgba(0,0,0,.08)}
.brand{
  font-size:15px;
  line-height:1;
  font-weight:500;
  letter-spacing:.075em;
  transition:color .2s ease, opacity .2s ease;
}
.brand:hover{color:var(--hover);opacity:.82}
.site-nav{display:flex;gap:34px;align-items:center}
.nav-link{
  position:relative;
  padding:10px 0;
  font-size:14px;
  line-height:1;
  transition:color .2s ease;
}
.nav-link:hover{color:var(--hover)}
.nav-link.active{font-weight:500}
.nav-link.active:after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:2px;
  height:1px;
  background:currentColor;
  opacity:.75;
}
.menu-toggle{
  display:none;
  width:40px;height:40px;
  border:0;background:transparent;
  padding:8px;cursor:pointer;
}
.menu-toggle span{
  display:block;height:1px;background:#111;
  margin:7px 0;
  transition:transform .2s ease,opacity .2s ease;
}

.wix-shell,.page,.site-footer{
  width:min(var(--max),calc(100% - var(--side)*2));
  margin-inline:auto;
}

.home{padding-top:76px}
.home-intro{
  display:grid;
  grid-template-columns:270px minmax(0,1fr);
  gap:clamp(54px,8vw,110px);
  align-items:start;
}
.portrait-wrap{overflow:hidden;background:#f4f4f4}
.portrait{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  transition:transform .35s ease;
}
.portrait-wrap:hover .portrait{transform:scale(1.015)}
.home-copy h1{
  margin:0;
  font-size:clamp(42px,5vw,66px);
  line-height:1.08;
  font-weight:400;
  letter-spacing:-.025em;
}
.korean-name{
  margin:8px 0 26px;
  font-size:20px;
  line-height:1.35;
}
.email{
  display:inline-block;
  font-size:14px;
  border-bottom:1px solid #111;
  padding-bottom:2px;
  transition:color .2s ease,border-color .2s ease;
}
.email:hover{color:var(--hover);border-color:var(--hover)}
.home-section{
  display:grid;
  grid-template-columns:270px minmax(0,1fr);
  gap:clamp(54px,8vw,110px);
  border-top:1px solid var(--line);
  margin-top:96px;
  padding-top:44px;
}
.section-title,.page-section-title{
  font-size:14px;
  font-weight:500;
  line-height:1.4;
}
.home-section-content{max-width:760px}
.home-section p{margin:0 0 17px;font-size:15px;line-height:1.75}
.skills-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}
.skills-columns h3{
  margin:0 0 18px;
  font-size:14px;
  font-weight:500;
}
.skill-list{list-style:none;margin:0;padding:0}
.skill-list li{
  padding:7px 0;
  font-size:14px;
  transition:padding-left .2s ease,color .2s ease;
}
.skill-list li:hover{padding-left:7px;color:var(--hover)}

.page{padding-top:72px}
.page-title{
  margin:0 0 78px;
  font-size:clamp(38px,5vw,58px);
  line-height:1.1;
  font-weight:400;
  letter-spacing:-.025em;
}
.page-section{
  display:grid;
  grid-template-columns:270px minmax(0,1fr);
  gap:clamp(54px,8vw,110px);
  padding-bottom:70px;
  margin-bottom:70px;
  border-bottom:1px solid var(--line);
}
.page-section:last-child{border-bottom:0}
.entry{margin:0 0 52px}
.entry:last-child{margin-bottom:0}
.entry-head{
  display:grid;
  grid-template-columns:155px minmax(0,1fr);
  gap:38px;
  margin-bottom:8px;
}
.entry-date,.entry-location{
  font-size:13px;
  line-height:1.6;
  color:#666;
}
.entry h2{
  margin:0 0 3px;
  font-size:18px;
  line-height:1.45;
  font-weight:500;
}
.entry h3{
  margin:0 0 6px;
  font-size:15px;
  line-height:1.5;
  font-weight:500;
}
.entry p{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.75;
}
.entry a{
  text-decoration:underline;
  text-underline-offset:3px;
  transition:color .2s ease;
}
.entry a:hover{color:var(--hover)}

.project-intro{
  max-width:760px;
  margin-bottom:78px;
}
.project-intro h2{
  margin:0 0 10px;
  font-size:22px;
  font-weight:500;
}
.project-intro p,.project-intro ul{font-size:14px;line-height:1.75}
.project{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,1fr);
  gap:clamp(54px,8vw,105px);
  align-items:start;
  padding:70px 0;
  border-top:1px solid var(--line);
}
.project-copy{min-width:0}
.project-category{
  margin:0 0 13px;
  font-size:12px;
  color:#666;
  letter-spacing:.03em;
}
.project h2{
  margin:0 0 11px;
  font-size:30px;
  line-height:1.2;
  font-weight:400;
  letter-spacing:-.015em;
}
.project-title{margin:0 0 14px;font-size:15px;line-height:1.65}
.project-copy > p{font-size:14px;line-height:1.75;margin:0 0 15px}
.project-meta{
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  gap:9px 22px;
  margin-top:28px;
  font-size:13px;
  line-height:1.7;
}
.project-meta b{font-weight:500;color:#666}
.project-link{
  display:inline-block;
  margin-top:24px;
  font-size:13px;
  text-decoration:underline;
  text-underline-offset:4px;
  transition:color .2s ease;
}
.project-link:hover{color:var(--hover)}
.small-note{
  margin-top:30px!important;
  color:#666;
  font-size:12px!important;
}

/* Carousel */
.carousel{width:100%}
.carousel-viewport{
  position:relative;
  overflow:hidden;
  background:#f5f5f5;
}
.carousel.wide .carousel-viewport{aspect-ratio:16 / 9}
.carousel.portrait .carousel-viewport{aspect-ratio:3 / 4}
.carousel-track{
  display:flex;
  height:100%;
  transition:transform .35s ease;
  touch-action:pan-y;
}
.carousel-slide{
  min-width:100%;
  height:100%;
}
.carousel-slide img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#f5f5f5;
}
.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:#222;
  font-size:25px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:background .2s ease, color .2s ease, opacity .2s ease;
  box-shadow:0 1px 4px rgba(0,0,0,.08);
}
.carousel-arrow:hover{
  background:#fff;
  color:#000;
}
.carousel-arrow.prev{left:12px}
.carousel-arrow.next{right:12px}
.carousel-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  margin-top:12px;
}
.carousel-dots{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.carousel-dot{
  width:8px;height:8px;
  border-radius:999px;
  border:0;
  padding:0;
  background:#d0d0d0;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}
.carousel-dot.is-active{
  background:#111;
  transform:scale(1.1);
}
.carousel-count{
  font-size:12px;
  color:#666;
  letter-spacing:.02em;
}

.media-stack{
  display:grid;
  gap:18px;
}
.media-frame{
  overflow:hidden;
  background:#f5f5f5;
}
.media-frame img{
  width:100%;
  height:auto;
  object-fit:contain;
  transition:transform .35s ease,opacity .25s ease;
}
.media-frame:hover img{transform:scale(1.012);opacity:.95}
.media-two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.site-footer{
  margin-top:112px;
  padding:28px 0 48px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:30px;
  font-size:12px;
  color:#666;
}
.footer-contact{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-contact a{transition:color .2s ease}
.footer-contact a:hover{color:var(--hover)}

.js-ready .reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .55s ease, transform .55s ease;
}
.js-ready .reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width:900px){
  .site-header{height:76px}
  .menu-toggle{display:block}
  .site-nav{
    position:absolute;
    top:76px;left:0;right:0;
    background:#fff;
    border-top:1px solid #eee;
    border-bottom:1px solid var(--line);
    padding:5px var(--side) 16px;
    display:grid;
    gap:0;
    opacity:0;
    pointer-events:none;
    transform:translateY(-5px);
    transition:opacity .2s ease,transform .2s ease;
  }
  .site-nav.open{opacity:1;pointer-events:auto;transform:none}
  .nav-link{padding:15px 0}
  .home{padding-top:52px}
  .home-intro,.home-section,.page-section{
    grid-template-columns:1fr;
    row-gap:28px;
  }
  .portrait{width:min(320px,100%)}
  .home-section{margin-top:70px;padding-top:32px}
  .page{padding-top:52px}
  .page-title{margin-bottom:55px}
  .page-section{padding-bottom:50px;margin-bottom:50px}
  .project{
    grid-template-columns:1fr;
    row-gap:42px;
    padding:55px 0;
  }
  .project-copy{order:1;max-width:760px}
  .project-media{order:2}
  .site-footer{display:block;margin-top:75px}
  .footer-contact{justify-content:flex-start;margin-top:18px}
}
@media (max-width:560px){
  body{font-size:14px}
  .home{padding-top:38px}
  .home-copy h1{font-size:42px}
  .korean-name{font-size:18px;margin-bottom:21px}
  .home-section{margin-top:56px}
  .skills-columns{grid-template-columns:1fr;gap:34px}
  .entry-head{grid-template-columns:1fr;gap:3px}
  .project h2{font-size:27px}
  .project-meta{grid-template-columns:1fr;gap:3px}
  .project-meta b{margin-top:10px}
  .media-two{grid-template-columns:1fr}
  .carousel-arrow{width:38px;height:38px}
  .site-footer{padding-bottom:35px}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*:before,*:after{
    transition:none!important;
    animation:none!important;
  }
}


/* Publications */
.publication-page{
  max-width:1180px;
}
.publication-section{
  display:grid;
  grid-template-columns:270px minmax(0,1fr);
  column-gap:clamp(54px,8vw,110px);
  row-gap:0;
  padding:0 0 64px;
  margin:0 0 64px;
  border-bottom:1px solid var(--line);
}
.publication-section:last-child{
  border-bottom:0;
  margin-bottom:0;
}
.publication-section-title{
  margin:0;
  font-size:14px;
  line-height:1.55;
  font-weight:500;
}
.publication-entry{
  grid-column:2;
  max-width:780px;
  margin-top:-43px;
  margin-bottom:0;
}
.publication-entry + .publication-entry{
  margin-top:18px;
}
.publication-entry p{
  margin:0;
  font-size:14px;
  line-height:1.82;
}
.publication-entry strong{
  font-weight:600;
}
.publication-entry em{
  font-style:italic;
}
.publication-entry a{
  text-decoration:underline;
  text-underline-offset:3px;
  transition:color .2s ease;
}
.publication-entry a:hover{
  color:var(--hover);
}

@media (max-width:900px){
  .publication-section{
    grid-template-columns:1fr;
    row-gap:26px;
    padding-bottom:50px;
    margin-bottom:50px;
  }
  .publication-entry{
    grid-column:auto;
    margin-top:0;
  }
  .publication-entry + .publication-entry{
    margin-top:12px;
  }
}


/* v5 project additions */
.project-extra{margin-top:22px;}
.project-extra-title{margin:0 0 12px;font-size:14px;font-weight:500;line-height:1.5;}
.project-action{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:10px 17px;margin-top:12px;border:1px solid #111;background:#111;color:#fff;font-size:13px;line-height:1.2;text-decoration:none;transition:background .2s ease,color .2s ease,border-color .2s ease;}
.project-action:hover{background:#fff;color:#111;}
.prototype-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:22px;}
.prototype-card{min-width:0;}
.prototype-card .media-frame{aspect-ratio:318 / 78;}
.prototype-card .media-frame img{width:100%;height:100%;object-fit:contain;background:#f5f5f5;}
.video-embed{position:relative;width:100%;aspect-ratio:16 / 9;overflow:hidden;background:#f3f3f3;}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.airwave-prototype-image{width:50%;max-width:260px;margin:0 auto;background:#f5f5f5;}
.airwave-prototype-image img{width:100%;height:auto;object-fit:contain;}
@media (max-width:620px){.prototype-grid{grid-template-columns:1fr;}}


/* v6 — Odia Academy case study */
.odia-project{
  border-top:0;
  padding-top:0;
}
.project-subsection{
  margin-top:28px;
}
.project-subsection h3{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.45;
  font-weight:500;
}
.project-subsection p{
  margin:0;
  font-size:14px;
  line-height:1.78;
}
.odia-meta{
  margin-top:34px;
}
.odia-media{
  position:static;
  align-self:start;
}
.odia-hero{
  background:#f3f3f3;
}
.odia-hero img{
  width:100%;
  height:auto;
  object-fit:contain;
}
.media-caption{
  margin:10px 0 0;
  font-size:12px;
  line-height:1.5;
  color:#666;
}
@media (max-width:900px){
  .odia-media{
    position:static;
  }
}




/* v8 refinements */
.project-media > .project-action{
  display:flex;
  width:max-content;
  margin:14px auto 0;
}

/* Cleaner text-only CJ N ME prototype cards */
.prototype-grid-text{
  align-items:start;
}
.prototype-text-card{
  padding:18px 0 4px;
  border-top:1px solid var(--line);
}
.prototype-persona{
  margin-bottom:12px;
  font-size:14px;
  font-weight:500;
  line-height:1.5;
}
.prototype-text-card .project-action{
  margin-top:0;
}

/* Home skills hierarchy */
.skills-columns h3{
  font-size:15px;
  font-weight:600;
  letter-spacing:.01em;
  margin-bottom:14px;
}
.skill-list{
  padding-top:2px;
}
.skill-list li{
  color:#555;
}

/* Education thesis de-emphasis */
.thesis-note{
  color:#777;
}


/* v10 — mobile polish */
@media (max-width:900px){
  :root{
    --side:clamp(20px,5vw,32px);
  }

  /* Header / navigation */
  .site-header{
    height:68px;
    padding-inline:var(--side);
  }
  .brand{
    font-size:13px;
    letter-spacing:.07em;
  }
  .menu-toggle{
    width:42px;
    height:42px;
    margin-right:-8px;
  }
  .site-nav{
    top:68px;
    padding:8px var(--side) 14px;
    box-shadow:0 8px 18px rgba(0,0,0,.04);
  }
  .nav-link{
    padding:14px 0;
    font-size:15px;
  }

  /* Global spacing */
  .wix-shell,.page,.site-footer{
    width:calc(100% - var(--side)*2);
  }
  .page{
    padding-top:38px;
  }
  .page-title{
    margin-bottom:42px;
    font-size:clamp(36px,9vw,48px);
    line-height:1.05;
  }

  /* Home */
  .home{
    padding-top:36px;
  }
  .home-intro{
    grid-template-columns:1fr;
    gap:28px;
  }
  .portrait-wrap{
    width:min(72vw,300px);
  }
  .portrait{
    width:100%;
  }
  .home-copy h1{
    font-size:clamp(38px,10vw,48px);
  }
  .korean-name{
    font-size:17px;
    margin:7px 0 18px;
  }
  .email{
    font-size:13px;
    overflow-wrap:anywhere;
  }
  .home-section{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:52px;
    padding-top:26px;
  }
  .section-title,.page-section-title{
    font-size:12px;
    letter-spacing:.035em;
  }
  .home-section p{
    font-size:14px;
    line-height:1.72;
  }
  .skills-columns{
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
  .skills-columns h3{
    font-size:14px;
    margin-bottom:10px;
  }
  .skill-list li{
    padding:4px 0;
    font-size:13px;
  }

  /* Experience */
  .page-section{
    grid-template-columns:1fr;
    gap:20px;
    padding-bottom:42px;
    margin-bottom:42px;
  }
  .entry{
    margin-bottom:38px;
  }
  .entry-head{
    grid-template-columns:1fr;
    gap:2px;
    margin-bottom:8px;
  }
  .entry-date,.entry-location{
    font-size:12px;
  }
  .entry h2{
    font-size:17px;
  }
  .entry h3{
    font-size:14px;
  }
  .entry p{
    font-size:13px;
    line-height:1.72;
  }

  /* Publications */
  .publication-section{
    display:block;
    padding-bottom:42px;
    margin-bottom:42px;
  }
  .publication-section-title{
    margin-bottom:22px;
    font-size:13px;
  }
  .publication-entry{
    max-width:none;
    margin-top:0;
  }
  .publication-entry + .publication-entry{
    margin-top:20px;
  }
  .publication-entry p{
    font-size:13px;
    line-height:1.72;
    overflow-wrap:anywhere;
  }

  /* Projects */
  .project{
    grid-template-columns:1fr;
    gap:30px;
    padding:44px 0;
  }
  .project:first-of-type{
    padding-top:0;
  }
  .project-category{
    margin-bottom:9px;
    font-size:11px;
  }
  .project h2{
    font-size:28px;
    margin-bottom:9px;
  }
  .project-title{
    font-size:14px;
    line-height:1.55;
  }
  .project-copy > p,
  .project-subsection p{
    font-size:13px;
    line-height:1.72;
  }
  .project-subsection{
    margin-top:24px;
  }
  .project-subsection h3{
    font-size:14px;
  }
  .project-meta{
    grid-template-columns:1fr;
    gap:2px;
    margin-top:24px;
  }
  .project-meta b{
    margin-top:12px;
    font-size:12px;
  }
  .project-meta b:first-child{
    margin-top:0;
  }
  .project-meta span{
    font-size:13px;
  }
  .small-note{
    font-size:11px!important;
    line-height:1.65!important;
  }

  /* Media */
  .odia-media{
    position:static;
  }
  .media-caption{
    font-size:11px;
  }
  .airwave-prototype-image{
    width:min(58vw,230px);
    max-width:230px;
  }
  .project-media > .project-action{
    margin-top:12px;
  }
  .project-action{
    min-height:44px;
    padding:11px 16px;
    font-size:13px;
  }

  /* Carousel */
  .carousel-arrow{
    width:36px;
    height:36px;
    font-size:22px;
  }
  .carousel-arrow.prev{left:8px}
  .carousel-arrow.next{right:8px}
  .carousel-footer{
    margin-top:10px;
    gap:10px;
  }
  .carousel-dots{
    gap:6px;
    max-width:82%;
  }
  .carousel-dot{
    width:7px;
    height:7px;
  }
  .carousel-count{
    flex:0 0 auto;
    font-size:11px;
  }

  /* Prototype section */
  .prototype-grid{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:16px;
  }
  .prototype-text-card{
    padding:14px 0 2px;
  }
  .prototype-persona{
    margin-bottom:10px;
    font-size:13px;
  }
  .prototype-text-card .project-action{
    width:100%;
  }
  .project-extra{
    margin-top:20px;
  }
  .project-extra-title{
    font-size:13px;
  }
  .video-embed{
    width:100%;
    border-radius:0;
  }

  /* Footer */
  .site-footer{
    margin-top:60px;
    padding:24px 0 32px;
    font-size:11px;
  }
  .footer-contact{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:7px 14px;
    margin-top:14px;
    justify-content:start;
  }
}

@media (max-width:560px){
  :root{
    --side:20px;
  }

  body{
    font-size:14px;
  }

  .page-title{
    font-size:40px;
    margin-bottom:36px;
  }

  /* Home: keep skills clearly separated without wasting width */
  .skills-columns{
    grid-template-columns:1fr;
    gap:26px;
  }
  .skills-columns > div + div{
    padding-top:22px;
    border-top:1px solid var(--line);
  }

  /* Wider use of phone viewport */
  .portrait-wrap{
    width:min(78vw,290px);
  }

  /* Project media is full width */
  .project{
    padding:40px 0;
  }
  .project h2{
    font-size:26px;
  }
  .airwave-prototype-image{
    width:min(62vw,220px);
  }

  /* Long publication / project links should never overflow */
  .publication-entry a,
  .project-link,
  .email{
    overflow-wrap:anywhere;
  }

  /* Record Life portrait slider should not become excessively tall */
  .carousel.portrait{
    width:min(100%,390px);
    margin-inline:auto;
  }

  /* Large sliders can swipe cleanly */
  .carousel-track{
    touch-action:pan-y pinch-zoom;
  }

  .site-footer{
    margin-top:48px;
  }
}

@media (max-width:390px){
  :root{
    --side:18px;
  }
  .brand{
    font-size:12px;
  }
  .page-title{
    font-size:36px;
  }
  .home-copy h1{
    font-size:38px;
  }
  .project h2{
    font-size:24px;
  }
  .carousel-arrow{
    width:34px;
    height:34px;
  }
}


/* v11 — consistent item spacing across Experience and Publications */
/* Desktop/tablet: use the same rhythm between items within a section. */
.entry{
  margin-bottom:30px;
}
.entry:last-child{
  margin-bottom:0;
}
.publication-entry + .publication-entry{
  margin-top:30px;
}

/* Mobile: use the same slightly tighter rhythm on both pages. */
@media (max-width:900px){
  .entry{
    margin-bottom:24px;
  }
  .entry:last-child{
    margin-bottom:0;
  }
  .publication-entry + .publication-entry{
    margin-top:24px;
  }
}


/* v13 — playful Hello! emphasis */
.home-section:first-of-type .section-title{
  font-size:22px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:-.01em;
  color:#111;
}

@media (max-width:900px){
  .home-section:first-of-type .section-title{
    font-size:20px;
    font-weight:700;
  }
}

@media (max-width:560px){
  .home-section:first-of-type .section-title{
    font-size:19px;
  }
}


/* v14 — explicit Hello! styling fix */
.home .hello-title{
  font-size:22px !important;
  font-weight:700 !important;
  line-height:1.15;
  letter-spacing:-0.01em;
  color:#111;
}

@media (max-width:900px){
  .home .hello-title{
    font-size:21px !important;
  }
}

@media (max-width:560px){
  .home .hello-title{
    font-size:20px !important;
  }
}


/* v18 — roomier, consistent item spacing */
.entry{
  margin-bottom:44px;
}
.entry:last-child{
  margin-bottom:0;
}

.publication-entry + .publication-entry{
  margin-top:44px;
}

@media (max-width:900px){
  .entry{
    margin-bottom:32px;
  }
  .entry:last-child{
    margin-bottom:0;
  }

  .publication-entry + .publication-entry{
    margin-top:32px;
  }
}


/* v18 revised — more generous, consistent item spacing */
.entry{
  margin-bottom:60px;
}
.entry:last-child{
  margin-bottom:0;
}

.publication-entry + .publication-entry{
  margin-top:60px;
}

@media (max-width:900px){
  .entry{
    margin-bottom:40px;
  }
  .entry:last-child{
    margin-bottom:0;
  }

  .publication-entry + .publication-entry{
    margin-top:40px;
  }
}
