/* Infopia print/design portfolio. Scoped to the replacement homepage section and detail route. */
#vd-site .vd-portfolio-section {
  padding: clamp(104px, 10vw, 160px) 0 clamp(112px, 11vw, 168px) !important;
  background: #fff !important;
  overflow: hidden;
}
#vd-site .vd-portfolio-heading {
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 72px) !important;
}
#vd-site .vd-portfolio-heading .vd-eyebrow { margin-bottom: 15px !important; }
#vd-site .vd-portfolio-heading h2 {
  max-width: 760px;
  margin: 0 !important;
  font-size: clamp(38px, 5.1vw, 72px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.085em !important;
  word-break: keep-all;
}
#vd-site .vd-portfolio-heading h2 span { display: inline; }
#vd-site .vd-portfolio-heading h2 em { color: #435bff; font-style: normal; }
#vd-site .vd-portfolio-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  min-width: 255px;
}
#vd-site .vd-portfolio-aside p { margin: 0; font-size: 14px; line-height: 1.65; text-align: left; }
#vd-site .vd-portfolio-rails {
  --vd-portfolio-gap: clamp(14px, 1.25vw, 22px);
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  flex-direction: column;
  gap: clamp(22px, 2.8vw, 42px);
}
#vd-site .vd-portfolio-rail { width: 100%; overflow: hidden; }
#vd-site .vd-portfolio-track {
  display: flex;
  width: max-content;
  gap: var(--vd-portfolio-gap);
  --vd-portfolio-loop-speed: 30;
  will-change: transform;
  animation: vdPortfolioLeft var(--vd-portfolio-loop-duration, 68s) linear infinite;
}
#vd-site .vd-portfolio-track[data-direction='right'] { animation-name: vdPortfolioRight; animation-duration: var(--vd-portfolio-loop-duration, 68s); }
#vd-site .vd-portfolio-rail:nth-child(3) .vd-portfolio-track { animation-duration: var(--vd-portfolio-loop-duration, 68s); }
#vd-site .vd-portfolio-section.vd-portfolio-is-paused .vd-portfolio-track,
#vd-site .vd-portfolio-rail:hover .vd-portfolio-track,
#vd-site .vd-portfolio-rail:focus-within .vd-portfolio-track { animation-play-state: paused; }
#vd-site .vd-portfolio-card {
  display: block;
  --vd-portfolio-gap: clamp(14px, 1.25vw, 22px);
  width: calc((100vw - (5 * var(--vd-portfolio-gap))) / 6);
  flex: 0 0 auto;
  color: #11131a;
  text-decoration: none;
}
#vd-site .vd-portfolio-card-clone { cursor: pointer; }
#vd-site .vd-portfolio-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  background: #f0f1f3;
}
#vd-site .vd-portfolio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
#vd-site .vd-portfolio-card:not(.vd-portfolio-card-clone):hover .vd-portfolio-image img,
#vd-site .vd-portfolio-card:not(.vd-portfolio-card-clone):focus-visible .vd-portfolio-image img { transform: scale(1.035); }
#vd-site .vd-portfolio-card:not(.vd-portfolio-card-clone):focus-visible { outline: 2px solid #435bff; outline-offset: 5px; border-radius: 16px; }
#vd-site .vd-portfolio-caption { display: flex; flex-direction: column; gap: 6px; padding: 13px 3px 0; }
#vd-site .vd-portfolio-category { color: #435bff; font-size: 11px; line-height: 1; }
#vd-site .vd-portfolio-caption strong { font-size: 14px; font-weight: 600; line-height: 1.35; letter-spacing: -.045em; white-space: nowrap; }
#vd-site .vd-portfolio-contact { display: flex; justify-content: center; margin-top: clamp(52px, 6vw, 82px); }
#vd-site .vd-portfolio-contact > a {
  min-width: 164px !important;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #11131a;
  font-size: 13px;
  text-decoration: none;
}
#vd-site .vd-portfolio-contact > a:hover,
#vd-site .vd-portfolio-contact > a:focus-visible { background: #435bff; outline: none; }
@keyframes vdPortfolioLeft { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(calc(-1 * var(--vd-portfolio-loop-distance)), 0, 0); } }
@keyframes vdPortfolioRight { from { transform: translate3d(calc(-1 * var(--vd-portfolio-loop-distance)), 0, 0); } to { transform: translate3d(0, 0, 0); } }
@media (max-width: 960px) {
  #vd-site .vd-portfolio-heading { align-items: flex-start; gap: 30px; }
  #vd-site .vd-portfolio-aside { align-items: flex-start; min-width: 0; }
  #vd-site .vd-portfolio-aside p { text-align: left; }
}
@media (max-width: 600px) {
  #vd-site .vd-portfolio-section { padding: 86px 0 96px !important; }
  #vd-site .vd-portfolio-heading { display: block; margin-bottom: 43px !important; }
  #vd-site .vd-portfolio-heading h2 { font-size: clamp(38px, 11vw, 58px) !important; }
  #vd-site .vd-portfolio-aside { gap: 14px; margin-top: 24px; }
  #vd-site .vd-portfolio-aside p { font-size: 12px; }
  #vd-site .vd-portfolio-track { gap: 12px; }
  #vd-site .vd-portfolio-card { width: min(66vw, 260px); }
  #vd-site .vd-portfolio-caption strong { font-size: 13px; }
  #vd-site .vd-portfolio-contact { margin-top: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  #vd-site .vd-portfolio-track { animation-play-state: paused !important; }
  #vd-site .vd-portfolio-image img { transition: none; }
}

