/* [project]/cello-web/styles/blog-post.module.css [client] (css) */
.blog-post-module__zXv_cq__page {
  --black: #0c0c0c;
  --ink: #111;
  --paper: #fff;
  --cream: #f3f1ec;
  --mist: #ededee;
  --lime: #c8f23a;
  --magenta: #ff2bb6;
  --violet: #7c5cff;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body), "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

.blog-post-module__zXv_cq__page * {
  box-sizing: border-box;
}

.blog-post-module__zXv_cq__logo {
  z-index: 100;
  width: 110px;
  height: 64px;
  display: inline-flex;
  position: absolute;
  top: 24px;
  left: 24px;
}

.blog-post-module__zXv_cq__logo .blog-post-module__zXv_cq__l1, .blog-post-module__zXv_cq__logo .blog-post-module__zXv_cq__l2 {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display), "Anton", sans-serif;
  letter-spacing: .02em;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  display: flex;
  position: absolute;
  inset: 0;
}

.blog-post-module__zXv_cq__logo .blog-post-module__zXv_cq__l1 {
  transform: translate(0);
}

.blog-post-module__zXv_cq__logo .blog-post-module__zXv_cq__l2 {
  transform: translate(6px, 6px);
}

.blog-post-module__zXv_cq__logo .blog-post-module__zXv_cq__ltext {
  z-index: 2;
  position: relative;
}

.blog-post-module__zXv_cq__nav {
  z-index: 100;
  align-items: center;
  gap: 6px;
  display: flex;
  position: fixed;
  top: 24px;
  right: 24px;
}

.blog-post-module__zXv_cq__nav a {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body), "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  border-radius: 2px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s, background .15s;
  display: inline-block;
}

.blog-post-module__zXv_cq__nav a:hover {
  background: #1f1f1f;
  transform: translateY(-1px);
}

.blog-post-module__zXv_cq__ctaNav {
  margin-left: 8px;
  padding: 14px 28px !important;
}

.blog-post-module__zXv_cq__langToggle {
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 800;
  transition: background .15s, color .15s, transform .15s;
  display: inline-flex;
}

.blog-post-module__zXv_cq__langToggle:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.blog-post-module__zXv_cq__article {
  max-width: 820px;
  margin: 0 auto;
  padding: 180px 32px 80px;
}

