@font-face {
  font-family: "WCD Bricolage";
  src: url("../fonts/bricolage-grotesque-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "WCD Space";
  src: url("../fonts/space-grotesk-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "WCD Space";
  src: url("../fonts/space-grotesk-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --wcd-ink: #07070c;
  --wcd-paper: #f7f4ed;
  --wcd-white: #fffdf8;
  --wcd-cyan: #19d9ff;
  --wcd-violet: #7b42ff;
  --wcd-pink: #ee45d3;
  --wcd-lime: #bdff4a;
  --wcd-orange: #ff783e;
  --wcd-blue: #2468ff;
  --wcd-line: rgba(7, 7, 12, .15);
  --wcd-dark-line: rgba(255, 255, 255, .13);
  --wcd-gutter: clamp(22px, 5.5vw, 104px);
  --wcd-max: 1720px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.wcd-theme {
  margin: 0;
  overflow-x: hidden;
  color: var(--wcd-ink);
  background: var(--wcd-paper);
  font-family: "WCD Space", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--wcd-ink);
  background: var(--wcd-lime);
}

.wcd-noise {
  position: fixed;
  z-index: 900;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.25) .7px, transparent .7px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.wcd-reading-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

.wcd-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--wcd-cyan), var(--wcd-violet), var(--wcd-pink));
  box-shadow: 0 0 18px var(--wcd-pink);
}

.admin-bar .wcd-header { top: 32px; }
.admin-bar .wcd-reading-progress { top: 32px; }

/* Cabeçalho */
.wcd-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 86px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--wcd-gutter);
  color: var(--wcd-white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(7,7,12,.58);
  backdrop-filter: blur(14px);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.wcd-header.is-scrolled {
  height: 72px;
  background: rgba(7,7,12,.94);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
}

.wcd-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: "WCD Bricolage", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.035em;
}

.wcd-brand img {
  width: 48px;
  filter: drop-shadow(0 0 18px rgba(238,69,211,.38));
  transition: transform .25s ease;
}

.wcd-brand:hover img { transform: rotate(-7deg) scale(1.08); }

.wcd-brand > small {
  position: absolute;
  top: -4px;
  left: 102%;
  padding: 3px 6px;
  color: var(--wcd-ink);
  background: var(--wcd-lime);
  font: 700 7px "WCD Space", sans-serif;
  letter-spacing: .1em;
  transform: rotate(3deg);
}

.wcd-navigation { justify-self: center; }
.wcd-menu, .wcd-footer-menu { padding: 0; margin: 0; list-style: none; }
.wcd-menu { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); }

.wcd-menu a {
  position: relative;
  display: block;
  padding: 11px 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.wcd-menu a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wcd-cyan), var(--wcd-pink));
  transition: right .22s ease;
}

.wcd-menu a:hover { color: white; transform: translateY(-2px); }
.wcd-menu a:hover::after, .wcd-menu .current-menu-item > a::after { right: 0; }

.wcd-header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 17px 12px 20px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: .25s ease;
}

.wcd-header-cta b { color: var(--wcd-cyan); font-size: 17px; }
.wcd-header-cta:hover { color: var(--wcd-ink); border-color: var(--wcd-lime); background: var(--wcd-lime); transform: rotate(-2deg); }
.wcd-header-cta:hover b { color: var(--wcd-ink); }
.wcd-menu-toggle { display: none; }

/* Hero */
.wcd-blog-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .85fr);
  align-items: center;
  gap: clamp(44px, 7vw, 130px);
  padding: 150px var(--wcd-gutter) 88px;
  overflow: hidden;
  color: var(--wcd-white);
  background:
    radial-gradient(circle at 13% 35%, rgba(25,217,255,.26), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(238,69,211,.22), transparent 37%),
    radial-gradient(circle at 58% 88%, rgba(123,66,255,.3), transparent 36%),
    var(--wcd-ink);
}

.wcd-hero-grid, .wcd-single-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.wcd-hero-paint {
  position: absolute;
  opacity: .85;
  pointer-events: none;
  clip-path: polygon(0 35%, 9% 18%, 22% 31%, 35% 12%, 49% 29%, 64% 7%, 78% 26%, 100% 11%, 97% 69%, 83% 58%, 67% 85%, 51% 63%, 34% 88%, 18% 61%, 0 78%);
}

.wcd-paint-cyan {
  width: 64%;
  height: 120px;
  left: -12%;
  bottom: 78px;
  background: linear-gradient(90deg, transparent, var(--wcd-cyan), var(--wcd-violet));
  transform: rotate(-6deg);
}

.wcd-paint-pink {
  width: 54%;
  height: 105px;
  right: -12%;
  top: 170px;
  background: linear-gradient(90deg, var(--wcd-violet), var(--wcd-pink), transparent);
  transform: rotate(7deg);
}

.wcd-hero-copy, .wcd-featured-post { position: relative; z-index: 2; }

.wcd-hero-copy > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.wcd-hero-copy > p span { width: 28px; height: 1px; background: var(--wcd-cyan); }

.wcd-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-family: "WCD Bricolage", Arial, sans-serif;
  font-size: clamp(68px, 7.6vw, 146px);
  font-weight: 700;
  line-height: .77;
  letter-spacing: -.072em;
}

