/* ========================================
   Single Project Template
   ======================================== */

/* ----------------------------------------
   Section 1 — Hero
   Layout: full dark bg (#090909) with right panel (#141414)
   Header is position:absolute (90px) — content must clear it.
   Right panel has 30px dark gap at top (Figma: top:30px).
   ---------------------------------------- */

.section-project-hero {
  --section-pt: 0px;
  position: relative;
  /* overflow-x: clip clips horizontal overflow (negative margin-right on right panel)
     without creating a new BFC — allows overflow-y: visible so bottom crosses are not clipped */
  overflow-x: clip;
  background-color: var(--color-bg-dark);
}


/* Container: sits above ::before */
.section-project-hero .project-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 572px;
  align-items: stretch;
}

/* Dashed vertical lines ai lati del container — mirrors section--grid-dark::after */
.section-project-hero .project-hero-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
  background-size:
    1px 20px,
    1px 20px;
  background-position:
    0% 0,
    100% 0;
  background-repeat:
    repeat-y,
    repeat-y;
}

/* ----------------------------------------
   Left panel — dark bg, two content zones
   ---------------------------------------- */

.project-hero-left {
  grid-column: 1 / 3;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
  padding-top: 23px; 
  padding-bottom: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: none;
  background-image: repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
  background-size: 1px 20px;
  background-position: 100% 0;
  background-repeat: repeat-y;
  background-color: var(--color-bg-dark);
}

/* ----------------------------------------
   Right panel — transparent, 30px top gap, then dark via ::before
   Extends to viewport right edge
   ---------------------------------------- */

.project-hero-right {
  grid-column: 3 / -1;
  margin-right: calc(-1 * var(--container-gutter) - max(0px, (100vw - var(--container-max)) / 2));
  display: flex;
  flex-direction: column;
  padding-left: var(--card-pl);
  padding-top: var(--card-pt);
  padding-bottom: var(--card-pb);
  padding-right: var(--card-pr);
  background-color: var(--color-bg-dark);
}

.project-hero-image-block {
  max-width: 598px;
}

/* Image block — fixed Figma size: 598×542px 

.project-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ----------------------------------------
   Back navigation section
   ---------------------------------------- */

.section-project-back {
  --section-pt: 0px;
  background-color: var(--color-bg-dark);
}

.project-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  padding: var(--card-pt) var(--container-gutter);
  grid-column: 1 / -1;
  background: linear-gradient(
    to right,
    transparent 0 1px,
    var(--color-bg-dark) 1px calc(100% - 1px),
    transparent calc(100% - 1px) 100%
  );
}

.project-back-link:hover {
  opacity: 0.7;
}

.project-back-link svg {
  width: 18px;
  height: 18px;
}

/* ----------------------------------------
   Top block: label + logo
   ---------------------------------------- */

.project-hero-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-hero-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-body);
  color: var(--color-gray-text);
}

.project-hero-logo {
  display: block;
}

.project-logo-img,
.project-hero-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/* ----------------------------------------
   Bottom block: sector + tags + title
   ---------------------------------------- */

.project-hero-bottom {
  display: flex;
  flex-direction: column;
}

.project-hero-sector {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-body);
  color: var(--color-white);
  margin-bottom: 0;
}

.project-hero-tags {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-body);
  color: var(--color-gray-text);
  margin-bottom: 10px;
}

.project-hero-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-section-title);
  line-height: var(--lh-section-title);
  color: var(--color-white);
  max-width: 590px;
  margin-bottom: 0;
}

/* ----------------------------------------
   Spacer Section (Frame 412) — gap between hero and technologies
   ---------------------------------------- */

.section-project-spacer {
  background-color: var(--color-bg-dark);
  height: 107px;
}

.section-project-spacer .spacer-grid {
  height: 90px;
  background-image:
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
  background-size: 1px 20px, 1px 20px;
  background-position: 0% 0, 100% 0;
  background-repeat: repeat-y, repeat-y;
}

/* ----------------------------------------
   Section DNA — dark variant (single project)
   Layout: left = label+title / right = 3 equal rows with centered logos
   ---------------------------------------- */

