/* ════════════════════════════════════════
   CHENZI WAN — EDITORIAL DARK DESIGN SYSTEM
   Inspired by kunofficial.com aesthetic
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0A0A0A;
  --bg2:      #111111;
  --bg3:      #1A1A1A;
  --ink:      #F0EDE8;
  --muted:    #666660;
  --accent:   #D4A574;
  --line:     #222220;
  --white:    #F0EDE8;
  --serif:    'Playfair Display', 'Georgia', serif;
  --sans:     'Helvetica Neue', 'Arial', sans-serif;
  --mono:     'Courier New', monospace;
  --ease:     cubic-bezier(.16,1,.3,1);
  --ease2:    cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* hide default cursor */
*, a, button { cursor: none !important; }

img { display: block; max-width: 100%; }

/* ════ CUSTOM CURSOR ════ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--white);
  border-radius: 50%; position: absolute;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease);
}
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid rgba(240,237,232,.4);
  border-radius: 50%; position: absolute;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease), height .4s var(--ease), opacity .3s;
}
body.cursor-hover .cursor-dot { width: 4px; height: 4px; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--accent); }

/* ════ NOISE OVERLAY ════ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
}

/* ════ NAV ════ */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 48px;
  mix-blend-mode: normal;
}
nav.site-nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.9) 0%, transparent 100%);
  pointer-events: none;
}
nav.site-nav .logo {
  font-family: var(--mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeIn .8s var(--ease) .2s forwards;
}
nav.site-nav .nav-links {
  display: flex; align-items: center; gap: 40px; list-style: none;
  position: relative; z-index: 1;
}
nav.site-nav .nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(240,237,232,.55); text-decoration: none;
  transition: color .3s; position: relative;
  opacity: 0; animation: fadeIn .8s var(--ease) .4s forwards;
}
nav.site-nav .nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
nav.site-nav .nav-links a:hover { color: var(--ink); }
nav.site-nav .nav-links a:hover::after { transform: scaleX(1); }
nav.site-nav .nav-links a.active { color: var(--ink); }
nav.site-nav .nav-links a.active::after { transform: scaleX(1); background: var(--ink); }
.resume-pill {
  font-family: var(--mono) !important; font-size: 10px !important;
  letter-spacing: .18em !important; padding: 8px 18px !important;
  border: 1px solid rgba(240,237,232,.3) !important; border-radius: 0 !important;
  color: var(--ink) !important; background: transparent;
  transition: background .3s, border-color .3s !important;
}
.resume-pill:hover { background: var(--ink) !important; color: var(--bg) !important; border-color: var(--ink) !important; }
.resume-pill:hover::after { display: none; }

.hamburger { display: none; background: none; border: none; padding: 4px; position: relative; z-index: 1; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--ink); margin: 6px 0; transition: all .3s; }

/* ════ FOOTER ════ */
footer.site-footer {
  border-top: 1px solid var(--line); padding: 32px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); flex-wrap: wrap; gap: 16px;
}
footer.site-footer a { color: var(--muted); text-decoration: none; transition: color .3s; }
footer.site-footer a:hover { color: var(--ink); }
.footer-nav { display: flex; gap: 32px; }

