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

html,
body {
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

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

/* ── Image protection ──
   Makes <img> transparent to pointer events so right-click targets the
   parent element instead of the image. This hides the browser's native
   "Save Image As", "Open Image in New Tab", and "Copy Image" context-menu
   entries, and prevents drag-to-desktop. Click/hover still work on parent
   <a>/<figure>/<section> containers. Accessibility (alt text, screen
   readers) and SEO (image indexing) are unaffected. */
img,
picture {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.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;
}

/* ── Fixed logo (top-left) ── */

.logo {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: transparent;
  mix-blend-mode: difference;
}

/* ── Fixed nav (top-right, vertical) ── */

.nav-right {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: #fff;
  background: transparent;
  mix-blend-mode: difference;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-instagram svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

/* ── Mobile hamburger toggle ── */

.nav-toggle {
  display: none;
  position: relative;
  width: 24px;
  height: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.nav-toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.nav-toggle-bar:nth-child(1) { top: 2px; }
.nav-toggle-bar:nth-child(2) { top: 7px; }
.nav-toggle-bar:nth-child(3) { top: 12px; }

.nav-right.nav-open .nav-toggle-bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.nav-right.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-right.nav-open .nav-toggle-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

@media (max-width: 640px) {
  .nav-right {
    gap: 6px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-right > .nav-instagram,
  .nav-right > .nav-link {
    display: none;
  }

  .nav-right.nav-open > .nav-instagram {
    display: inline-flex;
    margin-top: 10px;
  }

  .nav-right.nav-open > .nav-link {
    display: inline-flex;
  }
}

/* ── Main content ── */

.main-content {
  padding-top: 64px;
  padding-bottom: 80px;
}

@media (max-width: 640px) {
  .main-content {
    padding-top: 48px;
    padding-bottom: 24px;
  }
}

/* ── View toggle ── */

.view-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  margin-bottom: 20px;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.02em;
  font-family: Arial, Helvetica, sans-serif;
}

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
  padding: 0;
  line-height: inherit;
}

.toggle-btn:not(.active) {
  opacity: 0.5;
}

.toggle-sep {
  opacity: 0.5;
  user-select: none;
}

/* ── Project list (text view) ── */

.text-view {
  padding: 0 24px;
}

.project-list {
  list-style: none;
}

.project-link {
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.45;
  font-family: Arial, Helvetica, sans-serif;
}

/* ── Image view ── */

.image-view {
  position: relative;
  width: 100%;
}

.image-view-link {
  position: absolute;
  display: block;
  cursor: pointer;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.image-view-link > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-view-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.image-hover-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 240;
  pointer-events: none;
}

body.style-mode-style2 .image-hover-layer {
  z-index: 275;
}

.image-hover-preview {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: opacity, filter;
}

.image-hover-preview > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-hover-preview-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.text-view.hidden,
.image-view.hidden {
  display: none;
}

.image-view--mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}

.image-view-link--mobile {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  transition: none;
}

.image-view-link--mobile > picture {
  height: auto;
}

.image-view-link--mobile .image-view-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hidden {
  display: none !important;
}

/* ── Hover: all text fades except the hovered element ── */

.hoverable {
  transition: opacity 0.2s ease;
}

body.has-hover .hoverable {
  opacity: 0.5;
}

body.has-hover .hoverable.is-hovered {
  opacity: 1;
}

.logo,
.nav-right,
.view-toggle {
  transition: filter 0.25s ease, opacity 0.25s ease;
}

body.has-image-hover .logo,
body.has-image-hover .nav-right,
body.has-image-hover .view-toggle,
body.has-image-hover .image-view-link:not(.is-image-hovered) {
  filter: blur(14px);
  opacity: 0.2;
}

body.has-image-hover .image-view-link.is-image-hovered {
  filter: none;
  opacity: 1;
  z-index: 250;
}

body.style-mode-style2.has-image-hover .image-view-link {
  z-index: 270;
}

body.style-mode-style2.has-image-hover .image-view-link.is-image-hovered {
  z-index: 280;
}


/* ══════════════════════════════════════════
   Inner-page styles (styling hub, city
   pages, visual works, cv, contact)
   ══════════════════════════════════════════ */

.page {
  position: relative;
  z-index: 1;
  padding: 72px 24px 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.site-logo {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.site-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.site-nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.instagram-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

.section-title {
  margin: 0 0 24px;
  font-size: 2rem;
  font-weight: 700;
}

.brutalist-list {
  list-style: none;
}

.brutalist-list li {
  margin: 0 0 8px;
}

.brutalist-list a,
.brutalist-list span {
  display: inline-block;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.05;
}

.contact-layout {
  max-width: 820px;
  margin-top: 12vh;
}

.artist-statement {
  text-align: left;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  margin: 0 0 3rem;
  padding-left: 0.1em;
}

.contact-links {
  display: grid;
  gap: 8px;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  max-width: 560px;
}

.contact-method-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38em;
  width: fit-content;
}

.contact-method-link svg {
  width: 0.82em;
  height: 0.82em;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-method-link span {
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 600px) {
  .contact-layout {
    margin-top: max(120px, 18vh);
    max-width: 100%;
  }

  .artist-statement {
    font-size: clamp(0.9rem, 3.8vw, 1.05rem);
    margin-bottom: 2rem;
  }

  .contact-links {
    gap: 20px;
    font-size: clamp(1.1rem, 6vw, 1.75rem);
  }

  .contact-method-link {
    width: 100%;
    max-width: 100%;
  }

  .contact-method-link span {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }
}

.blank-page {
  min-height: 100vh;
}

/* ── Dynamic styling project page ── */

.styling-project-page {
  position: relative;
  min-height: 100vh;
}

.styling-project-layout {
  --layout-width: 1280;
  --layout-height: 900;
  --layout-scale: 1;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
}

.styling-project-canvas {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  will-change: transform;
}

.styling-project-tile {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.styling-project-tile > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.styling-project-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Inter-Regular.woff2?v=3.19") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Inter-Italic.woff2?v=3.19") format("woff2");
}

.styling-project-credits {
  position: absolute;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: #000;
  white-space: normal;
  pointer-events: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: normal;
  font-variant-ligatures: normal;
}

.styling-project-credits-line {
  margin: 0;
}

.styling-project-credits-italic {
  font-style: italic;
}

.styling-project-empty {
  max-width: 36rem;
  padding: 120px 24px 48px;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
}

body.styling-project-view {
  background: #fff;
}

body.styling-project-view .nav-instagram,
body.styling-project-view .nav-link {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.styling-project-view .logo,
body.styling-project-view .nav-link {
  padding: 0;
}

body.styling-project-view .nav-instagram {
  width: auto;
  height: auto;
}

/* ── CV page ── */

.cv-page {
  padding-top: 88px;
}

@media (max-width: 640px) {
  .cv-page {
    padding-top: 0;
  }
}

/* Two localized white panels shaped like a backwards L with a
   crook: one cap over the logo (top-left) and one over the nav
   column (top-right). Middle top is unmasked so any text there
   stays visible. The masks are built by intersecting two linear
   gradients — one per inner edge — so the fade + blur band runs
   uniformly along each whole edge instead of bunching at a corner.
   backdrop-filter: blur softens whatever peeks through the fade
   band so scrolled content reads as a gentle haze instead of a
   hard edge.
   On mobile the logo + hamburger share the same baseline, so a
   single full-width strip under them reads cleaner than two
   caps — ::after is hidden until the dropdown opens. */
body:has(.cv-page)::before,
body:has(.cv-page)::after {
  content: "";
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 50;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  transition: height 0.3s ease, width 0.3s ease;
}

/* Left cap — sized to hug "YEOWOON JUNG" (text ends near x=159
   horizontally and y=40 vertically). Two gradients are intersected
   so the fade runs uniformly down the right edge and across the
   bottom edge rather than curving around the inner corner. */
body:has(.cv-page)::before {
  left: 0;
  width: 210px;
  height: 54px;
  mask-image:
    linear-gradient(
      to right,
      #000 78%,
      rgba(0, 0, 0, 0.55) 90%,
      rgba(0, 0, 0, 0.2) 97%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      #000 76%,
      rgba(0, 0, 0, 0.5) 90%,
      rgba(0, 0, 0, 0.2) 97%,
      transparent 100%
    );
  -webkit-mask-image:
    linear-gradient(
      to right,
      #000 78%,
      rgba(0, 0, 0, 0.55) 90%,
      rgba(0, 0, 0, 0.2) 97%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      #000 76%,
      rgba(0, 0, 0, 0.5) 90%,
      rgba(0, 0, 0, 0.2) 97%,
      transparent 100%
    );
}

/* Right cap — width is tuned so the opaque zone ends just to
   the left of the "V" in "Visual Works" (the longest nav link).
   The left-edge gradient carries the soft blur the full height of
   the cap, and the bottom-edge gradient carries it the full width,
   so blur sits uniformly along the inner edges rather than only at
   the bottom-left corner. Height covers the stacked nav column
   (Instagram + 4 links starting at top:24, Contact ending ≈ y=152). */
body:has(.cv-page)::after {
  right: 0;
  width: 148px;
  height: 178px;
  mask-image:
    linear-gradient(
      to left,
      #000 83%,
      rgba(0, 0, 0, 0.55) 93%,
      rgba(0, 0, 0, 0.2) 98%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      #000 86%,
      rgba(0, 0, 0, 0.5) 94%,
      rgba(0, 0, 0, 0.2) 98%,
      transparent 100%
    );
  -webkit-mask-image:
    linear-gradient(
      to left,
      #000 83%,
      rgba(0, 0, 0, 0.55) 93%,
      rgba(0, 0, 0, 0.2) 98%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      #000 86%,
      rgba(0, 0, 0, 0.5) 94%,
      rgba(0, 0, 0, 0.2) 98%,
      transparent 100%
    );
}

/* Mobile: logo + hamburger share the same top line, so ::before is
   a thin full-width strip under both — only the bottom edge needs
   to fade, so a single linear gradient is enough (no compositing).
   When the hamburger opens, ::after reappears using the same width
   and edge-blur mask as the desktop right cap — we only override
   the height because the mobile dropdown stack is taller (the
   hamburger sits above the Instagram icon, nav-instagram has an
   extra margin-top, and the flex column uses a larger gap), so the
   last item "Contact" lands near y≈200 instead of the desktop
   y≈152. Because the bottom-edge gradient uses percentage stops,
   scaling height alone automatically pushes the fade past "Contact"
   with the same proportional blur band as desktop. */
@media (max-width: 640px) {
  body:has(.cv-page)::before {
    left: 0;
    right: 0;
    width: auto;
    height: 56px;
    mask-image: linear-gradient(
      to bottom,
      #000 64%,
      rgba(0, 0, 0, 0.55) 82%,
      rgba(0, 0, 0, 0.2) 94%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 64%,
      rgba(0, 0, 0, 0.55) 82%,
      rgba(0, 0, 0, 0.2) 94%,
      transparent 100%
    );
    transition: height 0.3s ease;
  }
  body:has(.cv-page)::after {
    display: none;
  }
  body:has(.cv-page):has(.nav-right.nav-open)::after {
    display: block;
    height: 234px;
  }
}

.cv-download-link {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  border: 1px solid #000;
  padding: 6px 14px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.cv-download-link:hover {
  background: #000;
  color: #fff;
  text-decoration: none !important;
}

.cv-section {
  margin-bottom: 40px;
}

.cv-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.cv-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.cv-section-header .cv-section-title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cv-section-header .cv-download-link {
  flex-shrink: 0;
  margin-right: 130px;
}

@media (max-width: 640px) {
  .cv-section-header {
    gap: 12px;
  }

  .cv-section-header .cv-download-link {
    margin-right: 0;
    padding: 4px 10px;
    font-size: 0.72rem;
  }
}

.cv-entry {
  display: grid;
  grid-template-columns: 180px minmax(220px, 1fr) 2fr;
  gap: 24px 48px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: start;
}

.cv-entry:last-child {
  border-bottom: none;
}

.cv-entry--compact {
  padding: 8px 0;
}

.cv-entry-dates {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 600;
}

.cv-entry-main {
  min-width: 0;
}

.cv-entry-role {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cv-entry-org {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 2px;
}

.cv-entry-details {
  min-width: 0;
}

.cv-entry-description {
  font-size: 0.9rem;
  line-height: 1.6;
}

.cv-entry-description + .cv-entry-list {
  margin-top: 8px;
}

.cv-entry-list {
  list-style: disc;
  padding-left: 20px;
}

.cv-entry-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 4px;
}

.cv-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.cv-rating-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
  display: inline-block;
  flex-shrink: 0;
}

.cv-rating-dot--filled {
  background: #000;
}

@media (max-width: 800px) {
  .cv-entry {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .cv-entry-dates {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

/* ── Visual Works gallery ── */

.vw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px 64px;
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 40px;
}

.vw-item {
  position: relative;
  width: 100%;
}

.vw-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.vw-item:not(.vw-carousel):hover .vw-item-overlay,
.vw-carousel-inner:hover .vw-item-overlay {
  opacity: 1;
}

.vw-overlay-copy {
  padding: 18px 20px;
  color: #fff;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}

.vw-overlay-line {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.vw-overlay-title {
  font-style: italic;
}

.vw-image-inner {
  position: relative;
  overflow: hidden;
}

.vw-image-inner > img,
.vw-image-inner > picture > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.vw-item > img,
.vw-item > picture > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.vw-item > img.vw-img-bordered,
.vw-item > picture > img.vw-img-bordered {
  border: 1px solid #e0e0e0;
}

.visual-works-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* ── Carousel ── */

.vw-carousel {
  position: relative;
  width: 100%;
}

.vw-carousel-inner {
  width: 100%;
}

.vw-carousel-track {
  position: relative;
  overflow: hidden;
}

.vw-carousel-slide {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.vw-carousel-slide > img,
img.vw-carousel-slide {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.vw-carousel-slide.active {
  position: relative;
  opacity: 1;
}

.vw-carousel-next {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #000;
  transition: opacity 0.15s ease;
}

.vw-carousel-next:hover {
  opacity: 0.4;
}

.vw-carousel-next svg {
  display: block;
  width: 18px;
  height: 18px;
}

.vw-carousel-counter {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #999;
  font-family: Arial, Helvetica, sans-serif;
}

/* ── Video ── */

.vw-video-inner {
  position: relative;
  overflow: hidden;
}

.vw-video video {
  display: block;
  width: 100%;
  height: auto;
}

.vw-video-fullscreen {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 5px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 3;
  line-height: 0;
}

.vw-video:hover .vw-video-fullscreen {
  opacity: 1;
}

.vw-video-fullscreen svg {
  display: block;
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .vw-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-right: 0;
    padding-bottom: 32px;
  }

  .vw-item {
    cursor: pointer;
  }

  .vw-item img,
  .vw-item picture {
    pointer-events: auto;
  }

  .vw-item:not(.vw-carousel):hover .vw-item-overlay,
  .vw-carousel-inner:hover .vw-item-overlay {
    opacity: 0;
  }

  .vw-item:not(.vw-carousel).is-details-visible .vw-item-overlay,
  .vw-item.vw-carousel.is-details-visible .vw-carousel-inner .vw-item-overlay {
    opacity: 1;
  }

  .vw-carousel-next {
    right: 8px;
    top: auto;
    bottom: 8px;
    transform: none;
    padding: 12px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 4px;
    color: #fff;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

  .vw-carousel-next svg {
    width: 20px;
    height: 20px;
  }
}

