/* === Averta font === */
@font-face {
  font-family: 'Averta';
  src: url('../fonts/averta-regular-webfont.woff2') format('woff2'),
       url('../fonts/averta-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/averta-lightitalic-webfont.woff2') format('woff2'),
       url('../fonts/averta-lightitalic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/averta-semibold-webfont.woff2') format('woff2'),
       url('../fonts/averta-semibold-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/averta-extrabold-webfont.woff2') format('woff2'),
       url('../fonts/averta-extrabold-webfont.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* === Variables === */
:root {
  --bg: #CACCCC;
  --dark: #363C49;
  --text: #2b3a4e;
  --muted: #5F6981;
  --border: #b8b8b8;
  --font: 'Averta', 'Helvetica Neue', Arial, sans-serif;
  --max-home: 960px;
  --max-detail: 1200px;
  --header-h: 60px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* === Header === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: var(--max-home);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-name {
  font-size: 13px;
  letter-spacing: 0.01em;
}

.site-name-main {
  font-weight: 600;
  color: var(--text);
}

.site-name-sep {
  color: var(--muted);
}

.site-name-sub {
  font-weight: 400;
  color: var(--muted);
}

/* Tooltip on hover/focus of the site name */
.site-name.has-tooltip {
  position: relative;
  cursor: default;
  outline: none;
}

.site-name-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: 320px;
  max-width: min(320px, calc(100vw - 48px));
  padding: 12px 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(43, 58, 78, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}

/* Pointing triangle (caret) near the top-right of the tooltip */
.site-name-tooltip::before,
.site-name-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 22px;
  width: 0;
  height: 0;
  border-style: solid;
}

/* Border-colored caret (slightly larger, sits behind the fill) */
.site-name-tooltip::before {
  border-width: 0 7px 8px 7px;
  border-color: transparent transparent var(--border) transparent;
}

/* White fill caret, nudged up 1px to overlap the border edge */
.site-name-tooltip::after {
  left: 23px;
  margin-bottom: -1px;
  border-width: 0 6px 7px 6px;
  border-color: transparent transparent #fff transparent;
}

.site-name.has-tooltip:hover .site-name-tooltip,
.site-name.has-tooltip:focus-visible .site-name-tooltip,
.site-name.has-tooltip:focus .site-name-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.nav-label {
  color: var(--muted);
}

.nav-link {
  color: var(--muted);
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  font-weight: 600;
}

.nav-sep {
  color: var(--muted);
}

/* === Page offset for fixed header === */
.page-offset {
  padding-top: var(--header-h);
}

/* === Centered container === */
.container {
  max-width: var(--max-home);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--max-detail);
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   HOMEPAGE
   ========================================= */

/* Intro */
.intro {
  padding: 72px 24px 80px;
  max-width: var(--max-home);
  margin: 0 auto;
}

.intro-heading {
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.intro-heading-accent {
  color: var(--muted);
}

.intro-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
}

.intro-sub + .intro-sub {
  margin-top: 4px;
}

/* Override: italic paragraph after regular needs more breathing room.
   Must come AFTER the + rule and match same specificity (0-2-0) to win. */
.intro-sub + .intro-sub--italic {
  margin-top: 28px;
}

.intro-sub--italic {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

.intro-sub--bridge {
  max-width: var(--max-home);
  margin: 0 auto 20px;
  padding: 0 24px;
  text-align: right;
}

/* Commercial projects list */
.projects-list {
  max-width: var(--max-home);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.project-card {
  display: block;
  color: inherit;
}

.project-card:hover .project-image img {
  opacity: 0.92;
}

.project-image {
  width: 100%;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 6px;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s;
}

.project-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.project-meta {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 14px;
}

.project-meta .meta-dot {
  margin: 0 8px;
}

.project-meta .meta-end {
  color: var(--muted);
}

.project-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* Pre-footer boxes */
.pre-footer {
  margin-top: 96px;
  margin-bottom: 80px;
  max-width: var(--max-home);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.pre-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pre-footer-grid--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: flex-end;
}

.pre-footer--center {
  display: flex;
  justify-content: center;
}

/* Base — dark box (Concept works) */
.pre-footer-box {
  background: var(--dark);
  color: #fff;
  padding: 30px 36px;
  display: block;
  border-radius: 8px;
}

.pre-footer-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pre-footer-box p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* Left box — outline / transparent style */
.pre-footer-box--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(43, 58, 78, 0.2);
}

.pre-footer-box--outline h3 {
  color: var(--text);
}

.pre-footer-box--outline p {
  color: var(--muted);
}

/* Right box — dark, clickable */
.pre-footer-box--link {
  transition: background 0.15s, color 0.15s;
}

.pre-footer-box--link:hover {
  background: #2f3a4d;
}

/* Outline variant — transparent bg, dark stroke + text */
.pre-footer-box--link.pre-footer-box--stroke {
  background: transparent;
  border: 1px solid var(--dark);
}

.pre-footer-box--stroke h3,
.pre-footer-box--stroke p {
  color: var(--dark);
}

.pre-footer-box--stroke:hover {
  background: var(--dark);
}

/* Compact, title-only button variant */
.pre-footer-btn {
  display: inline-block;
  padding: 16px 24px;
  border: 1px solid var(--dark);
  border-radius: 8px;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}

.pre-footer-btn h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

.pre-footer-btn:hover {
  background: var(--dark);
}

.pre-footer-btn:hover h3 {
  color: #fff;
}

.pre-footer-box--stroke:hover h3,
.pre-footer-box--stroke:hover p {
  color: #fff;
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: var(--dark);
  padding: 44px 0;
}

.footer-inner {
  max-width: var(--max-home);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.footer-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.copy-email-btn {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.copy-email-btn:hover {
  text-decoration: underline;
}

.copy-email-btn.copied {
  text-decoration: none;
}

/* =========================================
   CONCEPTS PAGE
   ========================================= */

/* .concepts-intro replaced by shared .intro class */

.concepts-list {
  max-width: var(--max-home);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}


/* Carousel — matches .project-image sizing */
.concept-carousel {
  position: relative;
  width: 100%;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 6px;
}

.concept-carousel img {
  width: 100%;
  height: auto;
  display: block;
}

.concept-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

/* Matches .project-title */
.concept-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.carousel-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 4px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  background: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.view-full-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 8px;
  transition: color 0.15s;
}

.view-full-link:hover {
  color: var(--text);
}

/* Matches .project-desc */
.concept-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* =========================================
   PROJECT DETAIL PAGE
   ========================================= */

.detail-page {
  background: var(--bg);
  min-height: 100vh;
}

/* Close button */
.close-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f9f9f9;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.15s;
  line-height: 1;
}

.close-btn:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Detail content */
.detail-content {
  max-width: var(--max-detail);
  margin: 0 auto;
  padding: 32px 40px 0;
}

.detail-hero {
  text-align: center;
  margin-bottom: 52px;
}

.detail-hero img {
  display: inline-block;
  max-width: 800px;
  width: 100%;
  height: auto;
}

.detail-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.detail-meta {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}

.detail-desc {
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 48px;
}

.detail-list-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-left: 5%;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 64px;
  max-width: 500px;
  margin-left: 5%;
}

.detail-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
}

.detail-list li::before {
  content: '→';
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
}

/* Password gate */
.password-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 80px;
  min-height: 340px;
}

