body {
  color: #111;
  background-color: var(--page-background-color);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:root {
  --white: white;
  --black: black;
  --header-nav-bkg: rgba(255, 255, 255, 0.85);
  --badge-square-color: black;
  --page-background-color: white;
  --project-menu-bkg: white;
  --font-family-mono: 'RobotoMono-VF', monospace;
  --font-family-base: 'Inter-VF', sans-serif;
}

.l-container {
  --l-max: 1200px;
  --l-pad: clamp(16px, 4vw, 48px);
  margin-inline: auto;
  margin: 0 calc(1em + 2vw);
}

.l-grid {
  --l-gap: clamp(12px, 2vw, 24px);
  display: grid;
  gap: var(--l-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.l-col-1 {
  grid-column: span 1;
}

.l-col-2 {
  grid-column: span 2;
}

.l-col-3 {
  grid-column: span 3;
}

.l-col-4 {
  grid-column: span 4;
}

.l-col-5 {
  grid-column: span 5;
}

.l-col-6 {
  grid-column: span 6;
}

.l-col-7 {
  grid-column: span 7;
}

.l-col-8 {
  grid-column: span 8;
}

.l-col-9 {
  grid-column: span 9;
}

.l-col-10 {
  grid-column: span 10;
}

.l-col-11 {
  grid-column: span 11;
}

.l-col-12 {
  grid-column: span 12;
}

.l-start-1 {
  grid-column-start: 1;
}

.l-start-2 {
  grid-column-start: 2;
}

.l-start-3 {
  grid-column-start: 3;
}

.l-start-4 {
  grid-column-start: 4;
}

.l-start-5 {
  grid-column-start: 5;
}

.l-start-6 {
  grid-column-start: 6;
}

.l-start-7 {
  grid-column-start: 7;
}

.l-start-8 {
  grid-column-start: 8;
}

.l-start-9 {
  grid-column-start: 9;
}

.l-start-10 {
  grid-column-start: 10;
}

.l-start-11 {
  grid-column-start: 11;
}

.l-start-12 {
  grid-column-start: 12;
}

@media (max-width: 639.98px) {
  .sm-col-1 {
    grid-column: span 1;
  }
  .sm-col-2 {
    grid-column: span 2;
  }
  .sm-col-3 {
    grid-column: span 3;
  }
  .sm-col-4 {
    grid-column: span 4;
  }
  .sm-col-5 {
    grid-column: span 5;
  }
  .sm-col-6 {
    grid-column: span 6;
  }
  .sm-col-7 {
    grid-column: span 7;
  }
  .sm-col-8 {
    grid-column: span 8;
  }
  .sm-col-9 {
    grid-column: span 9;
  }
  .sm-col-10 {
    grid-column: span 10;
  }
  .sm-col-11 {
    grid-column: span 11;
  }
  .sm-col-12 {
    grid-column: span 12;
  }
  .sm-start-1 {
    grid-column-start: 1;
  }
  .sm-start-2 {
    grid-column-start: 2;
  }
  .sm-start-3 {
    grid-column-start: 3;
  }
  .sm-start-4 {
    grid-column-start: 4;
  }
  .sm-start-5 {
    grid-column-start: 5;
  }
  .sm-start-6 {
    grid-column-start: 6;
  }
  .sm-start-7 {
    grid-column-start: 7;
  }
  .sm-start-8 {
    grid-column-start: 8;
  }
  .sm-start-9 {
    grid-column-start: 9;
  }
  .sm-start-10 {
    grid-column-start: 10;
  }
  .sm-start-11 {
    grid-column-start: 11;
  }
  .sm-start-12 {
    grid-column-start: 12;
  }
  .l-grid {
    grid-template-columns: 1fr;
  }
  .l-col-1,
  .l-col-2,
  .l-col-3,
  .l-col-4,
  .l-col-5,
  .l-col-6,
  .l-col-7,
  .l-col-8,
  .l-col-9,
  .l-col-10,
  .l-col-11,
  .l-col-12 {
    grid-column: 1/-1;
  }
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .md-col-1 {
    grid-column: span 1;
  }
  .md-col-2 {
    grid-column: span 2;
  }
  .md-col-3 {
    grid-column: span 3;
  }
  .md-col-4 {
    grid-column: span 4;
  }
  .md-col-5 {
    grid-column: span 5;
  }
  .md-col-6 {
    grid-column: span 6;
  }
  .md-col-7 {
    grid-column: span 7;
  }
  .md-col-8 {
    grid-column: span 8;
  }
  .md-col-9 {
    grid-column: span 9;
  }
  .md-col-10 {
    grid-column: span 10;
  }
  .md-col-11 {
    grid-column: span 11;
  }
  .md-col-12 {
    grid-column: span 12;
  }
  .md-start-1 {
    grid-column-start: 1;
  }
  .md-start-2 {
    grid-column-start: 2;
  }
  .md-start-3 {
    grid-column-start: 3;
  }
  .md-start-4 {
    grid-column-start: 4;
  }
  .md-start-5 {
    grid-column-start: 5;
  }
  .md-start-6 {
    grid-column-start: 6;
  }
  .md-start-7 {
    grid-column-start: 7;
  }
  .md-start-8 {
    grid-column-start: 8;
  }
  .md-start-9 {
    grid-column-start: 9;
  }
  .md-start-10 {
    grid-column-start: 10;
  }
  .md-start-11 {
    grid-column-start: 11;
  }
  .md-start-12 {
    grid-column-start: 12;
  }
}
@media (min-width: 1024px) {
  .lg-col-1 {
    grid-column: span 1;
  }
  .lg-col-2 {
    grid-column: span 2;
  }
  .lg-col-3 {
    grid-column: span 3;
  }
  .lg-col-4 {
    grid-column: span 4;
  }
  .lg-col-5 {
    grid-column: span 5;
  }
  .lg-col-6 {
    grid-column: span 6;
  }
  .lg-col-7 {
    grid-column: span 7;
  }
  .lg-col-8 {
    grid-column: span 8;
  }
  .lg-col-9 {
    grid-column: span 9;
  }
  .lg-col-10 {
    grid-column: span 10;
  }
  .lg-col-11 {
    grid-column: span 11;
  }
  .lg-col-12 {
    grid-column: span 12;
  }
  .lg-start-1 {
    grid-column-start: 1;
  }
  .lg-start-2 {
    grid-column-start: 2;
  }
  .lg-start-3 {
    grid-column-start: 3;
  }
  .lg-start-4 {
    grid-column-start: 4;
  }
  .lg-start-5 {
    grid-column-start: 5;
  }
  .lg-start-6 {
    grid-column-start: 6;
  }
  .lg-start-7 {
    grid-column-start: 7;
  }
  .lg-start-8 {
    grid-column-start: 8;
  }
  .lg-start-9 {
    grid-column-start: 9;
  }
  .lg-start-10 {
    grid-column-start: 10;
  }
  .lg-start-11 {
    grid-column-start: 11;
  }
  .lg-start-12 {
    grid-column-start: 12;
  }
}
@font-face {
  font-family: "Inter-VF";
  src: url("https://ik.imagekit.io/patrikgarde/Inter-VariableFont_opsz,wght.woff2") format("woff2"), url("https://ik.imagekit.io/patrikgarde/Inter-VariableFont_opsz,wght.woff") format("woff");
  font-weight: 100 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoMono-VF";
  src: url("https://ik.imagekit.io/patrikgarde/RobotoMono-VariableFont_wght.woff2") format("woff2"), url("https: //ik.imagekit.io/patrikgarde/RobotoMono-VariableFont_wght.woff") format("woff");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: calc(15px + 0.390625vw);
  line-height: 1.4;
  font-family: var(--font-family-base);
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  font-style: normal;
  font-weight: 320;
  margin: 0;
  padding: 0;
  transition: line-height 0.4s, font-size 0.4s;
  letter-spacing: -0.0135em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 1em;
}

h1,
.h1 {
  line-height: 1.15;
  font-size: 1.85em;
}

h2,
.h2 {
  font-size: 1.6em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.4em;
  line-height: 1.25;
  font-weight: 350;
}

h4,
.h4 {
  font-size: 1.2em;
  line-height: 1.35;
  font-weight: 350;
}

h5,
.h5 {
  font-size: 1.1em;
  line-height: 1.35;
  font-weight: 400;
}

h6,
.h6 {
  font-size: 1.05em;
  line-height: 1.35;
  font-weight: 450;
}

p {
  -webkit-font-smoothing: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.badge {
  font-family: var(--font-family-mono);
}

header.nav {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin: 0;
  align-items: center;
  height: 4vw;
  min-height: 70px;
  border-bottom: 0.75px solid transparent;
  transition: border-color 0.3s;
  background-color: transparent;
  letter-spacing: -0.011em;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.25vw;
}
header.nav.scrolled {
  border-color: #000;
  background-color: var(--header-nav-bkg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@media (min-width: 992px) {
  header.nav {
    font-size: 0.9em;
  }
}
header.nav .l-container {
  width: 100%;
  max-width: none;
}
header.nav .l-grid {
  align-items: center;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
header.nav .nav-left {
  grid-column: 1/span 4;
}
header.nav .project-title {
  grid-column: 5/span 4;
  justify-self: center;
}
header.nav .nav-right {
  grid-column: 9/-1;
  justify-self: stretch;
}
@media (max-width: 639.98px) {
  header.nav .nav-left {
    grid-column: 1/span 7;
  }
  header.nav .project-title {
    display: none;
  }
  header.nav .nav-right {
    grid-column: 8/-1;
    justify-content: flex-end;
  }
}
header.nav .nav-left,
header.nav .nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header.nav .nav-right {
  justify-content: flex-end;
}
header.nav .nav a.is-active {
  text-decoration: underline;
}
header.nav .project-title {
  display: none;
  text-align: center;
}
@media (min-width: 992px) {
  header.nav .project-title {
    display: block;
  }
}
header.nav .nav-btn {
  display: flex;
  text-decoration: none;
  color: #000;
  background-color: transparent;
  border: none;
  margin: 0;
  border-radius: 0.3em;
  align-items: center;
  padding: 0.5em;
  transition: all 0.5s;
}
@media (min-width: 992px) {
  header.nav .nav-btn {
    margin-left: -0.4em;
    font-size: 1.1em;
  }
}
header.nav .nav-btn.btn-bg {
  margin-left: -0.5em;
}
header.nav .nav-btn.btn-bg img {
  width: 1.75em;
  height: auto;
  margin-right: 0.5em;
}
header.nav .nav-btn:hover {
  background: #ccff00;
}
header.nav .btn-projects {
  position: relative;
}
header.nav .btn-projects span {
  border-radius: 0.2em;
  margin-right: 0.2em;
  display: inline-block;
  box-sizing: border-box;
  border: solid 2.5px black;
  transition: opacity 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  height: 26px;
  width: 16px;
}
header.nav .btn-projects span:nth-of-type(2) {
  margin-right: 0.5em;
}
header.nav .btn-projects::before, header.nav .btn-projects::after {
  content: "";
  position: absolute;
  left: 0.35em;
  top: 50%;
  width: 1.3em;
  height: 2.5px;
  background: #000;
  border-radius: 0.2em;
  opacity: 0;
  transform: translateY(-50%) translateX(25%) scale(1.2);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
header.nav .btn-projects::before {
  transform: translateY(-50%) translateX(25%) rotate(45deg) scale(1.2);
}
header.nav .btn-projects::after {
  transform: translateY(-50%) translateX(25%) rotate(-45deg) scale(1.2);
}
header.nav .btn-projects.is-open {
  color: white;
  background: black;
}
header.nav .btn-projects.is-open span {
  opacity: 0;
}
header.nav .btn-projects.is-open::before, header.nav .btn-projects.is-open::after {
  opacity: 1;
  transform: translateY(-50%) translateX(25%) rotate(45deg) scale(1.2);
  background: white;
}
header.nav .btn-projects.is-open::after {
  transform: translateY(-50%) translateX(25%) rotate(-45deg) scale(1.2);
}

.btn-hamburger {
  z-index: 5;
}

#hamburger,
#hamburger span {
  display: inline-block;
  box-sizing: border-box;
}

#hamburger {
  position: relative;
  width: 2.5em;
  height: 1.75em;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
#hamburger:focus:not(:focus-visible) {
  outline: none;
}
#hamburger span {
  background: #000;
  border-radius: 0.2em;
  width: 100%;
  height: 3px;
  position: absolute;
}
#hamburger span:nth-of-type(1) {
  top: 0;
  left: 0;
  transition: top 0.3s;
}
#hamburger span:nth-of-type(2) {
  top: 43%;
  left: 0;
  transition: opacity 0.3s;
}
#hamburger span:nth-of-type(3) {
  bottom: 0;
  left: 0;
  transition: bottom 0.3s;
}
#hamburger.active span:nth-of-type(1) {
  top: 43%;
  transform: rotate(-45deg);
  transition: top 0.3s cubic-bezier(0.36, -0.42, 0.68, -0.56), transform 0.3s 0.3s;
}
#hamburger.active span:nth-of-type(2) {
  opacity: 0;
  transition: opacity 0.05s 0.3s;
}
#hamburger.active span:nth-of-type(3) {
  top: 43%;
  transform: rotate(45deg);
  transition: bottom 0.3s cubic-bezier(0.36, -0.42, 0.68, -0.56), transform 0.3s 0.3s;
}