.blog-post-module__zXv_cq__backLink {
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.blog-post-module__zXv_cq__backLink svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.blog-post-module__zXv_cq__backLink:hover {
  color: var(--magenta);
}

.blog-post-module__zXv_cq__backLink:hover svg {
  transform: translateX(-4px);
}

.blog-post-module__zXv_cq__articleHeader {
  margin-bottom: 56px;
}

.blog-post-module__zXv_cq__title {
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 24px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  display: inline-block;
  position: relative;
}

.blog-post-module__zXv_cq__title:before {
  content: "";
  border-radius: 2px;
  width: 8px;
  height: .72em;
  position: absolute;
  top: .18em;
  left: -18px;
}

.blog-post-module__zXv_cq__title.blog-post-module__zXv_cq__lime:before {
  background: var(--lime);
}

.blog-post-module__zXv_cq__title.blog-post-module__zXv_cq__magenta:before {
  background: var(--magenta);
}

.blog-post-module__zXv_cq__title.blog-post-module__zXv_cq__violet:before {
  background: var(--violet);
}

.blog-post-module__zXv_cq__lead {
  font-family: var(--font-body), "Manrope", sans-serif;
  color: #111111b3;
  max-width: 700px;
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.5;
}

.blog-post-module__zXv_cq__articleBody {
  font-family: var(--font-body), "Manrope", sans-serif;
}

.blog-post-module__zXv_cq__paragraphBlock {
  margin: 0 0 28px;
}

.blog-post-module__zXv_cq__body {
  font-family: var(--font-body), "Manrope", sans-serif;
  color: var(--ink);
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.blog-post-module__zXv_cq__body:last-child {
  margin-bottom: 0;
}

.blog-post-module__zXv_cq__bullet {
  font-family: var(--font-body), "Manrope", sans-serif;
  color: var(--ink);
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 8px;
  padding-left: 4px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  display: flex;
}

.blog-post-module__zXv_cq__bulletDot {
  color: var(--magenta);
  flex-shrink: 0;
  font-weight: 800;
  line-height: 1.55;
}

.blog-post-module__zXv_cq__subhead {
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 48px 0 20px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
}

.blog-post-module__zXv_cq__sources {
  background: var(--mist);
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
  margin-top: 64px;
  padding: 32px;
}

.blog-post-module__zXv_cq__sources h3 {
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
}

.blog-post-module__zXv_cq__sources p {
  font-family: var(--font-body), "Manrope", sans-serif;
  color: #111c;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-post-module__zXv_cq__sourceLink {
  font-family: var(--font-body), "Manrope", sans-serif;
  color: var(--violet);
  word-break: break-all;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.blog-post-module__zXv_cq__sourceLink:hover {
  color: var(--magenta);
}

.blog-post-module__zXv_cq__footer {
  background: var(--paper);
  color: #111111a6;
  border-top: 1px solid #11111114;
  padding: 32px 80px;
}

.blog-post-module__zXv_cq__footerInner {
  max-width: 1180px;
  font-family: var(--font-body), "Manrope", sans-serif;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.blog-post-module__zXv_cq__footerInner a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

.blog-post-module__zXv_cq__footerInner a:hover {
  color: var(--magenta);
}

@media (max-width: 900px) {
  .blog-post-module__zXv_cq__article {
    padding: 130px 20px 60px;
  }

  .blog-post-module__zXv_cq__footer {
    padding: 24px;
  }

  .blog-post-module__zXv_cq__footerInner {
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

  .blog-post-module__zXv_cq__nav a {
    padding: 10px 14px;
    font-size: 11px;
  }

  .blog-post-module__zXv_cq__ctaNav {
    padding: 10px 18px !important;
  }
}

/* [next]/internal/font/google/anton_bd1ba059.module.css [client] (css) */
@font-face {
  font-family: Anton;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/0e7b7e0b829e3eb9-s.0taayl_akrchu.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Anton;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/daf789e4474d0d90-s.02gqgcrlsvm4~.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Anton;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/9e9f04e3c37952ab-s.p.07uvnuj.ona6k.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Anton Fallback;
  src: local(Arial);
  ascent-override: 129.7%;
  descent-override: 36.29%;
  line-gap-override: 0.0%;
  size-adjust: 90.69%;
}

.anton_bd1ba059-module__ESVIXG__className {
  font-family: Anton, Anton Fallback;
  font-style: normal;
  font-weight: 400;
}

.anton_bd1ba059-module__ESVIXG__variable {
  --font-display: "Anton", "Anton Fallback";
}

/* [next]/internal/font/google/manrope_b122778c.module.css [client] (css) */
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a342834df7752944-s.10ev4cu2inrn-.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/a342834df7752944-s.10ev4cu2inrn-.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/a342834df7752944-s.10ev4cu2inrn-.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/a342834df7752944-s.10ev4cu2inrn-.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/a342834df7752944-s.10ev4cu2inrn-.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Manrope Fallback;
  src: local(Arial);
  ascent-override: 103.31%;
  descent-override: 29.07%;
  line-gap-override: 0.0%;
  size-adjust: 103.19%;
}

.manrope_b122778c-module__9DcNRa__className {
  font-family: Manrope, Manrope Fallback;
  font-style: normal;
}

.manrope_b122778c-module__9DcNRa__variable {
  --font-body: "Manrope", "Manrope Fallback";
}

/* [project]/cello-web/components/layout/Layout.module.css [client] (css) */
.Layout-module__dHnEZq__logo {
  z-index: 100;
  width: 110px;
  height: 64px;
  display: inline-flex;
  position: absolute;
  top: 24px;
  left: 24px;
}

.Layout-module__dHnEZq__logo .Layout-module__dHnEZq__l1, .Layout-module__dHnEZq__logo .Layout-module__dHnEZq__l2 {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display), "Anton", sans-serif;
  letter-spacing: .02em;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  display: flex;
  position: absolute;
  inset: 0;
}

.Layout-module__dHnEZq__logo .Layout-module__dHnEZq__l1 {
  transform: translate(0);
}

.Layout-module__dHnEZq__logo .Layout-module__dHnEZq__l2 {
  transform: translate(6px, 6px);
}

.Layout-module__dHnEZq__logo .Layout-module__dHnEZq__ltext {
  z-index: 2;
  position: relative;
}

.Layout-module__dHnEZq__nav {
  z-index: 100;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(4, auto);
  align-items: center;
  gap: 6px;
  display: grid;
  position: fixed;
  top: 24px;
  right: 24px;
}

.Layout-module__dHnEZq__nav a {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body), "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  border-radius: 2px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s, background .15s;
  display: inline-block;
}

.Layout-module__dHnEZq__nav a:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-1px);
}