.section-project-dna {
  background-color: var(--color-bg-dark);
  padding-top: 0;
  padding-bottom: 0;
}

/* Forza la top boundary a 0 — section-dna imposta --section-pt: 133px
   che sposterebbe linea e crosses nel mezzo del contenuto */
.section-project-dna .grid-boundary--top,
.section-project-dna .grid-crosses--top {
  top: 0;
}

/* Stretch layout to fill content */
.section-project-dna .dna-layout {
  align-items: stretch;
}

/* Left panel — border-right, full height */
.section-project-dna .dna-intro {
  border-right: none;
  background-image: repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
  background-size: 1px 20px;
  background-position: 100% 0;
  background-repeat: repeat-y;
  padding-top: var(--container-gutter);
  padding-bottom: var(--container-gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-project-dna .dna-label {
  color: var(--color-gray-text);
}

.section-project-dna .dna-title {
  color: var(--color-white);
  max-width: 430px;
}



/* Right panel — 3 equal rows */
.section-project-dna .dna-stats {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.section-project-dna .dna-stat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  min-height: 150px;
}

.section-project-dna .dna-stat + .dna-stat {
  border-top: none; /* override dna-stats.css light border (--color-grid-line-light) */
  position: relative;
  padding-top: 0;
}

/* Solid line within the container (.dna-stats width) */
.section-project-dna .dna-stat + .dna-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-grid-line-dark);
  pointer-events: none;
  z-index: 0;
}

/* Dashed extension beyond container right edge to viewport right edge */
.section-project-dna .dna-stat + .dna-stat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  right: calc(-1 * (var(--container-gutter) + max(0px, (100vw - var(--container-max)) / 2)));
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--color-grid-line-dark) 0px,
    var(--color-grid-line-dark) 10px,
    transparent 10px,
    transparent 20px
  );
  pointer-events: none;
  z-index: 1;
}

/* Tech name displayed like a logo — centrato */
.section-project-dna .dna-stat-value {
  color: var(--color-white);
  font-size: var(--fs-body-large);
  font-weight: var(--fw-medium);
  line-height: 1;
  padding-left: 0;
  text-align: center;
  margin-bottom: 0;
}

/* Se presente un'immagine logo dentro il valore */
.section-project-dna .dna-stat-value img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Gallery image per dna-stat--image */
.section-project-dna .dna-stat--image img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* ----------------------------------------
   Shared: Project text sections (Challenge + Obiettivi)
   Dark bg. Label at top, body text stacked below.
   Content spans cols 1–3 (75%). Col 4 empty on right.
   A solid full-height vertical divider at the 75% mark via ::before.
   ---------------------------------------- */

.section-project-challenge,
.section-project-obiettivi {
  background-color: var(--color-bg-dark);
  padding-top: 0;
  padding-bottom: 0;
}

#project-challenge > .grid-boundary--top {
  top: -30px;
}

#project-technologies > div:nth-child(-n+4) {
  display: none;
}

/* Linee tratteggiate verticali ai lati di carousel-nav su single-project, estese verso il footer */
.single-project #projects .carousel-nav {
  position: relative;
}



.single-project #projects .carousel-nav::before { left: 0; }
.single-project #projects .carousel-nav::after { right: 0; }

.section-project-challenge .grid-cross {display: none;}

.section-project-obiettivi::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to right,
    transparent 75%,
    var(--color-grid-line-dark) 75%,
    var(--color-grid-line-dark) calc(75% + 1px),
    transparent calc(75% + 1px)
  );
}

/* Sits in the container grid — spans cols 1–3 (75%), col 4 empty */
.project-text-block {
  grid-column: 1 / 4;
  padding-top: var(--container-gutter);
  padding-bottom: var(--container-gutter);
  padding-left: calc(var(--container-gutter) * 2);
  padding-right: calc(var(--container-gutter) * 2);
}

.project-text-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-body);
  color: var(--color-gray-text);
  margin-bottom: 20px;
}

.project-text-block p {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-body);
  color: var(--color-white);
  margin-bottom: 50px;
}