.hamburger-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  display: flex;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9607843137);
  flex-direction: column;
  justify-content: center;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}
.hamburger-menu menu {
  display: flex;
  flex-direction: column;
  margin: 15vh auto auto;
  justify-content: center;
  align-self: top;
  padding: 0;
  width: 70vw;
  text-align: center;
}
@media (min-width: 992px) {
  .hamburger-menu menu {
    width: 50%;
  }
}
.hamburger-menu menu a {
  color: #000;
  padding: 1rem;
  font-size: 1.4em;
  text-decoration: none;
  line-height: 1.5;
  border-bottom: solid 0.75px black;
}
.hamburger-menu menu a:hover {
  background: black;
  color: white;
}

.hamburger-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s;
}

.projects-menu {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.56);
  top: 70px;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}
.projects-menu .project-card-scroll {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  background: var(--project-menu-bkg);
  margin: 0;
  padding: 1.5em 0 2em 2em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.28);
  box-shadow: 0 2em 2em rgba(0, 0, 0, 0.1);
  border-top: solid 1px rgba(0, 0, 0, 0.2196078431);
}

.projects-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.projects-menu.is-open .project-card-scroll {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer-nav {
  margin-bottom: 1rem;
}
.footer-nav a {
  font-size: 1.3em;
  text-decoration: none;
  line-height: 1;
  padding: 0.5em;
  border-bottom: solid 1px black;
  display: block;
}
.footer-nav a:hover {
  background: black;
  color: white;
}
@media (min-width: 576px) {
  .footer-nav a {
    display: inline-block;
    border: none;
    border-radius: 0.3em;
  }
}

main {
  flex: 1 0 auto;
}

.email-link {
  border: solid 1px black;
  border-radius: 0.3em;
  padding: 0.12em 0.5em;
  text-decoration: none;
}
.email-link:hover {
  background-color: black;
  color: white;
  text-decoration: none;
}

[data-aos] {
  will-change: transform, opacity;
}

.badge {
  background: transparent;
  border: solid 1px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 450;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1em;
}
.badge:before {
  content: "";
  display: inline-block;
  background: var(--badge-square-color);
  height: 8px;
  width: 8px;
  border-radius: 2px;
  margin-right: 10px;
}

.color-faq {
  display: flex;
  gap: 1em;
  align-items: center;
}
.color-faq .color-faq-title {
  font-size: 1em;
  font-weight: 400;
}
.color-faq .color-faq-title .color-info {
  margin-bottom: 1em;
  background-color: #CCFF00;
}
.color-faq .color-faq-title .color-info h3 {
  padding: 1em;
  font-size: 1.1em;
  margin: 0;
}
.color-faq .color-faq-title .color-info div {
  background-color: #e3e1e1;
  font-size: 14px;
  padding: 0.5em;
  color: gray;
}
.color-faq p {
  font-size: 1rem;
}
.color-faq strong {
  display: block;
  font-size: 1.1em;
}

.project-block {
  padding-top: 4em;
  padding-bottom: 2em;
  overflow: hidden;
}
.project-block p {
  margin-bottom: 0.5em;
}
.project-block img {
  margin-left: -1em;
  width: 108%;
  height: auto;
}
@media (min-width: 768px) {
  .project-block img {
    width: 106%;
    margin-left: -1.1em;
  }
}
@media (min-width: 992px) {
  .project-block img {
    width: 105%;
    margin-left: -1.5em;
  }
}

code {
  display: block;
  font-family: var(--font-family-mono);
  font-weight: 400;
  letter-spacing: -0.055em;
  margin-bottom: 1em;
  font-size: 0.9em;
  line-height: 1.35;
}

ul.code {
  font-family: var(--font-family-mono);
  font-size: 0.7em;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 400;
  list-style-type: square;
  margin: 0;
  margin-bottom: 1.5em;
}

.index .btn-projects {
  display: none !important;
}
.index .intro {
  margin: 0 0 2.5em;
}
.index .intro .title {
  font-weight: 500;
  margin: 3em 0 0.5em 0;
}
.index .intro .subtitle {
  opacity: 0.45;
}
.index .intro .plant {
  margin-top: -70px;
}
.index .about {
  margin-top: 2.5em;
  font-size: calc(1em + 0.3vw);
  font-size: calc(1.05em + 0.2vw);
}
.index .about p {
  margin-bottom: 1em;
  -webkit-font-smoothing: auto;
}

.background .intro {
  margin-top: 3em;
}
.background .intro .headshot {
  width: 100%;
  border-radius: 50%;
}
.background .intro h1 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .background .intro h1 {
    margin-top: 2em;
  }
}

