/* =========================================================================
   mombartz.com — site.css
   Hand-authored replacement for the Webflow export
   (normalize.css + components.css + mombartz.css).

   Values are extracted verbatim from the export so the redesign is a
   like-for-like port, not a re-style. Breakpoints match Webflow's
   (991 / 767 / 479px) so extracted responsive rules port 1:1.

   Sections:
     1. Reset
     2. Tokens
     3. Base typography
     4. Layout shell (.wrap, .container, .section)
     5. Header
     6. Links & buttons
     7. Quotes
     8. CV page
     9. Utilities

   Component sections (cards, tags, filter, search, prose, slider, tabs,
   empty-state) are added as each page is migrated onto this stylesheet.
   ========================================================================= */

/* ===== 1. Reset ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* ===== 2. Tokens ======================================================== */

:root {
  --color-text: #333;
  --color-link: #475467;   /* body links */
  --color-muted: #919191;  /* quote text */
  --color-faint: #ccc;     /* quote author */
  --color-blue: #42aae0;
  --color-orange: #f06522;
  --color-paper: #f9f9f9;
  --color-accent: #ffe51d; /* header hover sweep */
  --color-cv: #e96642;     /* CV section rule + labels */
  --tag-color: #6e6e6e;    /* default; overridden per-tag inline */

  --font-body: "Source Sans 3", sans-serif;
  --font-quote: Labrada, sans-serif;
}

/* ===== 3. Base typography =============================================== */

body {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
}