.gate-image {
  position: relative;
  overflow: hidden;
  background: #111;
}

.gate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.gate-body {
  padding: 44px 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.gate-heading {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.gate-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.pin-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.pin-digit {
  width: 48px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 1px;
  color: #fff;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color 0.15s;
  caret-color: transparent;
}

.pin-digit:focus {
  border-color: rgba(255,255,255,0.6);
}

.pin-digit.error {
  border-color: #e05050;
}

.pin-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: -4px;
}

.pin-playground {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 0;
}

.pin-playground a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pin-playground a:hover {
  color: #fff;
}

/* Shake animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-6px); }
  30%       { transform: translateX(6px); }
  45%       { transform: translateX(-5px); }
  60%       { transform: translateX(5px); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
}

.pin-row.shaking {
  animation: shake 0.45s ease;
}

/* Protected content */
.protected-content {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding-bottom: 96px;
}

.protected-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.protected-content[hidden] {
  display: none;
}

.protected-heading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.protected-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 40px;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.content-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.content-grid--wide {
  grid-template-columns: 1fr 1fr;
}

.content-full {
  margin-bottom: 20px;
}

.content-full img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* Dark full-width image band (between sections) */
.content-band {
  margin: 48px -40px;
  background: var(--dark);
  overflow: hidden;
}

.content-band img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}

/* Dark content section (Mapping etc.) */
.content-section-dark {
  margin: 48px -40px 0;
  background: var(--dark);
  padding: 64px 40px 80px;
}

.content-section-dark .protected-heading {
  color: #fff;
}

.content-section-dark .protected-desc {
  color: rgba(255,255,255,0.55);
}

.content-section-dark .content-full img,
.content-section-dark .content-grid img {
  border-radius: 2px;
}

/* Protected sub-section spacing */
.protected-section {
  margin-bottom: 64px;
}