.projects .project-header .project-card {
  width: 100%;
  transform: none;
  height: 60vh;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
}
.projects .project-header .project-card:hover {
  transform: none;
}
.projects .project-header .project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--project-header-bg-image);
  background-position: right bottom;
  background-size: cover;
  opacity: 0;
  transition: all 0.6s ease;
}
@media (min-width: 768px) {
  .projects .project-header .project-card::before {
    background-image: var(--project-header-bg-image-lg, var(--project-header-bg-image));
  }
}
.projects .project-header .project-card.bg-loaded::before {
  opacity: 1;
}
.projects .project-header .project-card > * {
  position: relative;
  z-index: 1;
}
.projects .project-header .project-card .card-title {
  text-shadow: none;
  font-size: 1.7em;
}
.projects .intro {
  border-bottom: solid 0.75px black;
  padding: 2.5em 1em;
}
.projects .intro h1 {
  margin: 0;
  font-size: 1.4em;
  line-height: 1.25;
  font-weight: 350;
}
.projects .description {
  padding: 2.5em 1em;
  border-bottom: solid 0.75px black;
}
.projects .description h2 {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.35;
  font-weight: 400;
}

footer {
  margin-top: 4em;
  padding-block: 18px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}
footer .footer-legal {
  margin-top: 1em;
}