/* ════ CONNECT BANNER ════ */
.connect-banner {
  background: var(--bg2); padding: 120px 48px; text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden; position: relative;
}
.connect-banner::before {
  content: 'CONNECT'; position: absolute;
  font-family: var(--serif); font-size: clamp(80px,12vw,180px);
  font-weight: 700; color: rgba(240,237,232,.03);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none; letter-spacing: -.02em;
}
.connect-banner h2 {
  font-family: var(--serif); font-size: clamp(32px,5vw,56px);
  font-weight: 400; font-style: italic; margin-bottom: 16px;
  letter-spacing: -.01em;
}
.connect-banner p {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 48px;
}
.btn-light {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px; border: 1px solid rgba(240,237,232,.3); border-radius: 0;
  color: var(--ink); font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  transition: background .3s, border-color .3s, color .3s;
}
.btn-light:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* ════ BUTTONS ════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 36px; background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink); border-radius: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none;
  transition: background .3s, color .3s;
}
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px; border: 1px solid var(--line); border-radius: 0;
  color: rgba(240,237,232,.6); font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  transition: border-color .3s, color .3s;
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* ════ PROJECT CARDS ════ */
.proj-card {
  background: transparent; border: none;
  text-decoration: none; color: var(--ink); display: block;
  position: relative; overflow: hidden;
}
.proj-card-thumb {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(.85) saturate(.9);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}
.proj-card:hover .proj-card-thumb { filter: brightness(.7) saturate(1); transform: scale(1.03); }
.proj-card-body { padding: 20px 0 32px; border-bottom: 1px solid var(--line); }
.proj-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.proj-tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent);
}
.proj-tag + .proj-tag::before { content: '·'; margin-right: 8px; }
.proj-name {
  font-family: var(--serif); font-size: clamp(18px,2vw,24px); font-weight: 400;
  line-height: 1.25; margin-bottom: 10px;
  transition: color .3s;
}
.proj-card:hover .proj-name { color: var(--accent); }
.proj-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.proj-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin-top: 16px; text-decoration: none;
}

/* ════ PAGE HERO (project pages) ════ */
.page-hero { max-width: 860px; margin: 0 auto; padding: 140px 48px 48px; }
.page-hero .back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  margin-bottom: 48px; transition: color .3s;
}
.page-hero .back-link:hover { color: var(--ink); }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(36px,5.5vw,64px);
  font-weight: 400; line-height: 1.08; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.page-hero .subtitle {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 40px;
}
.meta-row {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.meta-item label {
  display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.meta-item span { font-size: 14px; font-weight: 400; }

/* ════ PROJECT BODY ════ */
.proj-body { max-width: 860px; margin: 0 auto; padding: 0 48px 100px; }
.proj-body h2 {
  font-family: var(--serif); font-size: clamp(28px,3.5vw,42px); font-weight: 400;
  margin-bottom: 6px; margin-top: 72px; letter-spacing: -.02em;
}
.proj-body h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400; font-style: italic;
  color: var(--muted); margin-bottom: 24px;
}
.proj-body p {
  font-size: 15px; line-height: 1.85; color: rgba(240,237,232,.65);
  margin-bottom: 20px; max-width: 680px;
}
.proj-body p strong { color: var(--ink); font-weight: 500; }
.proj-body ul { margin: 0 0 20px; padding: 0; list-style: none; max-width: 680px; }
.proj-body ul li {
  padding: 12px 0 12px 0; position: relative;
  font-size: 14px; color: rgba(240,237,232,.6); line-height: 1.75;
  border-bottom: 1px solid var(--line);
}
.proj-body ul li strong { color: var(--ink); font-weight: 500; }
.proj-section-num {
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px;
}
.proj-img { width: 100%; margin: 40px 0; object-fit: cover; }
.proj-img-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 40px 0; }
.proj-img-2col img { width: 100%; object-fit: cover; }
.proj-img-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin: 40px 0; }
.proj-img-3col img { width: 100%; object-fit: cover; }
.proj-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin: 40px 0; }
.proj-gallery img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; margin: 40px 0; background: var(--bg2);
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.team-credit {
  margin-top: 64px; padding: 32px 0; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  color: var(--muted); line-height: 2;
}
.team-credit strong {
  color: var(--accent); font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; display: block; margin-bottom: 8px;
}

/* ════ OTHER PROJECTS ════ */
.other-projects { background: var(--bg2); padding: 80px 48px; border-top: 1px solid var(--line); }
.other-projects h2 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 48px;
}
.other-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }

/* ════ SECTION LABEL ════ */
.section-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ════ TEXT REVEAL ANIMATION ════ */
.reveal-text {
  overflow: hidden; display: block;
}
.reveal-text span {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  animation: revealUp .9s var(--ease) forwards;
}
@keyframes revealUp {
  to { transform: translateY(0); opacity: 1; }
}

/* ════ SPLIT CHAR ANIMATION ════ */
.split-chars .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(4deg);
  animation: charIn .6s var(--ease) forwards;
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* ════ SCROLL FADE ════ */



/* ════ BASE ANIMATIONS ════ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ════ RESPONSIVE ════ */
@media (max-width: 900px) {
  nav.site-nav { padding: 20px 24px; }
  .page-hero, .proj-body { padding-left: 24px; padding-right: 24px; }
  .other-projects { padding: 64px 24px; }
  .other-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer.site-footer { padding: 24px; }
  .connect-banner { padding: 80px 24px; }
}
@media (max-width: 640px) {
  body { cursor: auto !important; }
  .cursor { display: none; }
  nav.site-nav .nav-links { display: none; }
  nav.site-nav .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 100px 32px 48px;
    gap: 32px; align-items: flex-start; z-index: 400;
    animation: fadeIn .3s ease;
  }
  nav.site-nav .nav-links.open a {
    font-size: 14px; letter-spacing: .12em; opacity: 1;
  }
  .hamburger { display: block; z-index: 500; }
  .proj-img-2col, .proj-img-3col, .proj-gallery { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  footer.site-footer { flex-direction: column; gap: 20px; text-align: center; }
}

/* ════ SHARED SCRIPT (injected inline) ════ */

/* ── SCROLL REVEAL (project pages) ── */
.sr { opacity: 1; transform: none; }
body.js-ready .sr {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
body.js-ready .sr.sr-on { opacity: 1; transform: none; }

/* ── PROJECT BODY (shared) ── */
.proj-content {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 64px 120px;
}
.proj-content h2 {
  font-family: var(--serif); font-size: clamp(28px,3.5vw,44px);
  font-weight: 400; letter-spacing: -.025em;
  margin: 72px 0 8px; line-height: 1.1;
}
.proj-content h2:first-child { margin-top: 0; }
.proj-content h3 {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  font-style: italic; color: var(--muted); margin-bottom: 24px;
}
.proj-content p {
  font-size: 15px; line-height: 1.85;
  color: rgba(240,237,232,.62); margin-bottom: 20px; max-width: 700px;
}
.proj-content p strong { color: var(--ink); font-weight: 500; }
.proj-content p em { color: var(--accent); font-style: italic; }
.proj-num {
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 6px;
}
.proj-content ul {
  list-style: none; padding: 0; margin: 0 0 24px; max-width: 700px;
}
.proj-content ul li {
  font-size: 14.5px; line-height: 1.8;
  color: rgba(240,237,232,.6);
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.proj-content ul li strong { color: var(--ink); font-weight: 500; }

/* Image layouts */
.img-full { width: 100%; display: block; margin: 48px 0; }
.img-full img { width: 100%; display: block; }
.img-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 48px 0; }
.img-2col img { width: 100%; display: block; object-fit: cover; }
.img-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin: 48px 0; }
.img-3col img { width: 100%; display: block; object-fit: cover; }
.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 48px 0; }
.img-grid img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }
.vid-embed {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; margin: 48px 0; background: var(--bg2);
}
.vid-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.fig-embed {
  height: 640px; border: 1px solid var(--line); overflow: hidden; margin: 48px 0;
}
.fig-embed iframe { width: 100%; height: 100%; border: 0; }
.team-note {
  margin-top: 64px; padding: 28px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  color: var(--muted); line-height: 2.2;
}
.team-note strong {
  display: block; font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}

/* Section divider */
.sect-divider {
  border: none; border-top: 1px solid var(--line); margin: 72px 0 0;
}

