/* ============================================================ TECH */
.tech{position:relative;overflow:hidden;}
.tech__blueprint{position:absolute;inset:0;pointer-events:none;}
.tech__blueprint svg{width:100%;height:100%;color:var(--c-off-white);opacity:.08;}
@media (max-width:767px){.tech__blueprint svg{opacity:.05;}}
.tech .wrap{position:relative;z-index:1;}

.tech__grid{
  margin-top:var(--s-9);display:grid;gap:0;
  border-top:var(--border) solid var(--line);
}
@media (min-width:768px){
  .tech__grid{grid-template-columns:repeat(2,1fr);
    column-gap:var(--gutter);}
}
@media (min-width:1024px){.tech__grid{grid-template-columns:repeat(3,1fr);}}
.tech__item{padding-block:var(--s-7);border-bottom:var(--border) solid var(--line);}
@media (min-width:1024px){
  .tech__item{padding-right:var(--s-7);}
}
.tech__ref{font-family:var(--font-mono);font-weight:500;font-size:var(--fs-micro);
  letter-spacing:.12em;color:var(--accent);}
.tech__title{margin-top:var(--s-4);font-family:var(--font-display);font-weight:600;
  font-size:1.05rem;text-transform:uppercase;letter-spacing:-.005em;}
.tech__desc{margin-top:var(--s-3);font-size:var(--fs-sm);color:var(--ink-soft);max-width:40ch;}