.project-card-scroll {
  scrollbar-width: none;
  align-items: center;
  height: auto;
  padding-top: 1.5em;
  padding-bottom: 3vw;
  display: flex;
  overflow: scroll;
  margin-left: 4vw;
}
.project-card-scroll .card-link {
  color: #000;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  color: #000;
  background-color: #cecece;
  margin-left: 0;
  margin-right: 6vw;
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.0901960784);
  transition: ease all 0.5s;
  margin-right: 4vw;
  border-radius: 4vw;
  width: 65vw;
  height: 100vw;
}
@media (min-width: 576px) {
  .project-card {
    width: 50vw;
    height: 70vw;
    border-radius: 3vw;
    margin-right: 4vw;
  }
}
@media (min-width: 768px) {
  .project-card {
    width: 40vw;
    height: 55vw;
    border-radius: 3vw;
    margin-right: 3vw;
  }
}
@media (min-width: 992px) {
  .project-card {
    width: 35vw;
    height: 47vw;
    border-radius: 2vw;
    margin-right: 2.5vw;
  }
}
@media (min-width: 1200px) {
  .project-card {
    width: 28vw;
    height: 40vw;
    border-radius: 2vw;
    margin-right: 2.5vw;
  }
}
.project-card .card-image {
  align-items: start;
  margin: 1.5em auto auto 1.5em;
}
.project-card .card-image img {
  width: 100%;
  height: auto;
}
.project-card.etags {
  background-color: #e0dfd8;
  background-image: url("https://ik.imagekit.io/patrikgarde/etags-sm.avif");
  background-position: 50%;
  background-size: cover;
}
.project-card.etags .card-image {
  margin-left: 0;
  width: 7vw;
  max-width: 70px;
  min-width: 50px;
}
.project-card.etags .card-title {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.53);
}
.project-card.healthnook {
  background-color: #e0dfd8;
  background-image: url("https://ik.imagekit.io/patrikgarde/healthnook-sm.avif");
  background-position: 50%;
  background-size: cover;
}
.project-card.healthnook .card-image {
  width: 5vw;
  min-width: 50px;
}
.project-card.healthnook .card-title {
  color: black;
}
.project-card.healthnook .card-tags .tag {
  color: black;
  border-color: black;
  background: rgba(255, 255, 255, 0.15);
}
.project-card.skn-labs {
  background-color: #e0dfd8;
  background-image: url("https://ik.imagekit.io/patrikgarde/skn-labs-sm2.avif");
  background-position: 50%;
  background-size: cover;
}
.project-card.skn-labs .card-image {
  width: 7vw;
  min-width: 70px;
  margin: 1.5em 1em auto auto;
}
.project-card.skn-labs .card-title {
  color: black;
}
.project-card.skn-labs .card-tags .tag {
  color: black;
  border-color: black;
  background: rgba(255, 255, 255, 0.15);
}
.project-card.real-ecig {
  background-color: #e0dfd8;
  background-image: url("https://ik.imagekit.io/patrikgarde/real-ecig-sm.avif");
  background-position: 50%;
  background-size: cover;
}
.project-card.real-ecig .card-image {
  width: 4vw;
  min-width: 40px;
}
.project-card.partzilla {
  background-color: #e0dfd8;
  background-image: url("https://ik.imagekit.io/patrikgarde/partzilla/hero-sm.avif");
  background-position: 50%;
  background-size: cover;
}
.project-card.partzilla .card-image {
  width: 4vw;
  min-width: 40px;
  display: flex;
}
.project-card.partzilla .card-image img {
  margin-right: 0.25em;
}
.project-card:hover {
  transform: translateY(-1em);
  transition: transform 0.4s;
}