/* Other projects strip */
.other-strip { background: var(--bg2); padding: 80px 64px; border-top: 1px solid var(--line); }
.other-strip h3 {
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 48px;
}
.other-strip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

@media(max-width:900px){
  .proj-content { padding: 60px 24px 80px; }
  .other-strip { padding: 60px 24px; }
  .other-strip-grid { grid-template-columns: 1fr 1fr; }
  .img-2col,.img-3col,.img-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px){
  .proj-content { padding: 40px 20px 64px; }
  .other-strip-grid { grid-template-columns: 1fr; }
}

/* ── YOUTUBE CLICK-TO-PLAY ── */
.yt-wrap {
  position: relative; margin: 48px 0;
  background: #000; overflow: hidden;
  aspect-ratio: 16/9;
}
.yt-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transition: filter .3s;
}
.yt-wrap:hover .yt-thumb { filter: brightness(.55); }
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .3s;
  pointer-events: none;
}
.yt-wrap:hover .yt-play { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
.yt-play::after {
  content: '';
  border-left: 26px solid #111;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 5px;
}
.yt-label {
  position: absolute; bottom: 20px; left: 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}
.yt-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  display: none;
}
.yt-wrap.playing .yt-thumb,
.yt-wrap.playing .yt-play,
.yt-wrap.playing .yt-label { display: none; }
.yt-wrap.playing iframe { display: block; }

/* ════════════════════════════════════════
   MOBILE RESPONSIVE — GLOBAL ENHANCEMENTS
   ════════════════════════════════════════ */

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  /* Nav */
  nav.site-nav { padding: 0 24px; height: 56px; }

  /* Connect banner */
  .connect-banner { padding: 72px 24px; }
  .connect-banner h2 { font-size: clamp(26px,5vw,40px); }

  /* Footer */
  footer.site-footer { padding: 24px; flex-wrap: wrap; gap: 16px; }

  /* Project body */
  .proj-content { padding: 48px 24px 80px; }
  .other-strip { padding: 56px 24px; }
  .other-strip-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Meta bar */
  .meta-bar { flex-wrap: wrap; }
  .mbi { padding: 16px 24px 16px 0; margin-right: 24px; }
}

/* ── Mobile (≤640px) ── */
@media (max-width: 640px) {
  /* Typography scale-down */
  h1, .hero-h1 { letter-spacing: -.02em; }

  /* Nav hamburger full-screen */
  nav.site-nav { padding: 0 20px; height: 52px; }
  nav.site-nav .logo { font-size: 16px; }

  /* Buttons */
  .btn-primary, .btn-secondary, .btn-light {
    padding: 12px 24px; font-size: 11px;
  }

  /* Connect banner */
  .connect-banner { padding: 56px 20px; }
  .connect-banner p { font-size: 13px; }

  /* Footer */
  footer.site-footer {
    flex-direction: column; align-items: center;
    text-align: center; padding: 28px 20px; gap: 16px;
  }
  .footer-nav { gap: 20px; justify-content: center; }

  /* Project content */
  .proj-content { padding: 32px 20px 64px; }
  .proj-content h2 { margin-top: 48px; }
  .img-full, .img-2col, .img-3col, .img-grid { margin: 28px 0; }
  .vid-embed, .yt-wrap { margin: 28px 0; }
  .fig-embed { height: 380px; }
  .team-note { margin-top: 40px; }

  /* Other strip */
  .other-strip { padding: 48px 20px; }
  .other-strip-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Meta bar */
  .meta-bar { flex-wrap: wrap; }
  .mbi { width: 50%; border-right: none !important; padding: 14px 0; margin-right: 0; }

  /* Project hero */
  .proj-hero-inner { padding: 0 20px 40px !important; }
  .proj-hero-h1 { font-size: clamp(28px,7vw,44px) !important; }
  .back-link { margin-bottom: 24px !important; }

  /* Proj card */
  .proj-card-body { padding: 16px 16px 20px; }
  .proj-name { font-size: 17px; }
}