h2 {
  color: var(--color-text);
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

strong,
b {
  font-weight: bold;
}

blockquote {
  border-left: 2px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 0 0 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

/* Global link hover: gray sweep behind the text (was an inline Webflow
   custom-code block on every page). .noeffect opts out. */
a {
  color: var(--color-link);
  text-decoration: none;
  display: inline;
  background: linear-gradient(to right, #f1f1f1 50%, #fff 50%);
  background-size: 201% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-out;
}

a:hover {
  background-position: left bottom;
  text-decoration-color: var(--color-blue);
  text-decoration-thickness: 1px;
}

a.noeffect,
a.noeffect:hover {
  background: none;
  border: none;
}

/* ===== 4. Layout shell ================================================== */

.body {
  flex-flow: column;
  display: flex;
}

.wrap {
  flex-flow: column;
  flex: 1;
  margin-top: 24px;
  margin-left: 24px;
  margin-right: 24px;
  display: flex;
}

.container {
  flex-flow: column;
  flex: 1;
  max-width: 1024px;
  margin-top: 0;
  margin-bottom: 80px;
  padding-top: 48px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
}

.section {
  margin-left: 32px;
  margin-right: 32px;
}

.section.bottom-margin {
  margin-bottom: 80px;
}

.section.thought {
  flex: 1;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 72px;
  margin-bottom: 56px;
  display: flex;
}

/* ===== 5. Header ======================================================== */
/* Rendered by src/lib/header.ts. */

.header {
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 48px;
  display: flex;
}

.logo {
  border-bottom-style: none;
}

.logo.noeffect {
  flex: 1;
}

.noeffect {
  border-bottom-style: none;
}

.header-nav {
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.header-link {
  letter-spacing: 0.05rem;
  border-bottom-style: none;
  border-radius: 2px;
  margin-left: 0;
  margin-right: 0;
  font-size: 16px;
  font-weight: 300;
  /* Yellow slide-in hover (was an inline <style> in the header markup). */
  box-shadow: inset 0 0 0 0 var(--color-accent);
  padding: 0.25rem;
  margin: -0.25rem;
  transition: box-shadow 0.3s ease-in-out;
}

.header-link:hover {
  box-shadow: inset 200px 0 0 0 var(--color-accent);
}

/* ===== 6. Links & buttons ============================================== */

.link {
  vertical-align: baseline;
  text-underline-offset: 0.15em;
  line-height: 101%;
  text-decoration: underline var(--color-blue);
  text-decoration-thickness: 1px;
  display: inline;
}

.link:hover {
  color: var(--color-blue);
  text-decoration-color: var(--color-orange);
}

.link.left-margin {
  padding-left: 4px;
}

/* ===== 7. Quotes ======================================================== */

.quotes {
  color: var(--color-muted);
  align-items: center;
  margin-top: 12px;
  margin-bottom: 0;
  font-family: var(--font-quote);
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
  display: block;
}

.quotes.hide {
  text-decoration: none;
  display: none;
}

.quote {
  color: var(--color-muted);
  line-height: 130%;
}

.author {
  color: var(--color-faint);
  white-space: nowrap;
  flex: 0 auto;
  line-height: 130%;
}

/* ===== 8. CV page ====================================================== */

.title {
  color: var(--color-text);
  margin-bottom: 64px;
  padding-top: 13px;
  padding-left: 0;
  padding-right: 0;
  font-size: 64px;
  font-weight: 300;
  line-height: 102%;
}

.title.no-bottom-margin {
  margin-bottom: 0;
}

.cv {
  gap: 64px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  display: flex;
}

.cv-section {
  border-top: 1px solid var(--color-cv);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 16px;
  text-decoration: none;
  display: flex;
}

.cv-row {
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.cv-label {
  gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 112px;
  text-decoration: none;
  display: flex;
}

.cv-label-text {
  color: var(--color-cv);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  text-decoration: none;
}

.cv-label-desc {
  opacity: 0.5;
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.cv-project-list {
  gap: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.cv-description {
  color: #333;
  flex: 1;
  font-weight: 400;
  text-decoration: none;
}

.cv-client-list {
  gap: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.cv-client-row {
  column-gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.lead-project-logo {
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 148px;
  text-decoration: none;
  display: flex;
}

.cv-work-logo {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  height: 32px;
  text-decoration: none;
  display: flex;
}

.cv-work-logo.medium {
  height: 24px;
}

.cv-work-logo.small {
  height: 20px;
}

.cv-date {
  opacity: 0.5;
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.lead-project-description {
  gap: 0;
  color: #333;
  flex-flow: column;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  text-decoration: none;
}

.cv-small-grey-text {
  color: gray;
  font-size: 13px;
  line-height: 140%;
}

.cv-client-logo-list {
  column-gap: 24px;
  row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 112px 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 24px;
  text-decoration: none;
  display: grid;
}

/* "Select Clients" label spans two grid rows (was a Webflow #w-node id). */
.cv-client-logo-list .cv-label-desc {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

.cv-client-logo {
  height: 32px;
}

.cv-project-grid {
  column-gap: 24px;
  row-gap: 24px;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: grid;
}

.frame-55 {
  column-gap: 8px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.text-15 {
  width: 148px;
  margin-top: 0;
  margin-bottom: 0;
  text-decoration: none;
}

.frame-56 {
  row-gap: 2.49747px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.text-16 {
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  text-decoration: none;
}

.text-17 {
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  text-decoration: none;
}

/* Social icons (CV About block) */
.social-links {
  flex-flow: row;
  margin-top: 24px;
  display: flex;
}

.social-icon {
  background-image: url("../images/linkedin.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  border-bottom-style: none;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.social-icon:hover {
  background-image: url("../images/linkedin-hover.svg");
}

.social-icon.instagram {
  background-image: url("../images/instagram.svg");
}

.social-icon.instagram:hover {
  background-image: url("../images/instagram-hover.svg");
}

.social-icon.github {
  background-image: url("../images/github-square-outline.svg");
}

.social-icon.github:hover {
  background-image: url("../images/github-square-fill.svg");
}

/* ===== 9. Utilities ==================================================== */

.hide {
  display: none;
}

/* ===== 10. List pages (ideas / art / input / resources) ================ */

.container.wide {
  max-width: 1024px;
}

.blog-header {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 48px;
  display: flex;
}

/* Section heading used on list + detail pages (was .uui-heading-medium). */
.post-title {
  color: var(--color-text);
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.3;
}

/* ----- Cards (ideas / art list items) ----- */

.card-list {
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card {
  gap: 8px;
  flex-flow: column;
  display: flex;
}

.card-title-link {
  display: inline-block;
}

.card-title {
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.card-media {
  gap: 8px;
  background-image: url("/images/webflow/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-style: none;
  border-radius: 4px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 260px;
  display: flex;
  position: relative;
}

.card-body {
  gap: 8px;
  opacity: 0;
  background-color: #ffffffe6;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  padding: 12px;
  transition: opacity 0.4s;
  display: flex;
}

.card-media:hover .card-body,
.card-body:hover {
  opacity: 1;
  background-color: #fffc;
}

.card-date {
  color: var(--tag-color);
  text-align: right;
  letter-spacing: normal;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.card-summary {
  flex: 1;
}

.card-tags {
  gap: 8px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

/* ----- Tags ----- */

.tag {
  background-color: color-mix(in srgb, var(--tag-color), transparent 80%);
  color: color-mix(in srgb, var(--tag-color), #000 30%);
  border: 0.5px solid #000;
  border-radius: 3px;
  margin-bottom: 0;
  padding: 2px 4px;
  font-size: 14px;
  line-height: 100%;
}

.tag.small {
  background-color: color-mix(in srgb, var(--tag-color), transparent 80%);
  font-size: 10px;
}

/* Filter-pill selected state (was .is-list-active). */
.tag.is-active {
  background-color: var(--tag-color);
  color: var(--color-muted);
}

/* ----- Filter bar + (hidden) search form ----- */

/* The text-search form is display:none on the live site — kept for the JS
   hook and to match production; only the tag pills are visible. */
.search-form {
  display: none;
}

.filter-header {
  width: 100%;
  margin-top: 16px;
}

.filter-bar {
  gap: 12px;
  background-color: #fff;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  display: flex;
}

.search {
  gap: 4px;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.search-input {
  color: #444;
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: #d8d8d8;
  width: 112px;
  height: 12px;
  margin-bottom: 0;
  padding: 0;
  font-size: 12px;
}

/* Filter-pill (label.tag) as a hook target. */
.tag-label {
  mix-blend-mode: multiply;
  color: color-mix(in srgb, var(--tag-color), #000 30%);
}

/* Filter feedback (was an inline <style> on /ideas). Selected pills fill
   solid; while any is selected the rest go neutral gray; hover previews the
   tag's own color. */
.filter-bar .tag {
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.filter-bar .tag .tag-label {
  transition: color 0.2s ease;
}
.filter-bar.has-active .tag:not(.is-active) {
  background-color: #f6f6f6;
  border-color: #e6e6e6 !important;
}
.filter-bar.has-active .tag:not(.is-active) .tag-label {
  color: #adadad;
}
.filter-bar .tag:hover:not(.is-active) {
  background-color: color-mix(in srgb, var(--tag-color), transparent 55%);
  border-color: var(--tag-color) !important;
}
.filter-bar .tag:hover:not(.is-active) .tag-label {
  color: color-mix(in srgb, var(--tag-color), #000 30%);
}

/* ----- Empty state ----- */

.empty-state {
  padding: 10px;
  background-color: #ddd;
}

/* ----- Input gallery ----- */

.gallery-grid {
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-item {
  gap: 4px;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  flex-flow: column;
  align-items: flex-start;
  font-size: 9px;
  display: flex;
}

/* ----- Resources ----- */

.grid-2 {
  gap: 32px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.resource-item {
  display: inline-block;
  max-width: 100%;
  height: 200px;
  transition: all 0.2s;
}

.resource-item:hover {
  transform: scale(0.9);
}

.resource-image {
  object-fit: cover;
  height: 100%;
  margin-bottom: 8px;
}

.resource-title {
  font-weight: 600;
}

/* ===== 11. Work page =================================================== */

.project-row {
  gap: 32px;
  grid-template-columns: 0.5fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 112px;
  display: grid;
}

.info {
  font-size: 14px;
  line-height: 130%;
}

.project-title {
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

.subhead {
  color: #a0a0a0;
  margin-bottom: 12px;
  font-size: 12px;
}

/* ===== 12. Detail pages (ideas / art [slug]) ========================== */

.post {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 48px;
  display: flex;
}

.blog-image {
  width: 100%;
  margin-bottom: 24px;
}

.banner-image {
  background-image: url("/images/webflow/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  width: 80vw;
  max-width: 1000px;
  height: 400px;
  margin-bottom: 24px;
  margin-left: -5vw;
  position: relative;
  left: 0;
}

.post .post-title {
  margin-bottom: 24px;
}

/* ----- Prose (rendered CMS markdown; was .thoughts-text .w-richtext) ----- */

.prose {
  width: 640px;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

.prose ol,
.prose ul {
  overflow: hidden;
}

.prose figure {
  position: relative;
  max-width: 60%;
  margin: 0 0 10px;
}

.prose figure img {
  width: 100%;
}

.prose figure.center {
  display: table;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.prose figure.center > div {
  display: inline-block;
  max-width: 100%;
}

.prose figure.full {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.prose figure.full > div {
  display: inline-block;
}

.prose figure figcaption {
  display: block;
  margin-top: 5px;
  text-align: center;
}

/* ===== 13b. Tabs (learning/classes, working-with-me) ================== */

.tabs {
  position: relative;
}

.tabs-menu {
  gap: 32px;
  font-size: 18px;
  display: flex;
}

.tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  color: #222;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  padding: 0;
  text-decoration: none;
}

.tab-link:hover {
  border-bottom: 2px solid var(--color-faint);
}

.tab-link.is-active {
  border-bottom: 2px solid var(--color-blue);
  color: var(--color-blue);
  background-color: transparent;
}

.tabs-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.tab-panel {
  position: relative;
  display: none;
}

.tab-panel.is-active {
  display: block;
}

@media screen and (max-width: 767px) {
  .tabs-menu {
    flex-flow: wrap;
  }
}

@media screen and (max-width: 479px) {
  .tabs-menu {
    gap: 24px;
  }
  .tab-link {
    display: block;
  }
}

/* ===== 13. 404 page ==================================================== */

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 640px;
  display: flex;
}

.title.error {
  margin-bottom: 40px;
}

.medium-text {
  color: var(--color-text);
  padding-right: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
}

.medium-text.error {
  margin-bottom: 24px;
}

.contact-buttons {
  flex: 1;
  margin-top: 16px;
}

.button {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  background: transparent;
  border-radius: 8px;
  margin-left: 0;
  margin-right: 16px;
  padding-bottom: 11px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.4s;
}

.button:hover {
  background-color: var(--color-orange);
  color: var(--color-paper);
}

.button.email {
  border-color: var(--color-blue);
  color: var(--color-blue);
  padding-top: 11px;
  display: block;
}

.button.email:hover {
  background-color: var(--color-blue);
  color: var(--color-paper);
}

/* ===== Component responsive =========================================== */

@media screen and (min-width: 1440px) {
  .prose {
    letter-spacing: 0;
    font-weight: 300;
  }
}

@media screen and (max-width: 991px) {
  .project-row {
    grid-template-columns: 1fr;
  }
  .info {
    width: 100%;
  }
  .banner-image {
    width: 100%;
    margin-left: 0;
  }
  .prose {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .post-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .card-list {
    grid-template-columns: 1fr 1fr;
  }
  .card-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .card-media {
    gap: 0.5rem;
    margin-bottom: 32px;
  }
  .project-row {
    grid-template-columns: 1fr;
  }
  .medium-text {
    margin-top: 16px;
    font-size: 20px;
  }
  .button {
    text-align: center;
    margin-bottom: 16px;
    margin-right: 0;
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .blog-header {
    margin-bottom: 32px;
  }
  .card-list {
    grid-template-columns: 1fr;
  }
  .card-media {
    margin-bottom: 0;
  }
  .post {
    margin-bottom: 32px;
  }
  .banner-image {
    height: 300px;
  }
  .prose {
    font-size: 16px;
  }
  .medium-text {
    font-size: 18px;
  }
}

/* ===== Responsive ====================================================== */

@media screen and (max-width: 991px) {
  .container {
    max-width: 100%;
  }
  .cv-row {
    flex-flow: column;
  }
  .cv-client-logo-list {
    flex-flow: row;
  }
  .author {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .wrap {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .container {
    padding-top: 24px;
  }
  .section {
    margin-left: 16px;
    margin-right: 16px;
  }
  .section.thought {
    margin-top: 32px;
  }
  .header {
    gap: 0;
    flex-flow: column;
    padding-bottom: 24px;
  }
  .mombartz {
    margin-bottom: 24px;
  }
  .header-nav {
    gap: 32px;
  }
  .header-link {
    font-size: 20px;
  }
  .title {
    margin-bottom: 48px;
    padding-left: 0;
    padding-right: 0;
    font-size: 40px;
  }
  .quotes {
    padding-left: 0;
  }
  .cv-client-logo-list {
    grid-template-rows: 32px;
    grid-template-columns: 132px 1fr 1fr;
    grid-auto-rows: 32px;
    grid-auto-columns: 1fr;
    display: grid;
  }
  .cv-client-logo-list .cv-label-desc {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
  .cv-project-grid {
    column-gap: 16px;
    row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .wrap {
    margin-left: 16px;
    margin-right: 16px;
  }
  .section {
    margin-left: 0;
    margin-right: 0;
  }
  .logo.noeffect {
    width: 72%;
  }
  .mombartz {
    min-width: 100%;
  }
  .header-nav {
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .header-link {
    text-underline-offset: 0;
    text-decoration-color: #0000;
    text-decoration-thickness: 0;
  }
  .title {
    flex: 1;
    font-size: 32px;
  }
  .cv-label-desc {
    margin-bottom: 16px;
  }
  .cv-client-row {
    flex-flow: column;
  }
  .lead-project-logo {
    margin-bottom: 8px;
  }
  .cv-date {
    order: -1;
  }
  .frame-55 {
    flex-flow: column;
  }
  .cv-client-logo-list {
    flex-flow: column;
    grid-template-columns: 132px 1fr;
  }
  .cv-client-logo-list .cv-label-desc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
  .cv-project-grid {
    column-gap: 8px;
    row-gap: 8px;
    grid-template-columns: 1fr;
  }
}