.wcd-hero-copy h1 em {
  color: transparent;
  background: linear-gradient(90deg, var(--wcd-cyan), var(--wcd-violet) 48%, var(--wcd-pink));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.wcd-hero-intro {
  max-width: 570px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 42px;
}

.wcd-hero-intro > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--wcd-ink);
  background: var(--wcd-lime);
  font: 700 11px "WCD Space", sans-serif;
  box-shadow: 6px 6px 0 var(--wcd-violet);
  transform: rotate(-4deg);
}

.wcd-hero-intro p { margin: 0; color: rgba(255,255,255,.68); font-size: clamp(15px, 1.15vw, 19px); line-height: 1.55; }

.wcd-featured-post {
  width: min(100%, 630px);
  justify-self: end;
  transform: rotate(2.5deg);
  transition: transform .35s ease;
}

.wcd-featured-post:hover { transform: rotate(0) translateY(-8px); }

.wcd-featured-image {
  position: relative;
  display: block;
  aspect-ratio: 1.35;
  overflow: hidden;
  background: #141122;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 22px 24px 0 rgba(238,69,211,.24);
}

.wcd-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.wcd-featured-post:hover .wcd-featured-image img { transform: scale(1.045); }

.wcd-featured-image > span, .wcd-card-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: white;
  background:
    radial-gradient(circle at 50% 48%, rgba(25,217,255,.4), transparent 20%),
    linear-gradient(135deg, #121020, #26113b);
}

.wcd-featured-image > span::before, .wcd-card-placeholder::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(25,217,255,.28);
  border-radius: 50%;
}

.wcd-featured-image b, .wcd-card-placeholder b {
  z-index: 1;
  font: 700 clamp(80px, 9vw, 150px) "WCD Bricolage", sans-serif;
  line-height: 1;
  text-shadow: -10px 10px 0 var(--wcd-pink), 10px -10px 0 var(--wcd-cyan);
}

.wcd-featured-image i, .wcd-card-placeholder i { z-index: 1; font-style: normal; font-size: 8px; font-weight: 700; letter-spacing: .18em; }

.wcd-featured-copy {
  position: relative;
  width: 88%;
  margin: -72px 0 0 -32px;
  padding: 25px 28px 28px;
  color: var(--wcd-ink);
  background: var(--wcd-lime);
  box-shadow: 9px 9px 0 var(--wcd-violet);
}

.wcd-featured-copy > span { font-size: 8px; font-weight: 700; letter-spacing: .15em; }

.wcd-featured-copy h2 {
  margin: 9px 0 18px;
  font-family: "WCD Bricolage", Arial, sans-serif;
  font-size: clamp(29px, 2.35vw, 44px);
  line-height: .95;
  letter-spacing: -.045em;
}

.wcd-read-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 11px 13px 11px 17px;
  color: white;
  background: var(--wcd-ink);
  font-size: 11px;
  font-weight: 700;
}

.wcd-read-button b { color: var(--wcd-cyan); font-size: 17px; }

.wcd-ticker {
  position: relative;
  z-index: 3;
  width: 102%;
  margin: -16px 0 0 -1%;
  overflow: hidden;
  color: var(--wcd-ink);
  background: var(--wcd-lime);
  border-block: 2px solid var(--wcd-ink);
  transform: rotate(-1.4deg);
}

.wcd-ticker > div { display: flex; width: max-content; animation: wcd-ticker 28s linear infinite; }
.wcd-ticker span { padding: 15px 0; font: 700 11px "Courier New", monospace; letter-spacing: .12em; white-space: nowrap; }
@keyframes wcd-ticker { to { transform: translateX(-50%); } }

/* Categorias */
.wcd-category-strip {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.35fr);
  gap: clamp(48px, 8vw, 150px);
  padding: 130px var(--wcd-gutter) 110px;
  background: var(--wcd-paper);
}