.card-title {
  padding-left: 0.72em;
  font-size: 1.5em;
  font-weight: 500;
  color: white;
  letter-spacing: -0.014em;
  line-height: 1.3;
}

.card-tags {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.25em;
  margin-bottom: 1em;
  margin-left: 0;
  padding-left: 1em;
  display: flex;
  position: relative;
  inset: auto auto 0 0;
}
.card-tags .tag {
  color: #fff;
  border: 1px solid #ffffff;
  display: block;
  align-items: center;
  margin-right: 0.1em;
  display: flex;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.19);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-width: 0.75px;
  border-radius: 0.5em;
  margin-right: 0.5em;
  font-size: 0.55em;
  padding: 0.65em 0.8em;
  font-weight: 600;
}
@media (min-width: 576px) {
  .card-tags .tag {
    font-size: calc(10px + 0.15em);
    padding: 0.45em 0.8em;
    font-weight: 500;
  }
}

.card-tags-dark .tag {
  color: rgb(0, 0, 0);
  border-color: rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.02);
}
@media (min-width: 576px) {
  .card-tags-dark .tag {
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.5);
  }
}

.badge-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.5vw;
  margin-bottom: 1vw;
  margin-left: 0;
  padding-left: 3vw;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
}
.badge-block .badge {
  color: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  margin-right: 0.75vw;
  padding: 0.4vw 0.5vw;
  display: block;
}
.badge-block .badge .hp {
  font-size: 1vw;
}