body.vd-portfolio-detail-page { margin: 0; color: #11131a; background: #fff; font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
.vd-portfolio-detail-page .vd-portfolio-detail { min-height: 100vh; }
.vd-portfolio-detail-page .vd-portfolio-detail-header { display: flex; align-items: center; justify-content: space-between; width: min(1200px, calc(100% - 48px)); height: 80px; margin: 0 auto; }
.vd-portfolio-detail-page .vd-portfolio-detail-brand { color: #11131a; font-size: 18px; font-weight: 700; letter-spacing: -.08em; text-decoration: none; }
.vd-portfolio-detail-page .vd-portfolio-detail-back { display: inline-flex; align-items: center; gap: 8px; color: #434954; font-size: 13px; text-decoration: none; }
.vd-portfolio-detail-page .vd-portfolio-detail-back:hover, .vd-portfolio-detail-page .vd-portfolio-detail-back:focus-visible { color: #435bff; outline: none; }
.vd-portfolio-detail-page .vd-portfolio-detail-back span { font-size: 18px; line-height: 1; }
.vd-portfolio-detail-page .vd-portfolio-detail-main { display: block; width: min(1200px, calc(100% - 48px)); margin: 0 auto; padding: clamp(44px, 8vw, 110px) 0 clamp(86px, 12vw, 150px); }
.vd-portfolio-detail-page .vd-portfolio-detail-art { position: relative; width: min(900px, 100%); margin: 58px auto 0; overflow: hidden; border-radius: 18px; background: #e7e8eb; box-shadow: 0 22px 55px rgba(20,24,36,.13); }
.vd-portfolio-detail-page .vd-portfolio-detail-art img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.vd-portfolio-detail-page .vd-portfolio-detail-art::after { position: absolute; inset: 0; border: 1px solid rgba(17,19,26,.09); border-radius: inherit; content: ''; pointer-events: none; }
.vd-portfolio-detail-page .vd-portfolio-detail-copy { max-width: 860px; margin: 0 auto; }
.vd-portfolio-detail-page .vd-portfolio-detail-copy .vd-portfolio-detail-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 15px; color: #435bff; font-size: 11px; font-weight: 700; line-height: 1.5; letter-spacing: .16em; }
.vd-portfolio-detail-page .vd-portfolio-detail-kicker::before { width: 7px; height: 7px; border-radius: 50%; background: #435bff; content: ''; }
.vd-portfolio-detail-page .vd-portfolio-detail-copy h1 { margin: 0; font-size: clamp(42px, 6.2vw, 72px); line-height: 1.21; letter-spacing: -.06em; word-break: keep-all; }
.vd-portfolio-detail-page .vd-portfolio-detail-copy p { max-width: 650px; margin: 28px 0 0; color: #69707d; font-size: 16px; line-height: 1.75; letter-spacing: -.04em; word-break: keep-all; }
.vd-portfolio-detail-page .vd-portfolio-detail-meta { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: 760px; margin: 42px 0 0; padding: 22px 0; border-top: 1px solid #dfe1e5; border-bottom: 1px solid #dfe1e5; }
.vd-portfolio-detail-page .vd-portfolio-detail-meta div { display: flex; flex-direction: column; gap: 7px; }
.vd-portfolio-detail-page .vd-portfolio-detail-meta dt { color: #89909b; font-size: 11px; }
.vd-portfolio-detail-page .vd-portfolio-detail-meta dd { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -.04em; }
.vd-portfolio-detail-page .vd-portfolio-detail-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: min(1200px, calc(100% - 48px)); margin: 0 auto; padding: 0 0 55px; }
.vd-portfolio-detail-page .vd-portfolio-detail-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; width: 100%; height: 88px; min-height: 88px; box-sizing: border-box; padding: 13px 20px; border: 1px solid #dfe1e5; border-radius: 12px; color: #11131a; background: rgba(255,255,255,.55); text-align: center; text-decoration: none; }
.vd-portfolio-detail-page .vd-portfolio-detail-nav a:last-child { align-items: center; text-align: center; }
.vd-portfolio-detail-page .vd-portfolio-detail-nav a:hover, .vd-portfolio-detail-page .vd-portfolio-detail-nav a:focus-visible { border-color: #435bff; outline: none; }
.vd-portfolio-detail-page .vd-portfolio-detail-nav small { color: #89909b; font-size: 11px; }
.vd-portfolio-detail-page .vd-portfolio-detail-nav strong { font-size: 14px; letter-spacing: -.04em; }
@media (max-width: 720px) {
  .vd-portfolio-detail-page .vd-portfolio-detail-header, .vd-portfolio-detail-page .vd-portfolio-detail-main, .vd-portfolio-detail-page .vd-portfolio-detail-nav { width: min(100% - 36px, 560px); }
  .vd-portfolio-detail-page .vd-portfolio-detail-header { height: 68px; }
  .vd-portfolio-detail-page .vd-portfolio-detail-main { padding: 30px 0 82px; }
  .vd-portfolio-detail-page .vd-portfolio-detail-copy { max-width: none; }
  .vd-portfolio-detail-page .vd-portfolio-detail-copy h1 { font-size: clamp(42px, 12vw, 62px); }
  .vd-portfolio-detail-page .vd-portfolio-detail-copy p { margin-top: 20px; font-size: 14px; }
  .vd-portfolio-detail-page .vd-portfolio-detail-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 30px; }
  .vd-portfolio-detail-page .vd-portfolio-detail-art { margin-top: 40px; }
  .vd-portfolio-detail-page .vd-portfolio-detail-nav { padding-bottom: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  #vd-site .vd-portfolio-rail { overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; }
  #vd-site .vd-portfolio-track { animation: none !important; transform: none !important; }
  #vd-site .vd-portfolio-card-clone { display: none; }
}

/* Standalone portfolio index. Its shell and type use the same visual language as index.html. */
body.vd-portfolio-index-page {
  margin: 0;
  color: #11131a;
  background: #fff;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.vd-portfolio-index-page *,
.vd-portfolio-index-page *::before,
.vd-portfolio-index-page *::after { box-sizing: border-box; }
.vd-portfolio-index-page .vd-portfolio-index { min-height: 100vh; }
.vd-portfolio-index-page .vd-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
  height: 72px;
  padding: 0 31px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(17,19,26,.07);
  backdrop-filter: blur(18px);
}
.vd-portfolio-index-page .vd-brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  gap: 10px;
  color: #11131a;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.vd-portfolio-index-page .vd-mark { display: inline-flex; align-items: flex-end; gap: 2px; height: 22px; }
.vd-portfolio-index-page .vd-mark i {
  display: block;
  width: 7px;
  border-radius: 7px 7px 2px 2px;
  background: #11131a;
  transform: skew(-25deg);
}
.vd-portfolio-index-page .vd-mark i:nth-child(1) { height: 15px; }
.vd-portfolio-index-page .vd-mark i:nth-child(2) { height: 21px; }
.vd-portfolio-index-page .vd-mark i:nth-child(3) { height: 17px; }
.vd-portfolio-index-page .vd-nav { display: flex; align-items: center; flex: 1; gap: 31px; }
.vd-portfolio-index-page .vd-nav a {
  color: #383b43;
  font-size: 13px;
  line-height: normal;
  text-decoration: none;
}
.vd-portfolio-index-page .vd-nav a:hover,
.vd-portfolio-index-page .vd-nav a:focus-visible { color: #435bff; outline: none; }
.vd-portfolio-index-page .vd-menu {
  display: none;
  place-content: center;
  flex: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.vd-portfolio-index-page .vd-menu span { display: block; width: 23px; height: 1px; margin: 5px; background: #11131a; }
.vd-portfolio-index-page .vd-portfolio-index-main {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(84px, 9vw, 132px) 0 148px;
}
.vd-portfolio-index-page .vd-portfolio-index-heading { margin-bottom: 40px; }
.vd-portfolio-index-page .vd-portfolio-index-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #7c8089;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.5;
}
.vd-portfolio-index-page .vd-portfolio-index-kicker b {
  display: block;
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: #435bff;
}
.vd-portfolio-index-page .vd-portfolio-index-heading h1 {
  max-width: 760px;
  margin: 0;
  color: #11131a;
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: -.060em;
  word-break: keep-all;
}
.vd-portfolio-index-page .vd-portfolio-index-heading > p:last-child {
  margin: 22px 0 0;
  color: #747985;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0;
}
.vd-portfolio-index-page .vd-portfolio-index-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 35px;
}
.vd-portfolio-index-page .vd-portfolio-index-filters button {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #dfe1e7;
  border-radius: 9px;
  color: #626975;
  background: #fff;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}
.vd-portfolio-index-page .vd-portfolio-index-filters button:hover,
.vd-portfolio-index-page .vd-portfolio-index-filters button:focus-visible { border-color: #435bff; color: #435bff; outline: none; }
.vd-portfolio-index-page .vd-portfolio-index-filters button[aria-pressed="true"] {
  border-color: #435bff;
  color: #fff;
  background: #435bff;
}
.vd-portfolio-index-page .vd-portfolio-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px clamp(14px, 1.25vw, 22px);
}
.vd-portfolio-index-page .vd-portfolio-index-card {
  display: block;
  min-width: 0;
  color: #11131a;
  text-decoration: none;
}
.vd-portfolio-index-page .vd-portfolio-index-card[hidden] { display: none; }
.vd-portfolio-index-page .vd-portfolio-index-image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  background: #f0f1f3;
}
.vd-portfolio-index-page .vd-portfolio-index-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.vd-portfolio-index-page .vd-portfolio-index-card:hover .vd-portfolio-index-image img,
.vd-portfolio-index-page .vd-portfolio-index-card:focus-visible .vd-portfolio-index-image img { transform: scale(1.035); }
.vd-portfolio-index-page .vd-portfolio-index-card:focus-visible { outline: 3px solid #435bff; outline-offset: 6px; border-radius: 16px; }
.vd-portfolio-index-page .vd-portfolio-index-caption { display: flex; flex-direction: column; gap: 6px; padding: 13px 3px 0; }
.vd-portfolio-index-page .vd-portfolio-index-caption small { color: #435bff; font-size: 11px; line-height: 1; }
.vd-portfolio-index-page .vd-portfolio-index-caption strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.vd-portfolio-index-page .vd-portfolio-index-footer {
  color: #bfc0c3;
  background: #111;
  font-size: 12px;
  line-height: 1.65;
}
.vd-portfolio-index-page .vd-portfolio-index-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, calc(100% - 80px));
  min-height: 108px;
  margin: 0 auto;
}
.vd-portfolio-index-page .vd-portfolio-index-footer a { color: #fff; font-weight: 700; text-decoration: none; }
.vd-portfolio-index-page .vd-portfolio-index-footer a:hover,
.vd-portfolio-index-page .vd-portfolio-index-footer a:focus-visible { color: #c5f541; outline: none; }
@media (max-width: 960px) {
  .vd-portfolio-index-page .vd-header { padding-inline: 22px; }
  .vd-portfolio-index-page .vd-menu { display: grid; margin-left: auto; }
  .vd-portfolio-index-page .vd-nav { display: none; }
  .vd-portfolio-index-page .vd-header.vd-open .vd-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 72px);
    padding: 8px 22px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border-bottom: 1px solid #dfe1e7;
  }
  .vd-portfolio-index-page .vd-header.vd-open .vd-nav a { display: flex; align-items: center; min-height: 48px; }
}
@media (max-width: 760px) {
  .vd-portfolio-index-page .vd-header { padding-inline: 18px; }
  .vd-portfolio-index-page .vd-portfolio-index-main,
  .vd-portfolio-index-page .vd-portfolio-index-footer-inner { width: calc(100% - 36px); }
  .vd-portfolio-index-page .vd-portfolio-index-main { padding: 82px 0 96px; }
  .vd-portfolio-index-page .vd-portfolio-index-heading { margin-bottom: 30px; }
  .vd-portfolio-index-page .vd-portfolio-index-heading h1 { font-size: clamp(40px, 11.7vw, 64px); }
  .vd-portfolio-index-page .vd-portfolio-index-heading > p:last-child { margin-top: 18px; font-size: 13px; }
  .vd-portfolio-index-page .vd-portfolio-index-heading > p:last-child br { display: none; }
  .vd-portfolio-index-page .vd-portfolio-index-filters { gap: 6px; margin-bottom: 30px; }
  .vd-portfolio-index-page .vd-portfolio-index-filters button { padding: 8px 12px; font-size: 12px; }
  .vd-portfolio-index-page .vd-portfolio-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 14px; }
  .vd-portfolio-index-page .vd-portfolio-index-caption strong { font-size: 13px; }
  .vd-portfolio-index-page .vd-portfolio-index-footer-inner { display: block; padding: 24px 0; }
  .vd-portfolio-index-page .vd-portfolio-index-footer a { display: inline-flex; margin-top: 12px; }
  .vd-portfolio-index-page .vd-header.vd-open .vd-nav { top: 72px; }
}

/* Shared header baseline: the reference header starts at x31 and keeps a
   72px rail on every desktop route. The !important declarations win over the
   legacy inline homepage reset without changing the inquiry form styles. */
.vd-portfolio-index-page .vd-header,
.vd-portfolio-detail-page .vd-header {
  width: 100%;
  margin: 0;
  height: 72px !important;
  padding: 0 31px !important;
  gap: 56px !important;
  justify-content: flex-start;
  background: rgba(255, 255, 255, .96) !important;
}
.vd-portfolio-index-page .vd-header .vd-brand,
.vd-portfolio-detail-page .vd-header .vd-brand {
  flex: none;
  color: #11131a;
}
.vd-portfolio-detail-page .vd-header .vd-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
}
.vd-portfolio-index-page .vd-header .vd-nav,
.vd-portfolio-detail-page .vd-header .vd-nav { gap: 31px; }

/* Keep the blue word centred against a fixed coordinate. Equal side columns
   keep a longer rotating word from moving “쉬운” or covering the centre. */
#vd-site .vd-hero-title-group {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: baseline !important;
  width: min(100%, 1000px) !important;
  margin: 0 auto;
  column-gap: 16px !important;
  white-space: nowrap;
}
#vd-site .vd-hero-title-fixed {
  grid-column: 2 !important;
  justify-self: center !important;
}
#vd-site .vd-hero-title-changing {
  position: static !important;
  width: auto;
  white-space: nowrap;
}
#vd-site .vd-hero-title-before { grid-column: 1 !important; justify-self: end !important; }
#vd-site .vd-hero-title-after { grid-column: 3 !important; justify-self: start !important; }

/* The prompt copy in the second reference sits 6px lower in the panel. */
#vd-site .vd-prompt > .vd-prompt-body > textarea { position: relative; top: 6px !important; }

/* Fill each landscape hero card edge to edge. Cropping is intentional so
   portrait and square portfolio artwork never leaves blank side gutters. */
#vd-site .vd-hero-card .vd-art[style*="--space-image"] {
  background-image: none !important;
  background-color: transparent !important;
  background-size: cover !important;
  background-position: center !important;
}
#vd-site .vd-hero-card .vd-art[style*="--space-image"]::before {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  filter: none !important;
  transform: none !important;
  will-change: auto;
}

/* “좋은” and “과” stay black while only the requested nouns use blue. */
#vd-site .vd-about h2 .vd-about-ink { color: var(--vd-ink) !important; font-style: normal; }
#vd-site .vd-portfolio-heading h2 .vd-portfolio-ink { color: var(--vd-ink) !important; font-style: normal; }

@media (max-width: 960px) {
  .vd-portfolio-index-page .vd-header,
  .vd-portfolio-detail-page .vd-header {
    width: 100%;
    margin: 0;
    height: 70px !important;
    padding-inline: 22px !important;
    gap: 0 !important;
    justify-content: space-between;
  }
  .vd-portfolio-index-page .vd-header.vd-open .vd-nav,
  .vd-portfolio-detail-page .vd-header.vd-open .vd-nav { top: 70px !important; }
  #vd-site .vd-hero-title-group { column-gap: 10px !important; }
}
@media (max-width: 760px) {
  .vd-portfolio-index-page .vd-header,
  .vd-portfolio-detail-page .vd-header { padding-inline: 18px !important; }
}