.wcd-category-strip > div:first-child > small,
.wcd-section-heading small,
.wcd-listing-header > small,
.wcd-page > header small {
  color: var(--wcd-violet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.wcd-category-strip h2, .wcd-section-heading h2 {
  margin: 18px 0 0;
  font-family: "WCD Bricolage", Arial, sans-serif;
  font-size: clamp(50px, 5vw, 92px);
  line-height: .86;
  letter-spacing: -.06em;
}

.wcd-category-strip h2 em, .wcd-section-heading h2 em {
  color: var(--wcd-pink);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.wcd-category-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); align-content: center; border-top: 1px solid var(--wcd-line); }

.wcd-category-list > a, .wcd-category-placeholder {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 0 12px;
  padding: 17px 20px;
  border-right: 1px solid var(--wcd-line);
  border-bottom: 1px solid var(--wcd-line);
  transition: transform .22s ease, box-shadow .22s ease;
}

.wcd-category-list > a:hover { z-index: 2; transform: translate(-5px,-5px) rotate(-1deg); box-shadow: 8px 8px 0 var(--wcd-ink); }
.wcd-category-list span, .wcd-category-placeholder > small { grid-row: 1 / 3; font-size: 9px; font-weight: 700; align-self: start; }
.wcd-category-list strong { align-self: end; font: 700 clamp(20px, 1.6vw, 28px) "WCD Bricolage", sans-serif; line-height: 1; }
.wcd-category-list small { align-self: start; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.wcd-category-list b { grid-column: 3; grid-row: 1 / 3; font-size: 23px; }
.wcd-category-placeholder em { grid-column: 2 / 4; align-self: start; color: rgba(7,7,12,.55); font: 700 8px "WCD Space",sans-serif; font-style: normal; letter-spacing: .12em; }

.wcd-tone-cyan { --tone: var(--wcd-cyan); }
.wcd-tone-violet { --tone: #a88cff; }
.wcd-tone-pink { --tone: #ff77dc; }
.wcd-tone-lime { --tone: var(--wcd-lime); }
.wcd-tone-orange { --tone: #ff9b69; }
.wcd-tone-blue { --tone: #65a0ff; }
.wcd-category-list > *, .wcd-card-content { background: var(--tone, white); }

/* Lista de artigos */
.wcd-latest-posts, .wcd-listing-page {
  padding: 110px var(--wcd-gutter) 140px;
  color: white;
  background:
    radial-gradient(circle at 0 22%, rgba(25,217,255,.1), transparent 24%),
    radial-gradient(circle at 100% 62%, rgba(238,69,211,.1), transparent 30%),
    var(--wcd-ink);
}

.wcd-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 50px;
  margin-bottom: 70px;
}

.wcd-section-heading small, .wcd-listing-page .wcd-listing-header > small { color: var(--wcd-cyan); }

.wcd-search-form {
  display: grid;
  grid-template-columns: 1fr 50px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.wcd-search-form label { display: block; }
.wcd-search-form input { width: 100%; padding: 15px 4px; color: white; border: 0; outline: 0; background: transparent; }
.wcd-search-form input::placeholder { color: rgba(255,255,255,.45); }
.wcd-search-form button { width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--wcd-ink); background: var(--wcd-lime); cursor: pointer; transition: transform .2s ease; }
.wcd-search-form button:hover { transform: rotate(45deg); }

.wcd-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(36px, 5vw, 84px) clamp(24px, 4vw, 66px); }

.wcd-post-card { position: relative; min-width: 0; transition: transform .3s ease; }
.wcd-post-card:nth-child(even) { margin-top: 78px; }
.wcd-post-card:hover { transform: translateY(-9px); }

.wcd-card-media { position: relative; display: block; aspect-ratio: 1.55; overflow: hidden; background: #17131f; }
.wcd-card-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.15); pointer-events: none; }
.wcd-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; }
.wcd-post-card:hover .wcd-card-media img { transform: scale(1.045); filter: saturate(1.1); }

.wcd-card-placeholder b { font-size: clamp(64px, 8vw, 110px); }

.wcd-card-content {
  position: relative;
  width: 91%;
  min-height: 275px;
  margin: -34px 0 0 auto;
  padding: clamp(22px, 2.4vw, 38px);
  color: var(--wcd-ink);
  box-shadow: 8px 8px 0 rgba(123,66,255,.8);
}

.wcd-card-meta { display: flex; justify-content: space-between; gap: 18px; color: rgba(7,7,12,.64); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.wcd-card-meta a { border-bottom: 1px solid currentColor; }

.wcd-card-content h2 {
  max-width: 720px;
  margin: 18px 0 12px;
  font-family: "WCD Bricolage", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 54px);
  line-height: .92;
  letter-spacing: -.05em;
}

.wcd-card-content h2 a { transition: opacity .2s ease; }
.wcd-card-content h2 a:hover { opacity: .64; }
.wcd-card-content > p { max-width: 650px; margin: 0; font-size: 14px; line-height: 1.6; }

.wcd-card-footer { display: grid; grid-template-columns: auto auto 1fr; gap: 18px; align-items: center; margin-top: 24px; padding-top: 17px; border-top: 1px solid rgba(7,7,12,.22); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.wcd-card-footer > a { justify-self: end; display: flex; gap: 8px; align-items: center; font-size: 10px; }
.wcd-card-footer > a b { font-size: 18px; transition: transform .2s ease; }
.wcd-card-footer > a:hover b { transform: rotate(45deg); }

.navigation.pagination { margin-top: 90px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.nav-links .page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 13px; border: 1px solid rgba(255,255,255,.2); font-size: 11px; font-weight: 700; }
.nav-links .current, .nav-links a:hover { color: var(--wcd-ink); background: var(--wcd-lime); border-color: var(--wcd-lime); }

.wcd-empty-state { max-width: 900px; padding: 70px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); }
.wcd-empty-state > span { color: var(--wcd-cyan); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.wcd-empty-state h2 { margin: 20px 0; font: 700 clamp(38px, 4vw, 72px)/.9 "WCD Bricolage", sans-serif; letter-spacing: -.05em; }
.wcd-empty-state p { color: rgba(255,255,255,.62); }
.wcd-latest-posts-empty { padding-bottom: 100px; }
.wcd-latest-posts-empty .wcd-empty-state { max-width: 780px; padding: 44px 50px; }
.wcd-latest-posts-empty .wcd-empty-state h2 { font-size: clamp(34px,3.7vw,62px); }

/* Arquivo e busca */
.wcd-listing-page { min-height: 100vh; padding-top: 170px; }
.wcd-listing-header { max-width: 1160px; margin: 0 0 78px; }
.wcd-listing-header h1 { margin: 15px 0 20px; font: 700 clamp(62px, 8vw, 148px)/.8 "WCD Bricolage", sans-serif; letter-spacing: -.07em; }
.wcd-listing-header h1 em { color: var(--wcd-pink); font-family: Georgia,serif; font-weight: 400; }
.wcd-archive-description { max-width: 670px; color: rgba(255,255,255,.65); font-size: 18px; }
.wcd-listing-header .wcd-search-form { max-width: 430px; margin-top: 38px; }

/* Artigo */
.wcd-single { color: var(--wcd-ink); background: var(--wcd-paper); }

.wcd-single-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .7fr);
  gap: clamp(50px, 8vw, 150px);
  align-items: center;
  padding: 155px var(--wcd-gutter) 90px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 28%, rgba(238,69,211,.2), transparent 35%),
    radial-gradient(circle at 8% 70%, rgba(25,217,255,.17), transparent 34%),
    var(--wcd-ink);
}