/* ── Centered project section layout (Fidelity-style) ── */
.proj-cover {
  max-width: 1200px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.proj-cover.visible {
  opacity: 1;
  transform: translateY(0);
}

.proj-cover[hidden] {
  display: none;
}

.proj-cover img {
  width: 100%;
  display: block;
}

.proj-section {
  padding: 64px 0 48px;
}

.proj-section:last-child {
  padding-bottom: 0;
}

.proj-section-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
}

.proj-section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

/* Colored band section — bg extends edge-to-edge of the detail column */
.proj-section--band {
  margin: 0 -40px;
  padding: 64px 40px 72px;
}

.proj-section--dark {
  margin: 0 -40px;
  background: var(--dark);
  padding: 64px 40px 72px;
}

.proj-section--dark .proj-section-heading {
  color: #fff;
}

.proj-section--dark .proj-section-sub {
  color: rgba(255,255,255,0.55);
}

.proj-section--dark .content-full {
  margin-bottom: 24px;
}

.proj-section--dark .content-full:last-child {
  margin-bottom: 0;
}

.proj-video {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* Two videos side by side, centered at natural phone width */
.proj-videos-row {
  display: grid;
  grid-template-columns: repeat(2, min(280px, 42%));
  justify-content: center;
  gap: 48px;
}

.proj-videos-row video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Media wider than the text column — extends into the section padding */
.content-bleed {
  margin-left: -40px;
  margin-right: -40px;
}

/* Dribbble — composed stage: skateboard image as background, animated
   phone mockups overlaid over the left (dark) half of the artwork */
.dribbble-stage {
  position: relative;
}

.dribbble-stage-bg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.dribbble-stage-phones {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* Confine the phones to the left dark half of the background artwork */
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  padding: 0 4%;
  box-sizing: border-box;
  margin-left: 10%;
}

.dribbble-stage-phones img {
  width: 360px;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 700px) {
  /* Stack stage vertically on small screens — overlay is too tight */
  .dribbble-stage-phones {
    gap: 6%;
  }
  .dribbble-stage-phones img {
    width: 38%;
  }
}

/* BlackRock projects list (concept-item layout inside protected content) */
.blk-projects-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 16px;
}

.blk-ai-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

/* Next project button */
.next-project {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.next-project-btn {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.15s;
}

.next-project-btn:hover {
  background: #333;
}

/* Responsive Vimeo embeds (Interactive Prototypes) */
.proto-embed {
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 20px;
  background: #11151c;
  border-radius: 2px;
  overflow: hidden;
}

.proto-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Portrait phone clips — fixed height, centered */
/* 384 × 620 */
.proto-embed--portrait { height: 612px; max-width: 392px; margin-left: auto; margin-right: auto; }

/* 320 × 620 */
.proto-embed--portrait-tall { height: 620px; max-width: 320px; }

/* 16:9 landscape clips — 1280 × 720 */
.proto-embed--wide { padding-bottom: 56.25%; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  :root { --header-h: 48px; }

  .header-inner { padding: 0 16px; }

  .intro,
  .projects-list,
  .concepts-intro,
  .concepts-list,
  .pre-footer { padding-left: 16px; padding-right: 16px; }

  .intro { padding-top: 48px; padding-bottom: 56px; }

  .pre-footer-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .projects-list { gap: 56px; }

  .detail-content { padding: 48px 20px 0; }

  .container--wide { padding: 0 20px; }

  .content-band { margin: 40px -20px; }

  .content-section-dark { margin: 40px -20px 0; padding: 48px 20px 64px; }

  .proj-section--band { margin: 0 -20px; padding: 48px 20px 64px; }

  .proj-section--dark { margin: 0 -20px; padding: 48px 20px 64px; }

  .proj-videos-row { grid-template-columns: min(360px, 100%); }

  .content-bleed { margin-left: -20px; margin-right: -20px; }

  .password-gate {
    grid-template-columns: 1fr;
  }

  .gate-image {
    min-height: 220px;
  }

  .gate-body {
    padding: 32px 24px;
  }

  .close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .content-grid { grid-template-columns: 1fr; }
  .content-grid--wide { grid-template-columns: 1fr; }

  .site-nav { gap: 4px; font-size: 12px; }

  .concepts-list { gap: 60px; }

  .concept-title { font-size: 22px; }

  .intro-sub {
  font-size: 16px
}
.project-image {
  margin-bottom: 8px;
}
.project-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.project-meta {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}

.project-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
}
.pre-footer {
  margin-top: 0px;
  margin-bottom: 20px;
}
.concept-desc {
  font-size: 13px;
}
.site-name-sub{
  
  width: 100%;
  float: left;
  font-size: 11px;
}
.nav-label{
  display: none;
}
.header-inner {
  display: flex;
  align-items:first baseline;
  justify-content: space-between;
}
.pre-footer-box--outline{
  display: none;
}
.view-full-link {
display: none;
}

}
