:root {
  --bg: #f3f3f1;
  --ink: #1b1b27;
  --muted: #6b6b6b;
  --line: #dfdfdf;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  column-gap: 200px;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 40px 20px 32px 28px;
  background: var(--bg);
}

.logo {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", Arial, sans-serif;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}

.sidebar-nav a {
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.25;
  transition: opacity 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.is-active {
  opacity: 0.55;
}

.content {
  padding: 48px 24px 48px 0;
}

.contact-content {
  min-height: 100vh;
}

.contact-landing {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: stretch;
}

.contact-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 532px);
  min-height: calc(100vh - 96px);
  padding: 20px 0 8px;
  margin-left: 200px;
}

.contact-step-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 24px;
}

.contact-step {
  width: fit-content;
  margin: 0;
  padding: 0;
  color: #111111;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.contact-title {
  max-width: 448px;
  margin: 0;
  font-size: clamp(1.2rem, 4.48vw, 3.248rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.contact-title-row {
  display: flex;
  align-items: flex-start;
}

.contact-back-icon {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.contact-back-glyph {
  display: inline-flex;
  align-items: center;
  transform: none;
  transform-origin: center;
}

.contact-back-icon.is-hidden {
  display: none;
}

.contact-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 50px;
}

.contact-field {
  display: block;
}

.contact-field + .contact-field {
  margin-top: 13px;
}

.contact-field input {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.4rem, 2.8vw, 1.54rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.05em;
  outline: none;
}

.contact-field textarea {
  width: 100%;
  min-height: 180px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid #d9d9d9;
  resize: vertical;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.7;
  outline: none;
}

.contact-field input::placeholder {
  color: #bbbbbb;
}

.contact-field textarea::placeholder {
  color: #bbbbbb;
}

.contact-section-label {
  margin: 0;
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.4rem, 2.8vw, 1.54rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.contact-field.is-hidden {
  display: none;
}

.contact-section-label.is-hidden {
  display: none;
}

.contact-upload {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}

.contact-upload.is-hidden {
  display: none;
}

.contact-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  background: #ece9e5;
  color: #111111;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  cursor: pointer;
}

.contact-upload-input {
  display: none;
}

.contact-upload-list {
  margin: 0;
  margin-left: 3px;
  padding: 0;
  list-style: none;
  width: 100%;
}

.contact-upload-list li {
  color: #111111;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.contact-upload-list li.contact-upload-note {
  color: #658f88;
}

.contact-upload-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.contact-upload-item-name {
  flex: 1;
  max-width: 20ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-upload-remove {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1;
  cursor: pointer;
}

.contact-upload-list li + li {
  margin-top: 4px;
}

.contact-next {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid #111111;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-align: left;
  cursor: pointer;
  margin-top: auto;
}

.nomadex-landing {
  min-height: calc(100vh - 96px);
  padding-top: 8px;
}

.nomadex-media-slot {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nomadex-frame {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.nomadex-poster {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nomadex-poster img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.project-image-link {
  display: block;
}

.project-image-link:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.project-meta {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #111111;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.project-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.project-info-popup {
  position: fixed;
  top: 68px;
  right: 34px;
  z-index: 30;
  width: min(49vw, 880px);
  min-width: 560px;
  height: 580px;
  padding: 74px 42px 42px;
  border: 1px solid #666666;
  background: var(--bg);
  color: #111111;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.project-info-popup p {
  margin: 0;
}

.project-info-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.project-info-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-section {
  min-height: 100vh;
}

.gallery-header {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}

.category-filter {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
}

.category-filter-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.category-filter-button:hover,
.category-filter-button.is-active {
  opacity: 1;
}

.category-filter-sep {
  color: var(--ink);
  font-size: 0.6rem;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
}

.work-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.work-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.page-ready .work-card,
body.page-ready .info-card {
  opacity: 1;
  transform: translateY(0);
}

.work-card-link.is-hidden,
.work-card.is-hidden {
  display: none;
}

.poster {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #d9d9d9;
}

.work-card h2 {
  margin: 7px 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
}

.work-card-dark h2 {
  color: #222222;
}

.poster::before,
.poster::after {
  content: "";
  position: absolute;
}

.poster-gala {
  background: url("./image/thumbnail/nomadex.jpg") center center / cover no-repeat;
}

.poster-fair {
  background:
    linear-gradient(90deg, #56b8e8 0 34%, #ffffff 34% 42%, #c464e9 42% 58%, #ffffff 58% 66%, #56b8e8 66% 78%, #ffffff 78% 100%);
}

.poster-fair::before {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 68%, rgba(255, 255, 255, 0.86) 68% 100%);
}

.poster-fair::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 12%, rgba(0, 0, 0, 0.88) 12% 15%, transparent 15%),
    linear-gradient(180deg, transparent 76%, rgba(0, 0, 0, 0.88) 76% 82%, transparent 82%);
  mix-blend-mode: multiply;
}

.poster-holidays {
  background:
    radial-gradient(circle at 72% 74%, #ffd65a 0 4%, transparent 4.5%),
    radial-gradient(circle at 28% 20%, #87d5ff 0 1.5%, transparent 2%),
    linear-gradient(180deg, #1f3466 0%, #344e8e 100%);
}

.poster-holidays::before {
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 42%;
  background:
    linear-gradient(90deg, #f1d78a 0 12%, #b86a6d 12% 26%, #efb25f 26% 40%, #90b3de 40% 54%, #d4885c 54% 68%, #9ac19a 68% 82%, #c47e62 82% 100%);
  clip-path: polygon(0 100%, 0 48%, 8% 36%, 16% 54%, 26% 28%, 38% 52%, 54% 24%, 66% 50%, 78% 32%, 90% 58%, 100% 42%, 100% 100%);
}

.poster-holidays::after {
  left: 42%;
  bottom: 18%;
  width: 16%;
  height: 34%;
  background:
    radial-gradient(circle at 50% 8%, #ffcb45 0 14%, transparent 15%),
    linear-gradient(180deg, #2f8f50 0%, #186639 100%);
  clip-path: polygon(50% 0, 100% 26%, 78% 26%, 100% 50%, 72% 48%, 92% 72%, 62% 68%, 74% 100%, 50% 80%, 26% 100%, 38% 68%, 8% 72%, 28% 48%, 0 50%, 22% 26%, 0 26%);
}

.poster-kingo {
  background:
    linear-gradient(180deg, #b8d6d0 0%, #f4ddb8 36%, #f3efe6 100%);
}

.poster-kingo::before {
  inset: 15% 11% 10%;
  background:
    linear-gradient(90deg, transparent 0 33%, rgba(255, 255, 255, 0.95) 33% 36%, transparent 36% 64%, rgba(255, 255, 255, 0.95) 64% 67%, transparent 67%),
    linear-gradient(180deg, transparent 0 72%, #ffffff 72% 100%);
}

.poster-kingo::after {
  left: 7%;
  right: 7%;
  bottom: 12%;
  height: 32%;
  background:
    linear-gradient(90deg, #e6c592 0 14%, #d6b27c 14% 28%, #cdb693 28% 42%, #fffaf2 42% 56%, #f0d59a 56% 70%, #ddbc72 70% 84%, #b58c63 84% 100%);
  clip-path: polygon(0 100%, 0 66%, 8% 50%, 18% 64%, 28% 44%, 38% 62%, 48% 40%, 60% 66%, 72% 46%, 82% 62%, 92% 48%, 100% 60%, 100% 100%);
}

.poster-kb {
  background:
    linear-gradient(90deg, #8bb264 0 30%, #e7d247 30% 70%, #7aa16a 70% 100%);
}

.poster-kb::before {
  left: 33%;
  top: 15%;
  width: 34%;
  height: 70%;
  background: #f1cf2d;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.04);
}

.poster-kb::after {
  left: 39%;
  top: 26%;
  width: 22%;
  height: 48%;
  background:
    linear-gradient(180deg, transparent 0 62%, #dcb93e 62%),
    linear-gradient(135deg, transparent 0 48%, #efd76b 48% 52%, transparent 52%);
}

.poster-kiaf {
  background:
    linear-gradient(90deg, #dce8fd 0 18%, #b6d0f0 18% 42%, #eaf3ff 42% 62%, #b7c2d8 62% 80%, #dde9fb 80% 100%);
}

.poster-kiaf::before {
  left: 8%;
  bottom: 10%;
  width: 84%;
  height: 58%;
  background:
    linear-gradient(180deg, #ffffff 0%, #d6f2ff 100%);
  transform: skewX(-9deg);
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.1);
}

.poster-kiaf::after {
  left: 15%;
  bottom: 18%;
  width: 62%;
  height: 18%;
  background: rgba(183, 232, 244, 0.85);
  transform: skewX(-9deg);
}

.poster-orange {
  background:
    linear-gradient(180deg, #f5d8c5 0%, #f08a59 100%);
}

.poster-orange::before {
  inset: 12%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.75) 18% 20%, transparent 20% 52%, rgba(255, 255, 255, 0.75) 52% 54%, transparent 54%),
    linear-gradient(180deg, transparent 0 62%, rgba(255, 233, 214, 0.7) 62% 100%);
}

.poster-orange::after {
  left: 8%;
  right: 8%;
  bottom: 8%;
  height: 24%;
  background:
    radial-gradient(circle at 14% 48%, #ffba6f 0 7%, transparent 7.5%),
    radial-gradient(circle at 32% 44%, #f46a2e 0 7%, transparent 7.5%),
    radial-gradient(circle at 54% 58%, #ffd5a8 0 8%, transparent 8.5%),
    radial-gradient(circle at 72% 42%, #ef8e4e 0 8%, transparent 8.5%),
    radial-gradient(circle at 88% 56%, #ffd19b 0 7%, transparent 7.5%);
}

.poster-gala-night {
  background:
    linear-gradient(180deg, #1f1b18 0%, #0c0c0c 100%);
}

.poster-gala-night::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(230, 203, 145, 0.18) 12% 13%, transparent 13% 32%, rgba(230, 203, 145, 0.12) 32% 33%, transparent 33% 54%, rgba(230, 203, 145, 0.16) 54% 55%, transparent 55%),
    linear-gradient(180deg, transparent 0 24%, rgba(245, 229, 185, 0.8) 24% 28%, transparent 28% 100%);
}

.poster-gala-night::after {
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 22%;
  background:
    radial-gradient(circle at 50% 30%, #d4ad3b 0 10%, transparent 10.5%),
    linear-gradient(180deg, rgba(244, 225, 188, 0.1), rgba(0, 0, 0, 0));
}

.poster-mentorship {
  background:
    linear-gradient(180deg, #5a6dcf 0%, #253f9d 100%);
}

.poster-mentorship::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, #f9a04f 0 7%, transparent 7.5%),
    radial-gradient(circle at 60% 38%, #4e7cf0 0 7%, transparent 7.5%),
    radial-gradient(circle at 26% 72%, #355ad5 0 10%, transparent 10.5%),
    radial-gradient(circle at 78% 72%, #ffb45a 0 9%, transparent 9.5%);
}

.poster-mentorship::after {
  left: 10%;
  right: 10%;
  top: 24%;
  height: 20%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
  clip-path: polygon(0 0, 80% 0, 80% 18%, 0 18%, 0 32%, 65% 32%, 65% 50%, 0 50%, 0 66%, 88% 66%, 88% 84%, 0 84%, 0 100%, 70% 100%, 70% 100%, 0 100%);
}

.poster-fair,
.poster-holidays,
.poster-kingo,
.poster-kb,
.poster-kiaf,
.poster-orange,
.poster-gala-night,
.poster-mentorship {
  background-image: none;
}

.poster-fair::before,
.poster-fair::after,
.poster-holidays::before,
.poster-holidays::after,
.poster-kingo::before,
.poster-kingo::after,
.poster-kb::before,
.poster-kb::after,
.poster-kiaf::before,
.poster-kiaf::after,
.poster-orange::before,
.poster-orange::after,
.poster-gala-night::before,
.poster-gala-night::after,
.poster-mentorship::before,
.poster-mentorship::after {
  display: none;
}

.poster-fair {
  background-color: #d9ed63;
}

.poster-holidays {
  background-color: #b99dd3;
}

.poster-kingo {
  background-color: #6f4e3d;
}

.poster-kb {
  background-color: #f04a32;
}

.poster-kiaf {
  background-color: #b19ca5;
}

.poster-orange {
  background-color: #c6c916;
}

.poster-gala-night {
  background-color: #afa159;
}

.poster-mentorship {
  background-color: #1f4b5a;
}

.poster-gala,
.poster-fair,
.poster-holidays,
.poster-kingo,
.poster-kb,
.poster-kiaf,
.poster-orange,
.poster-gala-night,
.poster-mentorship {
  background: url("./image/thumbnail/bubble.jpg") center center / cover no-repeat;
}

.poster-gala {
  background: url("./image/thumbnail/nomadex.jpg") center center / cover no-repeat;
}

.poster-holidays {
  background: url("./image/thumbnail/maju.jpg") center center / cover no-repeat;
}

.poster-fair {
  background: url("./image/thumbnail/galdae.jpg") center center / cover no-repeat;
}

.poster-kingo {
  background: url("./image/thumbnail/musicflow.jpg") center center / cover no-repeat;
}

.poster-kb {
  background: url("./image/thumbnail/level.jpg") center center / cover no-repeat;
}

.poster-kiaf {
  background: url("./image/thumbnail/hbh.jpg") center center / cover no-repeat;
}

.poster-orange {
  background: url("./image/thumbnail/hankuk.jpg") center center / cover no-repeat;
}

.poster-gala-night {
  background: url("./image/thumbnail/busan.jpg") center center / cover no-repeat;
}

.poster-mentorship {
  background: url("./image/thumbnail/Eolki.jpg") center center / cover no-repeat;
}

.poster-scattered {
  background: url("./image/thumbnail/scattered.jpg") center center / cover no-repeat;
}

.poster-gala::before,
.poster-gala::after,
.poster-fair::before,
.poster-fair::after,
.poster-holidays::before,
.poster-holidays::after,
.poster-kingo::before,
.poster-kingo::after,
.poster-kb::before,
.poster-kb::after,
.poster-kiaf::before,
.poster-kiaf::after,
.poster-orange::before,
.poster-orange::after,
.poster-gala-night::before,
.poster-gala-night::after,
.poster-mentorship::before,
.poster-mentorship::after {
  display: none;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 48px 0 24px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.info-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
}

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 20px 18px 8px;
  }

  .logo {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0;
  }

  .content {
    padding: 12px 18px 36px;
  }

  .gallery-header {
    justify-content: flex-start;
  }

  .category-filter-button {
    font-size: 1.08rem;
  }

  .contact-shell {
    min-height: calc(100vh - 48px);
    padding-top: 12px;
    margin-left: 0;
  }

  .nomadex-landing {
    min-height: auto;
    padding-top: 0;
  }

  .nomadex-media-slot {
    width: 100%;
  }

  .project-meta {
    position: static;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.05rem;
  }

  .project-info-popup {
    top: 88px;
    right: 18px;
    left: 18px;
    width: auto;
    min-width: 0;
    height: min(52vh, 420px);
    padding: 60px 28px 28px;
    font-size: 1rem;
  }

  .project-info-close {
    top: 16px;
    right: 22px;
  }
}

@media (max-width: 820px) {
  .gallery-grid,
  .info-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .nomadex-landing {
    width: calc(100% + 36px);
    margin-right: -18px;
    margin-left: -18px;
  }

  .gallery-grid,
  .info-row {
    grid-template-columns: 1fr;
  }

  .contact-step {
    margin-bottom: 28px;
    font-size: 0.92rem;
  }

  .contact-title {
    max-width: 320px;
    font-size: 2.8rem;
  }

  .contact-back-icon {
    font-size: 0.92rem;
  }

  .contact-form {
    margin-top: 40px;
  }

  .contact-field input {
    font-size: 1.5rem;
  }

  .contact-field textarea {
    min-height: 150px;
  }

  .contact-next {
    font-size: 1.4rem;
  }

  .work-card h2 {
    font-size: 0.88rem;
  }

  .category-filter {
    gap: 0 8px;
  }

  .category-filter-button {
    font-size: 0.9rem;
  }

  .info-card h3 {
    font-size: 1.3rem;
  }
}