.wcd-single-heading, .wcd-single-cover { position: relative; z-index: 2; }
.wcd-single-kicker { display: flex; gap: 18px; align-items: center; color: var(--wcd-cyan); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.wcd-single-kicker a { padding-bottom: 3px; border-bottom: 1px solid currentColor; }
.wcd-single-kicker span { color: rgba(255,255,255,.46); }

.wcd-single-heading h1 { max-width: 820px; margin: 28px 0 24px; font: 700 clamp(42px, 4.45vw, 76px)/.9 "WCD Bricolage", sans-serif; letter-spacing: -.052em; overflow-wrap: anywhere; text-wrap: balance; }
.wcd-single-heading > p { max-width: 690px; color: rgba(255,255,255,.65); font-size: clamp(16px, 1.25vw, 20px); }
.wcd-single-meta { display: flex; gap: 25px; margin-top: 32px; color: var(--wcd-lime); font-size: 8px; font-weight: 700; letter-spacing: .15em; }

.wcd-single-cover { justify-self: end; margin: 0; transform: rotate(2deg); }
.wcd-single-cover::after { content: ""; position: absolute; z-index: -1; inset: 24px -22px -22px 24px; background: linear-gradient(135deg, var(--wcd-violet), var(--wcd-pink)); }
.wcd-single-cover img { max-height: 560px; width: 100%; object-fit: cover; }

.wcd-article-layout { position: relative; display: grid; grid-template-columns: 158px minmax(0, 820px); justify-content: center; gap: clamp(34px, 5vw, 76px); padding: 110px var(--wcd-gutter); }

.wcd-share { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; align-items: stretch; gap: 8px; padding: 17px 13px 14px; border: 1px solid rgba(7,7,12,.18); background: rgba(255,255,255,.45); box-shadow: 6px 6px 0 rgba(123,66,255,.16); }
.wcd-share-title { display: flex; flex-direction: column; margin-bottom: 7px; padding: 0 4px 13px; border-bottom: 1px solid rgba(7,7,12,.16); }
.wcd-share-title strong { font: 700 15px/1 "WCD Bricolage", sans-serif; letter-spacing: -.02em; }
.wcd-share-title small { margin-top: 4px; color: rgba(7,7,12,.55); font: 700 8px/1 "WCD Space", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.wcd-share a, .wcd-share button { display: flex; min-height: 42px; align-items: center; gap: 9px; width: 100%; padding: 5px 8px; color: var(--wcd-ink); border: 1px solid rgba(7,7,12,.15); border-radius: 999px; background: rgba(255,255,255,.72); font: 700 10px/1 "WCD Space", sans-serif; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.wcd-share-icon { flex: 0 0 29px; width: 29px; height: 29px; display: grid; place-items: center; overflow: hidden; color: white; background: var(--wcd-ink); border-radius: 50%; font: 700 13px/1 Arial,sans-serif; }
.wcd-share-icon img { width: 15px; height: 15px; object-fit: contain; }
.wcd-share-label { white-space: nowrap; }
.wcd-share a:hover, .wcd-share button:hover, .wcd-share button.is-copied { color: var(--wcd-ink); border-color: var(--wcd-ink); background: var(--wcd-lime); transform: translateX(4px); box-shadow: -4px 4px 0 var(--wcd-violet); }
.wcd-share .is-linkedin .wcd-share-icon { background: #0a66c2; }
.wcd-share .is-whatsapp .wcd-share-icon { background: #25d366; }
.wcd-share .is-facebook .wcd-share-icon { background: #1877f2; font-size: 18px; }
.wcd-share .is-x .wcd-share-icon { background: #07070c; }
.wcd-share .is-telegram .wcd-share-icon { background: #229ed9; font-size: 12px; }
.wcd-share .is-instagram .wcd-share-icon { background: radial-gradient(circle at 30% 105%,#ffd600 0 18%,#ff7a00 34%,#ff0169 58%,#d300c5 76%,#7638fa 100%); }
.wcd-instagram-glyph { position: relative; width: 15px; height: 15px; display: block; border: 1.8px solid white; border-radius: 4px; }
.wcd-instagram-glyph:before { content: ""; position: absolute; width: 5px; height: 5px; left: 3.2px; top: 3.2px; border: 1.5px solid white; border-radius: 50%; }
.wcd-instagram-glyph:after { content: ""; position: absolute; width: 2px; height: 2px; right: 2px; top: 2px; border-radius: 50%; background: white; }
.wcd-instagram-glyph i { display: none; }
.wcd-share .is-email .wcd-share-icon { background: var(--wcd-pink); }
.wcd-share .is-native .wcd-share-icon { background: var(--wcd-violet); font-size: 10px; }
.wcd-share .is-copy .wcd-share-icon { color: var(--wcd-ink); background: var(--wcd-lime); }
.wcd-share button[hidden] { display: none; }

.wcd-article-content { min-width: 0; font-size: clamp(17px, 1.15vw, 19px); line-height: 1.82; }
.wcd-article-content > *:first-child { margin-top: 0; }
.wcd-article-content p { margin: 0 0 1.65em; }
.wcd-article-content h2, .wcd-article-content h3, .wcd-page > header h1 { font-family: "WCD Bricolage", sans-serif; font-weight: 700; line-height: .96; letter-spacing: -.045em; }
.wcd-article-content h2 { margin: 1.35em 0 .65em; font-size: clamp(38px, 4vw, 62px); }
.wcd-article-content h3 { margin: 1.4em 0 .65em; font-size: clamp(29px, 3vw, 42px); }
.wcd-article-content a { color: #6130d8; border-bottom: 1px solid currentColor; }
.wcd-article-content strong { font-weight: 700; }
.wcd-article-content blockquote { position: relative; margin: 2.5em 0; padding: 35px 40px; color: white; background: var(--wcd-ink); box-shadow: 10px 10px 0 var(--wcd-pink); font: 700 clamp(25px, 3vw, 40px)/1.15 "WCD Bricolage", sans-serif; }
.wcd-article-content blockquote::before { content: "✦"; display: block; margin-bottom: 16px; color: var(--wcd-cyan); }
.wcd-article-content blockquote p:last-child { margin-bottom: 0; }
.wcd-article-content ul, .wcd-article-content ol { margin: 1.5em 0; padding-left: 1.4em; }
.wcd-article-content li { margin-bottom: .55em; }
.wcd-article-content img { margin-block: 2.3em; }
.wcd-article-content figure { margin: 2.3em 0; }
.wcd-article-content figcaption { margin-top: 9px; color: rgba(7,7,12,.55); font-size: 12px; }
.wcd-article-content pre { overflow-x: auto; padding: 24px; color: var(--wcd-lime); background: var(--wcd-ink); font-size: 14px; }
.wcd-article-content code { padding: .12em .35em; background: rgba(123,66,255,.12); }
.wcd-article-content pre code { padding: 0; background: transparent; }

.wcd-article-footer { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: 80px var(--wcd-gutter) 110px; color: white; background: var(--wcd-ink); }
.wcd-article-footer > div > span { color: var(--wcd-cyan); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.wcd-article-footer h2 { margin: 17px 0 0; font: 700 clamp(40px, 4.4vw, 76px)/.87 "WCD Bricolage",sans-serif; letter-spacing: -.055em; }
.wcd-article-footer .post-navigation { align-self: end; }
.wcd-article-footer .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.wcd-article-footer .nav-previous, .wcd-article-footer .nav-next { min-width: 0; }
.wcd-article-footer .nav-links a { height: auto; min-height: 110px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 20px; border: 1px solid rgba(255,255,255,.18); }
.wcd-article-footer .nav-links a:hover { color: var(--wcd-ink); background: var(--wcd-lime); }
.wcd-article-footer small { margin-bottom: 8px; color: var(--wcd-cyan); font-size: 7px; letter-spacing: .14em; }
.wcd-article-footer .nav-links a:hover small { color: var(--wcd-violet); }
.wcd-article-footer strong { font: 700 18px/1.05 "WCD Bricolage", sans-serif; }

.wcd-page-shell { min-height: 100vh; padding: 165px var(--wcd-gutter) 120px; }
.wcd-page { max-width: 900px; margin: auto; }
.wcd-page > header { margin-bottom: 70px; }
.wcd-page > header h1 { margin: 18px 0 0; font-size: clamp(60px, 8vw, 130px); }

/* Rodapé */
.wcd-footer {
  position: relative;
  overflow: hidden;
  padding: 24px var(--wcd-gutter) 26px;
  color: white;
  background: radial-gradient(circle at 90% 0, rgba(238,69,211,.13), transparent 32%), var(--wcd-ink);
  border-top: 1px solid rgba(255,255,255,.14);
}

.wcd-footer-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.1) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to right, #000, transparent 86%); }
.wcd-footer > *:not(.wcd-footer-grid) { position: relative; }

.wcd-footer-topline { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--wcd-dark-line); color: rgba(255,255,255,.4); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.wcd-footer-topline b { color: var(--wcd-lime); }
.wcd-footer-topline i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }

.wcd-footer-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, 370px); align-items: center; gap: clamp(40px, 8vw, 120px); padding: 40px 0 44px; }
.wcd-footer-hero > div > small { color: var(--wcd-cyan); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.wcd-footer-hero h2 { margin: 11px 0 0; font: 700 clamp(42px, 4.9vw, 78px)/.86 "WCD Bricolage", sans-serif; letter-spacing: -.055em; }
.wcd-footer-hero h2 em { color: var(--wcd-pink); font-family: Georgia,serif; font-weight: 400; }
.wcd-footer-hero > a { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 14px 14px 21px; color: var(--wcd-ink); background: var(--wcd-lime); box-shadow: 7px 7px 0 var(--wcd-violet); transition: .25s ease; }
.wcd-footer-hero > a:hover { background: var(--wcd-cyan); transform: translateY(-4px); box-shadow: 10px 10px 0 var(--wcd-pink); }
.wcd-footer-hero > a > span { display: flex; flex-direction: column; font: 700 20px/1 "WCD Bricolage", sans-serif; }
.wcd-footer-hero > a small { margin-bottom: 7px; font: 700 7px "WCD Space", sans-serif; letter-spacing: .15em; }
.wcd-footer-hero > a > b { display: grid; place-items: center; width: 46px; height: 46px; color: white; background: var(--wcd-ink); border-radius: 50%; font-size: 20px; }

.wcd-footer-info { display: grid; grid-template-columns: .8fr .8fr 1.5fr; gap: clamp(28px, 5vw, 80px); align-items: center; padding: 25px 0 28px; border-top: 1px solid var(--wcd-dark-line); }
.wcd-footer-brand > small { display: none; }
.wcd-footer-info > p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.55; }
.wcd-footer-menu { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 20px; }
.wcd-footer-menu a { display: block; min-height: 35px; padding: 7px 0; border-bottom: 1px solid var(--wcd-dark-line); font: 700 12px "WCD Bricolage", sans-serif; transition: color .2s ease, padding .2s ease; }
.wcd-footer-menu a:hover { padding-left: 6px; color: var(--wcd-cyan); }

.wcd-footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; padding-top: 19px; border-top: 1px solid var(--wcd-dark-line); color: rgba(255,255,255,.34); font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.wcd-footer-bottom strong { color: rgba(255,255,255,.75); }
.wcd-footer-bottom span:last-child { text-align: right; }

.wcd-whatsapp { position: fixed; z-index: 850; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 15px; min-height: 62px; padding: 8px 8px 8px 20px; color: white; background: rgba(7,7,12,.92); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; box-shadow: 0 16px 50px rgba(0,0,0,.25); backdrop-filter: blur(12px); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.wcd-whatsapp > span { display: flex; flex-direction: column; font: 700 13px/1.05 "WCD Bricolage", sans-serif; }
.wcd-whatsapp small { margin-bottom: 4px; color: var(--wcd-lime); font: 700 6px "WCD Space", sans-serif; letter-spacing: .13em; }
.wcd-whatsapp > b { display: grid; place-items: center; width: 46px; height: 46px; color: white; background: #25d366; border-radius: 50%; font-size: 25px; box-shadow: 0 0 0 0 rgba(37,211,102,.45); animation: wcd-whatsapp-pulse 2.4s ease-out infinite; }
.wcd-whatsapp > b img { width: 25px; height: 25px; object-fit: contain; }
.wcd-whatsapp:hover { transform: translateY(-6px) rotate(-1deg); border-color: rgba(37,211,102,.65); box-shadow: 0 22px 60px rgba(0,0,0,.46), 0 0 28px rgba(37,211,102,.16); }
.wcd-whatsapp:focus-visible { outline: 3px solid #25d366; outline-offset: 4px; }
@keyframes wcd-whatsapp-pulse {
  0%,45% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  75%,100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
}

.wcd-404 { min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 150px var(--wcd-gutter) 100px; color: white; background: radial-gradient(circle at 75% 45%, rgba(238,69,211,.22), transparent 30%), var(--wcd-ink); }
.wcd-404 > span { color: var(--wcd-cyan); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.wcd-404 h1 { margin: 25px 0; font: 700 clamp(70px, 10vw, 175px)/.76 "WCD Bricolage",sans-serif; letter-spacing: -.075em; }
.wcd-404 h1 em { color: var(--wcd-pink); font-family: Georgia,serif; font-weight: 400; }
.wcd-404 p { max-width: 600px; color: rgba(255,255,255,.65); font-size: 18px; }
.wcd-404 .wcd-read-button { margin-top: 25px; border: 1px solid rgba(255,255,255,.25); }

@media (max-width: 1120px) {
  .wcd-header { grid-template-columns: 200px minmax(0,1fr) auto; gap: 18px; }
  .wcd-menu { gap: 17px; }
  .wcd-menu a { font-size: 11px; }
  .wcd-blog-hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: 55px; }
  .wcd-category-strip { grid-template-columns: 1fr; gap: 55px; }
  .wcd-single-hero { grid-template-columns: 1fr minmax(330px, .65fr); gap: 50px; }
}

@media (max-width: 900px) {
  .admin-bar .wcd-header { top: 46px; }
  .admin-bar .wcd-reading-progress { top: 46px; }
  .wcd-header, .wcd-header.is-scrolled { height: 72px; grid-template-columns: 1fr auto; padding-inline: 20px; background: rgba(7,7,12,.96); backdrop-filter: none; }
  .wcd-brand img { width: 44px; }
  .wcd-brand { z-index: 3; font-size: 13px; }
  .wcd-menu-toggle { position: relative; z-index: 3; width: 43px; height: 43px; display: grid; place-content: center; gap: 7px; padding: 0; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(7,7,12,.8); cursor: pointer; }
  .wcd-menu-toggle > span:not(.screen-reader-text) { display: block; width: 19px; height: 1px; background: white; transition: .2s ease; }
  .wcd-menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .wcd-menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .wcd-navigation { position: fixed; z-index: 2; inset: 0; width: 100vw; height: 100dvh; padding: 92px 22px 30px; overflow-y: auto; color: white; background: radial-gradient(circle at 90% 10%,rgba(238,69,211,.2),transparent 32%), radial-gradient(circle at 8% 90%,rgba(25,217,255,.16),transparent 34%),var(--wcd-ink); opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(16px); transition: .24s ease; }
  .wcd-navigation.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .wcd-menu { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .wcd-menu li { width: 100%; }
  .wcd-menu a { min-height: 70px; display: flex; align-items: center; padding: 10px 2px; border-bottom: 1px solid rgba(255,255,255,.13); color: white; font: 700 clamp(32px,9vw,54px)/1 "WCD Bricolage",sans-serif; letter-spacing: -.05em; }
  .wcd-menu a::after { display: none; }
  .wcd-header-cta { display: none; }
  .wcd-blog-hero { min-height: 0; grid-template-columns: 1fr; gap: 70px; padding-top: 130px; }
  .wcd-featured-post { justify-self: start; }
  .wcd-hero-copy h1 { font-size: clamp(70px, 15vw, 118px); }
  .wcd-category-strip { padding-block: 100px; }
  .wcd-post-grid { grid-template-columns: 1fr; }
  .wcd-post-card:nth-child(even) { margin-top: 0; }
  .wcd-section-heading { grid-template-columns: 1fr; align-items: start; }
  .wcd-section-heading .wcd-search-form { width: min(100%, 450px); }
  .wcd-single-hero { grid-template-columns: 1fr; padding-top: 135px; }
  .wcd-single-heading h1 { max-width: 850px; font-size: clamp(46px, 8.2vw, 72px); }
  .wcd-single-cover { width: min(90%, 620px); justify-self: start; }
  .wcd-article-footer { grid-template-columns: 1fr; }
  .wcd-footer-info { grid-template-columns: 1fr 1fr; }
  .wcd-footer-info nav { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .admin-bar .wcd-header { top: 46px; }
  .wcd-blog-hero { padding: 115px 20px 76px; gap: 60px; }
  .wcd-hero-copy > p { align-items: flex-start; font-size: 7px; }
  .wcd-hero-copy h1 { font-size: clamp(58px, 20vw, 90px); line-height: .8; }
  .wcd-hero-intro { margin-top: 32px; }
  .wcd-featured-post { width: 95%; margin-left: 4%; }
  .wcd-featured-copy { width: 94%; margin: -35px 0 0 -14px; padding: 22px; }
  .wcd-featured-copy h2 { font-size: 29px; }
  .wcd-featured-image { box-shadow: 12px 13px 0 rgba(238,69,211,.24); }
  .wcd-ticker span { padding-block: 12px; font-size: 9px; }
  .wcd-category-strip { padding: 82px 20px; }
  .wcd-category-strip h2, .wcd-section-heading h2 { font-size: clamp(46px, 14vw, 68px); }
  .wcd-category-list { grid-template-columns: 1fr; }
  .wcd-latest-posts, .wcd-listing-page { padding: 80px 20px 100px; }
  .wcd-section-heading { margin-bottom: 50px; }
  .wcd-card-content { width: 95%; min-height: 0; margin-top: -20px; padding: 23px 20px; }
  .wcd-card-content h2 { font-size: 36px; }
  .wcd-card-footer { grid-template-columns: 1fr auto; }
  .wcd-card-footer > span { display: none; }
  .wcd-listing-page { padding-top: 125px; }
  .wcd-listing-header h1 { font-size: clamp(57px,18vw,92px); }
  .wcd-single-hero { padding: 120px 20px 75px; }
  .wcd-single-heading h1 { font-size: clamp(38px, 12vw, 56px); line-height: .92; }
  .wcd-single-cover { width: 94%; }
  .wcd-article-layout { grid-template-columns: 1fr; gap: 30px; padding: 75px 20px; }
  .wcd-share { position: static; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; padding: 16px; }
  .wcd-share-title { grid-column: 1 / -1; }
  .wcd-share a, .wcd-share button { min-width: 0; }
  .wcd-share a:hover, .wcd-share button:hover, .wcd-share button.is-copied { transform: translateY(-3px); }
  .wcd-article-content blockquote { padding: 28px 24px; }
  .wcd-article-footer { padding: 65px 20px 80px; }
  .wcd-article-footer .nav-links { grid-template-columns: 1fr; }
  .wcd-page-shell { padding: 125px 20px 85px; }
  .wcd-footer { padding-inline: 20px; }
  .wcd-footer-topline span { display: none; }
  .wcd-footer-topline { justify-content: flex-end; }
  .wcd-footer-hero { grid-template-columns: 1fr; gap: 30px; }
  .wcd-footer-info { grid-template-columns: 1fr; gap: 20px; }
  .wcd-footer-info nav { grid-column: auto; }
  .wcd-footer-bottom { grid-template-columns: 1fr; gap: 8px; }
  .wcd-footer-bottom span:last-child { text-align: left; }
  .wcd-whatsapp { right: 13px; bottom: 13px; min-height: 54px; padding: 6px; }
  .wcd-whatsapp > span { display: none; }
  .wcd-whatsapp > b { width: 44px; height: 44px; }
  .wcd-404 { padding-inline: 20px; }
  .wcd-404 h1 { font-size: clamp(62px,21vw,100px); }
}

@media (max-width: 782px) {
  .admin-bar .wcd-header { top: 46px; }
  .admin-bar .wcd-reading-progress { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Cabeçalho compartilhado com o site principal */
.wcd-header {
  height: 86px;
  grid-template-columns: 190px minmax(0,1fr) auto;
  gap: 24px;
  padding: 0 clamp(24px,3.5vw,66px);
  background: rgba(5,5,10,.35);
  backdrop-filter: blur(10px);
}

.wcd-header.is-scrolled {
  height: 74px;
  background: rgba(5,5,10,.9);
  backdrop-filter: blur(22px);
}

.wcd-brand { gap: 11px; font-size: 15px; line-height: .84; letter-spacing: -.03em; }
.wcd-brand img { width: 46px; }

.wcd-navigation {
  position: static;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(15px,2vw,34px);
  width: auto;
  height: auto;
  padding: 0;
  overflow: visible;
  background: transparent;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  min-width: 0;
}

.wcd-navigation > a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 0;
  color: rgba(255,255,255,.78);
  font-family: "WCD Space",sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease,transform .2s ease;
}

.wcd-navigation > a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--wcd-cyan),var(--wcd-violet),var(--wcd-pink));
  transition: right .25s ease;
}

.wcd-navigation > a:hover,
.wcd-navigation > a.active { color: white; transform: translateY(-2px); }
.wcd-navigation > a:hover::after,
.wcd-navigation > a.active::after { right: 0; }
.wcd-navigation > a small { color: var(--wcd-cyan); font: 700 8px "Courier New",monospace; }

.wcd-header-cta {
  justify-self: end;
  gap: 13px;
  padding: 13px 18px 13px 21px;
  font-size: 12px;
}
.wcd-menu-toggle { display: none; }

@media (max-width:1120px) {
  .wcd-header { grid-template-columns: 166px minmax(0,1fr) auto; gap: 14px; padding-inline: 24px; }
  .wcd-navigation { gap: 15px; }
  .wcd-navigation > a { font-size: 11px; }
  .wcd-navigation > a small { display: none; }
  .wcd-header-cta { padding-inline: 16px; }
}

@media (max-width:860px) {
  .wcd-header,
  .wcd-header.is-scrolled {
    height: 72px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
    background: rgba(5,5,10,.92);
    backdrop-filter: none;
  }
  .wcd-brand { position: relative; z-index: 3; font-size: 13px; }
  .wcd-brand img { width: 46px; }
  .wcd-menu-toggle {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    color: white;
    background: rgba(5,5,10,.72);
  }
  .wcd-navigation {
    position: fixed;
    inset: 0;
    z-index: 2;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    padding: 86px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: radial-gradient(circle at 88% 12%,rgba(238,69,211,.22),transparent 30%),radial-gradient(circle at 5% 92%,rgba(25,217,255,.16),transparent 34%),#05050a;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px);
    transition: .25s ease;
  }
  .wcd-navigation.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .wcd-navigation > a {
    flex: 0 0 auto;
    width: 100%;
    min-height: 50px;
    gap: 12px;
    padding: 7px 2px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: white;
    font-family: "WCD Bricolage","WCD Space",sans-serif;
    font-size: clamp(25px,7.8vw,36px);
    line-height: 1;
    letter-spacing: -.045em;
  }
  .wcd-navigation > a:first-child { border-top: 1px solid rgba(255,255,255,.1); }
  .wcd-navigation > a::after { bottom: -1px; }
  .wcd-navigation > a small { display: inline; flex: 0 0 20px; font-size: 8px; letter-spacing: 0; }
  .wcd-header-cta { display: none; }
}

@media (max-width:380px) {
  .wcd-navigation { padding-inline: 18px; }
  .wcd-navigation > a { min-height: 47px; font-size: clamp(23px,7.5vw,30px); }
}