.project-text-block p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------
   Challenge — repeater items
   Ogni item: immagine sinistra + contenuto destra
   ---------------------------------------- */

/* Label block — solo padding-top, niente bottom */
.project-challenge-label-block {
  padding-bottom: 0;
}

/* Ogni item di testo (project-text-block.challenge-item) — bordo separatore */
.challenge-item {
  border-bottom: 1px solid var(--color-grid-line-dark);
}

.challenge-item:last-child {
  border-bottom: none;
}

/* Wrapper per grid-boundary top/bottom attorno al visual block */
.challenge-visual-wrapper {
  position: relative;
}

/* Visual block intercalato tra gli item */
.challenge-visual-block {
  grid-column: 1 / -1;
  overflow: hidden;
}

.challenge-visual-block .project-visual-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.challenge-item-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-body);
  color: var(--color-gray-text);
  margin-bottom: 10px;
}

/* Larghezza = 3 colonne su 4 del container */
.challenge-item-description {
  grid-column: 1 / 4;
}


/* ----------------------------------------
   Section Visual — dark bg, full-width project mockup image
   ---------------------------------------- */

.section-project-visual {
  background-color: var(--color-bg-dark);
  padding-top: 0;
  padding-bottom: 0;
}

.project-visual-block {
  grid-column: 1 / -1;
  min-height: 520px;
  overflow: hidden;
  background-color: var(--color-bg-dark-panel);
}

.project-visual-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.project-visual-placeholder {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: var(--fs-subtitle);
  color: var(--color-gray-text);
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */

/* ----------------------------------------
   Section Divider — dark bg, 2 horizontal lines only (no content)
   Sits between DNA and Challenge sections
   ---------------------------------------- */

.section-project-divider {
  background-color: var(--color-bg-dark);
  height: 105px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative; /* required: absolute children (grid-boundary) need a positioned parent */
}

@media (min-width: 769px) {
  .section-project-divider .grid-boundary--bottom {
    display: none;
  }
  .section-solution-block--reversed .solution-block-text {
      padding-left: 20px;
  }
}

.section-project-divider .divider-grid {
  height: 105px;
  background-image:
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
  background-size: 1px 20px, 1px 20px;
  background-position: 0% 0, 100% 0;
  background-repeat: repeat-y, repeat-y;
}

/* ----------------------------------------
   Section CTA — dark bg, centered "Start a project →"
   ---------------------------------------- */

.section-project-cta {
  background-color: var(--color-bg-dark);
  padding-top: 0;
  padding-bottom: 0;
}

/* Nasconde le linee verticali interne del grid overlay */
.cta-project {
  position: relative;
}

.cta-project::before {
  content: '';
  position: absolute;
  inset: 0 1px;
  background-color: var(--color-bg-dark);
  z-index: 0;
  pointer-events: none;
}

.cta-project > * {
  position: relative;
  z-index: 1;
}

.project-cta-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: var(--card-pt);
  padding-bottom: var(--card-pt);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-section-title);
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.project-cta-link:hover {
  opacity: 0.75;
}

.project-cta-arrow {
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .section-project-hero::before {
    display: none;
  }

  .section-project-hero .project-hero-wrap {
    padding-top: var(--header-height);
    min-height: 0;
  }

  .project-hero-left {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid var(--color-grid-line-dark);
    background-color: transparent;
    background: none;
  }

  .project-hero-right {
    grid-column: 1 / -1;
    margin-right: calc(-1 * var(--container-gutter));
    padding-top: 0;
    min-height: 300px;
  }

  .project-hero-image-block {
    background-color: var(--color-bg-dark-panel);
    min-height: 300px;
  }

  .project-hero-title {
    font-size: 36px;
    max-width: 100%;
  }
}