.Layout-module__dHnEZq__nav a.Layout-module__dHnEZq__navCentered {
  text-align: center;
  justify-self: stretch;
  width: 100%;
  display: block;
}

.Layout-module__dHnEZq__ctaNav {
  grid-row: 1 / span 2;
  align-self: stretch;
  align-items: center;
  margin-left: 8px;
  padding: 0 28px !important;
  display: flex !important;
}

.Layout-module__dHnEZq__langToggle {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 2px;
  margin-left: 4px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .15s, background .15s;
  display: inline-block;
}

.Layout-module__dHnEZq__langToggle:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-1px);
}

.Layout-module__dHnEZq__hamburger {
  z-index: 200;
  background: var(--ink);
  cursor: pointer;
  border: none;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 0;
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
}

.Layout-module__dHnEZq__hamburger span {
  background: var(--paper);
  transform-origin: center;
  border-radius: 2px;
  width: 24px;
  height: 2px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .3s;
  display: block;
}

.Layout-module__dHnEZq__hamburgerOpen span:first-child {
  transform: translateY(8px)rotate(45deg);
}

.Layout-module__dHnEZq__hamburgerOpen span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.Layout-module__dHnEZq__hamburgerOpen span:nth-child(3) {
  transform: translateY(-8px)rotate(-45deg);
}

.Layout-module__dHnEZq__mobileMenu {
  z-index: 150;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  transition: opacity .35s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  position: fixed;
  inset: 0;
}

.Layout-module__dHnEZq__mobileMenuOpen {
  opacity: 1;
  pointer-events: all;
}

.Layout-module__dHnEZq__mobileMenuInner {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 32px;
  display: flex;
}

.Layout-module__dHnEZq__mobileLink {
  font-family: var(--font-display), "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--paper);
  opacity: 0;
  font-size: clamp(42px, 10vw, 72px);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color .15s, opacity .4s cubic-bezier(.22, 1, .36, 1), transform .4s cubic-bezier(.22, 1, .36, 1);
  transform: translateY(20px);
}

.Layout-module__dHnEZq__mobileMenuOpen .Layout-module__dHnEZq__mobileLink:first-child {
  opacity: 1;
  transition-delay: 50ms;
  transform: none;
}

.Layout-module__dHnEZq__mobileMenuOpen .Layout-module__dHnEZq__mobileLink:nth-child(2) {
  opacity: 1;
  transition-delay: .1s;
  transform: none;
}

.Layout-module__dHnEZq__mobileMenuOpen .Layout-module__dHnEZq__mobileLink:nth-child(3) {
  opacity: 1;
  transition-delay: .15s;
  transform: none;
}

.Layout-module__dHnEZq__mobileMenuOpen .Layout-module__dHnEZq__mobileLink:nth-child(4) {
  opacity: 1;
  transition-delay: .2s;
  transform: none;
}

.Layout-module__dHnEZq__mobileMenuOpen .Layout-module__dHnEZq__mobileLink:nth-child(5) {
  opacity: 1;
  transition-delay: .25s;
  transform: none;
}

.Layout-module__dHnEZq__mobileLink:hover {
  color: var(--lime);
}