@media (max-width: 768px) { 
  
  .single-project #projects .carousel-nav::before,
  .single-project #projects .carousel-nav::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: -80px;
    width: 1px;
    pointer-events: none;
    background-image: repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 6px, transparent 6px, transparent 12px);
    background-size: 1px 100%;
    background-repeat: repeat-y;
  }
  
  #project-back {
    a {
      padding: var(--container-gutter);
      border-bottom: solid 1px var(--color-grid-line-dark);
    }
  }
  .section-project-hero .project-hero-wrap {
      padding-top: 0;
      min-height: 0;
  }
  .single-project #projects .carousel-crosses .grid-cross:nth-child(3) { 
    display: none!important;
  }
  .single-project {
    .project-cta-link {background: none!important;}
    #project-cta {background-color: transparent;
     
    }
  }
  .project-hero-left, .project-hero-right {
    padding-bottom: 40px;
    padding-top: 0px;
    width: 100%;
    padding-top: var(--container-gutter);
    padding-left: calc(var(--container-gutter) * 2);
    padding-right: calc(var(--container-gutter) * 2);
    background-color: transparent;
  }
.project-hero-left {
    padding-top:20px;
    .project-hero-label {line-height: normal;}
  }
  .project-hero-right {
    position: relative;
  }

  .project-hero-right::before,
  .project-hero-right::after {
    content: '';
    position: absolute;
    background-color: var(--color-grid-line-dark);
    pointer-events: none;
    z-index: 11;
    bottom: 0;
    width: 23px;
    height: 23px;
    background-image:
      linear-gradient(var(--color-grid-line-dark), var(--color-grid-line-dark)),
      linear-gradient(var(--color-grid-line-dark), var(--color-grid-line-dark));
    background-size: 4px 43px, 43px 4px;
    background-position: center, center;
    background-repeat: no-repeat;
    background-color: transparent;
    transform: translate(-50%, 50%);
  }

  #project-hero .project-hero-right::before {
    left: var(--container-gutter);
    display: none;
  }

  .project-hero-right::after {
    left: auto;
    right: 0;
    display: none;
  }
  .project-hero-image-block {
      width: auto;
  }

  .project-hero-title {
    font-size: 28px;
  }

  .project-text-block {
    grid-column: 1 / -1;
    padding-right: calc(var(--container-gutter) * 2);
    p {
      line-height: 30px;
    }
  }

  .project-visual-block,
  .project-visual-image,
  .project-visual-placeholder {
    min-height: 280px;
  }
  
  .single .dna-intro {
      padding-left: 0;
      padding-top: 112px;
  }

  .section-project-dna .dna-stat {
    position: relative;
    border-top: 1px solid var(--color-grid-line-dark);
    border-bottom: 1px solid var(--color-grid-line-dark);
  }
  #project-challenge .project-visual-block {
    padding-right: var(--container-gutter);
    padding-left: var(--container-gutter);
    background-color: transparent;
  }
  .challenge-item-description {
      grid-column: 1 / 5;
  }
  .section-project-dna .dna-stat:last-child {
    border-bottom: none;
  }
  .single-project .section-project-divider {
    display: none;
  }
  .project-text-block p {
      margin-bottom: 25px;
  }
  #project-hero > .grid-boundary {display: none;}
  .challenge-item{ border-bottom: none;}
  .section-project-dna .dna-stat::before,
  .section-project-dna .dna-stat::after,
  .section-project-dna .dna-stat + .dna-stat::before,
  .section-project-dna .dna-stat + .dna-stat::after {
    content: '';
    position: absolute;
    left: -12px;
    right: -12px;
    height: 24px;
    width: auto;
    pointer-events: none;
    z-index: 11;
    background-color: transparent;
    background-image:
      linear-gradient(var(--color-grid-line-dark), var(--color-grid-line-dark)),
      linear-gradient(var(--color-grid-line-dark), var(--color-grid-line-dark)),
      linear-gradient(var(--color-grid-line-dark), var(--color-grid-line-dark)),
      linear-gradient(var(--color-grid-line-dark), var(--color-grid-line-dark));
    background-size:
      3px 23px, 23px 3px,
      3px 23px, 23px 3px;
    background-position:
      11px 1px, 1px 11px,
      calc(100% - 11px) 1px, calc(100% - 1px) 11px;
    background-repeat: no-repeat;
  }

  .section-project-dna .dna-stat::before,
  .section-project-dna .dna-stat + .dna-stat::before {
    top: -12px;
    bottom: auto;
  }

  .section-project-dna .dna-stat::after,
  .section-project-dna .dna-stat + .dna-stat::after {
    top: auto;
    bottom: -12px;
  }
  .section-project-spacer {
      display: none;
  }
}