.Layout-module__dHnEZq__mobileCta {
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-body), "Manrope", sans-serif;
  opacity: 0;
  border-radius: 999px;
  margin-top: 24px;
  padding: 20px 44px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity .4s cubic-bezier(.22, 1, .36, 1) .3s, transform .4s cubic-bezier(.22, 1, .36, 1) .3s;
  display: inline-block;
  transform: translateY(20px);
}

.Layout-module__dHnEZq__mobileMenuOpen .Layout-module__dHnEZq__mobileCta {
  opacity: 1;
  transform: none;
}

.Layout-module__dHnEZq__mobileLang {
  color: var(--paper);
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  background: none;
  border: 2px solid #ffffff4d;
  border-radius: 2px;
  margin-top: 16px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  transition: opacity .4s cubic-bezier(.22, 1, .36, 1) .35s, transform .4s cubic-bezier(.22, 1, .36, 1) .35s, background .15s, border-color .15s;
  transform: translateY(20px);
}

.Layout-module__dHnEZq__mobileMenuOpen .Layout-module__dHnEZq__mobileLang {
  opacity: 1;
  transform: none;
}

.Layout-module__dHnEZq__mobileLang:hover {
  background: #ffffff1a;
  border-color: #fff9;
}

@media (max-width: 1100px) {
  .Layout-module__dHnEZq__nav {
    display: none;
  }

  .Layout-module__dHnEZq__hamburger {
    display: flex;
  }
}

.Layout-module__dHnEZq__siteFooter {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 32px 40px;
}

.Layout-module__dHnEZq__footerGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.Layout-module__dHnEZq__footerCol h4 {
  font-family: var(--font-display), "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 16px;
  font-size: 24px;
}

.Layout-module__dHnEZq__footerCol ul {
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Layout-module__dHnEZq__footerCol a {
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}

.Layout-module__dHnEZq__footerCol a:hover {
  color: var(--lime);
}

.Layout-module__dHnEZq__footerSocial {
  gap: 16px;
  margin-top: 12px;
  display: flex;
}

.Layout-module__dHnEZq__footerSocial a {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.Layout-module__dHnEZq__footerSocial svg {
  width: 20px;
  height: 20px;
}

.Layout-module__dHnEZq__footerCopyright {
  color: #ffffff8c;
  border-top: 1px solid #ffffff1a;
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 16px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .Layout-module__dHnEZq__footerGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .Layout-module__dHnEZq__footerGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.Layout-module__dHnEZq__loadingOverlay {
  z-index: 99999;
  background: var(--black, #0c0c0c);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  display: flex;
  position: fixed;
  inset: 0;
}

.Layout-module__dHnEZq__loadingLogo {
  font-family: var(--font-display), "Anton", "Oswald", Impact, sans-serif;
  color: var(--paper, #fff);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 112px;
  font-weight: 400;
  line-height: 1;
  animation: .5s cubic-bezier(.22, 1, .36, 1) both Layout-module__dHnEZq__loadingFadeUp;
}

.Layout-module__dHnEZq__loadingTagline {
  font-family: var(--font-body), "Manrope", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffffff73;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  animation: .5s cubic-bezier(.22, 1, .36, 1) .1s both Layout-module__dHnEZq__loadingFadeUp;
}

.Layout-module__dHnEZq__loadingBar {
  background: #ffffff1a;
  border-radius: 2px;
  width: 180px;
  height: 2px;
  margin-top: 48px;
  animation: .5s cubic-bezier(.22, 1, .36, 1) .2s both Layout-module__dHnEZq__loadingFadeUp;
  overflow: hidden;
}

.Layout-module__dHnEZq__loadingBar:after {
  content: "";
  background: var(--lime, #c8f23a);
  border-radius: 2px;
  width: 50%;
  height: 100%;
  animation: 2.2s cubic-bezier(.4, 0, .2, 1) infinite Layout-module__dHnEZq__loadingSweep;
  display: block;
}

@keyframes Layout-module__dHnEZq__loadingFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Layout-module__dHnEZq__loadingSweep {
  0% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(300%);
  }
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__0rp8wuv._.css.map*/