/* ----------------------------------------
   #project-technologies — rimuove la 2a linea verticale dashed (25%)
   Lascia 4 linee: 0%, 50%, 75%, 100%
   ---------------------------------------- */
#project-technologies.section--grid-dark::after {
  background-image:
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
  background-size: 1px 20px, 1px 20px, 1px 20px, 1px 20px;
  background-position: 0% 0, 50% 0, 75% 0, 100% 0;
  background-repeat: repeat-y, repeat-y, repeat-y, repeat-y;
}

/* ----------------------------------------
   #project-challenge — mostra solo linee 1, 4, 5
   Posizioni: 0%, 75%, 100%
   ---------------------------------------- */
#project-challenge.section--grid-dark::after {
  background-image:
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
  background-size: 1px 20px, 1px 20px;
  background-position: 0% 0, 100% 0;
  background-repeat: repeat-y, repeat-y;
}
@media (min-width: 768px) {
  .section-project-dna {
    border-top: solid 1px var(--color-grid-line-dark);
  }
  #project-challenge > .grid-boundary--top {
      top: 0px;
  }
}
@media (max-width: 768px) {
  
  .project-hero-image {
    width: 100%;
    height: 100%;

  }
  
  #project-technologies.section--grid-dark::after {
    background-image:
      repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
      repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
    background-size: 1px 20px, 1px 20px;
    background-position: 0% 0, 100% 0;
    background-repeat: repeat-y, repeat-y;
  }
 
 #project-challenge {
     margin-top: 80px;
     .grid-cross.grid-cross--dark, .grid-cross {
       display: block;
     }
     .grid-boundary--top, .grid-crosses--top {
         top: 0px;
     }
     .grid-crosses.grid-crosses--bottom {display: none!important;}
 }
 .single-project  #project-challenge {
   margin-top: 0px;
 }
  .single-project .cta-project {
    padding: 0px;
  }
  .single-project #project-cta .grid-boundary {
    display: none;
  }
  .single-project .cta-project:before{
    content: none;
  }
  .project-hero-sector {
      margin-top: 40px;
  }
  .section-project-dna .dna-intro {
    background-image: none;
  }
 .section-project-dna .dna-stats,
 .section-project-dna .dna-stat {
   background-color: transparent;
 }
 #projects > .container {
   padding-top: 0px;
   margin-top: 0px;
 }
  #project-cta > .grid-crosses--top .grid-cross.grid-cross--dark {
    display: block;
  }
  #project-cta > .grid-crosses--top .grid-cross:nth-child(1) { left: 20px; }
  #project-cta > .grid-crosses--top .grid-cross:nth-child(2) { left: auto; right: 0px; }
  .single-project #projects .carousel-nav {
      margin-top: 20px;
  }
  #projects .grid-boundary.grid-boundary--bottom.grid-boundary--dark {
    display: none;
  }
  
  .single-project #projects .section-case-studies .carousel-divider {
      top: 1px;
      position: relative;
  }
 .single-project #projects .section-case-studies .carousel-divider {
      width: 120%;
      left: -20px;
      position: relative;
      top: 1px;
  }
  #project-cta {
    .grid-cross.grid-cross--dark {
      display: block;
    }
  }
  #projects.section-case-studies .carousel-divider {
      background-color: var(--color-grid-line-dark);
      width: 130%;
      left: -31px;
      position: relative;
      top: 1px;
  }
  .project-cta-link {
    background-image:
      repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px),
      repeating-linear-gradient(to bottom, var(--color-grid-line-dark) 0px, var(--color-grid-line-dark) 10px, transparent 10px, transparent 20px);
    background-size: 1px 100%, 1px 100%;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat, no-repeat;
  }
}
