@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,700;6..96,800&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000000;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f1f1f;
  background: transparent;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background: #f7f4ef;
}

body::after {
  position: fixed;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58vh;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      #f7f4ef 0%,
      rgba(247, 244, 239, 0.9) 24%,
      rgba(247, 244, 239, 0.45) 58%,
      rgba(247, 244, 239, 0) 100%
    ),
    var(--bottom-background-image) center bottom/cover no-repeat;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 20px);
  height: 60px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #171717;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
}

.brand-tools {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 0px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
}

.language-options {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.language-current-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(31, 31, 31, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: #2e749c;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: #2c2c2c;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.language-button:hover,
.language-button.is-active {
  color: #ffffff;
  background: #2e749c;
}.language-button:hover{background: #62bdf2;}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #242424;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ff1212;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 31, 31, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1f1f1f;
}

.notify-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(31, 31, 31, 0.616);
  border-radius: 10px;
  color: #035217;
  background: #ffffffb6;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.notify-button:hover {
  background: #4ad353d2;
  color: #ffffff;
}

main {
  min-height: 140vh;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86vh;
  padding: 120px 24px 56px;
  background:
    linear-gradient(
      rgba(247, 244, 239, 0.12) 0%,
      rgba(247, 244, 239, 0.62) 58%,
      #f7f4ef 100%
    ),
    var(--hero-background-image) center/cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 26vh;
  pointer-events: none;
  background: linear-gradient(
    rgba(247, 244, 239, 0),
    #f7f4ef 82%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(280px, 540px);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  width: min(1040px, 100%);
}

.hero-frame {
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 24px 20px rgba(0, 0, 0, 0.16);
}

.hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-quote {
  margin: 0;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: clamp(1.25rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 200;
  line-height: 1.08;
}

.hero-signature {
  display: block;
  margin-top: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
}

.content-section {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

#bio {
  position: relative;
  z-index: 0;
}

#bio::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc(50% - 50vw);
  bottom: -72px;
  left: calc(50% - 50vw);
  content: "";
  pointer-events: none;
  background: linear-gradient(
    #f7f4ef 0%,
    #f7f4ef35 68%,
    rgba(247, 244, 239, 0) 100%
  );
}

.content-section h2 {
  margin: 0 0 18px;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
}

#galerie h2 {
  text-align: center;
}

.content-section p {
  max-width: 1090px;
  margin: 0;
  color: #55504a;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: 1.18rem;
  line-height: 1.8;
}

.bio-layout {
  display: flow-root;
}

.bio-video {
  float: right;
  width: min(38%, 420px);
  margin: 0 0 24px 42px;
  overflow: hidden;
  border-radius: 6px;
  background: #d8d8d8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.bio-video-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  color: #ffffff;
  background: #d8d8d8;
  text-decoration: none;
}

.bio-video-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-video-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.18);
  transition: background 160ms ease;
}

.bio-video-link:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

.bio-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 0, 0, 0.88);
  transform: translate(-50%, -50%);
}

.bio-video-play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #ffffff;
  content: "";
  transform: translate(-40%, -50%);
}

.gallery-collections {
  display: grid;
  gap: 48px;
  margin-top: 34px;
}

.gallery-collection {
  min-width: 0;
}

.gallery-collection h3 {
  margin: 0 0 16px;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 400;
}

.gallery-error {
  max-width: 680px;
  color: #8a3028;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.gallery-row {
  --gallery-gap: 18px;
  --gallery-item-width: clamp(150px, 18vw, 230px);
  display: flex;
  gap: var(--gallery-gap);
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 0 16px 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.gallery-item {
  flex: 0 0 var(--gallery-item-width);
  scroll-snap-align: start;
}

.gallery-image,
.gallery-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: #d8d8d8;
}

.gallery-image {
  cursor: pointer;
}

.content-section .gallery-caption {
  margin: 8px 0 0;
  color: #2d2a27;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
}

.gallery-placeholder {
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-100%);
  animation: gallery-loading 1.4s ease-in-out infinite;
}

@keyframes gallery-loading {
  to {
    transform: translateX(100%);
  }
}

.sculptures-section {
  margin: 40px 0;
  padding: 58px 0 64px;
  color: #1f1f1f;
  background:
    linear-gradient(rgba(247, 244, 239, 0.58), rgba(247, 244, 239, 0.58)),
    url("elements/sculpturesback.png") center/cover no-repeat,
    #cfe8f3;
}

.sculptures-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.sculptures-section h2 {
  margin: 0 0 24px;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  text-align: center;
}

.sculptures-carousel-shell {
  position: relative;
  width: min(820px, calc(100% - 112px));
  min-height: 326px;
  margin: 0 auto;
}

.sculptures-carousel .gallery-row {
  --gallery-item-width: calc((100% - (var(--gallery-gap) * 2)) / 3);
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sculptures-carousel .gallery-row::-webkit-scrollbar {
  display: none;
}

.sculptures-carousel .gallery-image,
.sculptures-carousel .gallery-placeholder {
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.46);
  /*box-shadow: 0 18px 46px rgba(48, 90, 110, 0.073); */
}

.sculptures-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #1f1f1f;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(48, 90, 110, 0.18);
  font-size: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.sculptures-nav:hover {
  background: #ffffff;
}

.sculptures-nav-prev {
  left: -66px;
}

.sculptures-nav-next {
  right: -66px;
}

.sculptures-description {
  min-height: 3.2em;
  margin: 18px auto 0;
  color: #3f5762;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: 1.08rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  transition: opacity 160ms ease;
}

.sculptures-description.has-description {
  opacity: 1;
}

.interview-section {
  padding-top: 48px;
}

.interview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 320px);
  align-items: top;
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(24px, 5vw, 44px);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.interview-card p {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f1f1f;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1.25;
}

.interview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 142px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #f66f6f;
  box-shadow: 3px 3px 0 rgba(46, 116, 156, 0.26);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.interview-button:hover {
  background: #ef2e2e;
  box-shadow: 4px 4px 0 rgba(46, 116, 156, 0.3);
}

.interview-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.parcours-subsections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.parcours-subsection h3 {
  margin: 0 0 14px;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 400;
}

.parcours-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #55504a;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  align-items: start;
  gap: clamp(24px, 5vw, 56px);
}

.contact-form-panel {
  padding: clamp(22px, 4vw, 36px);
  border-radius: 18px;
  
}

.contact-form {
  width: 100%;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #55504a;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: 1rem;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.notify-form input {
  width: 100%;
  border: 1px solid rgba(31, 31, 31, 0.2);
  border-radius: 6px;
  padding: 12px 14px;
  color: #1f1f1f;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.notify-form input:focus {
  outline: 2px solid rgba(106, 165, 199, 0.45);
  outline-offset: 2px;
}

.contact-checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.contact-checkbox input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  padding: 0;
}

.contact-checkbox span {
  flex: 1;
}

.contact-submit {
  min-height: 42px;
  margin-top: 20px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #6aa5c7;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit:hover {
  background: #558eae;
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.contact-status {
  margin-top: 14px;
  min-height: 1.5em;
  font-size: 1rem;
}

.contact-links-panel {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f1f1f;
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: #2e749c;
}

.contact-link-logo {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}

.contact-link-logo-transparent {
  background: transparent;
  border-radius: 0;
}

.contact-link-logo img {
  display: block;
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.contact-link-logo-transparent img {
  width: 140%;
  height: 140%;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(31, 31, 31, 0.42);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(460px, 100%);
  padding: 32px;
  border-radius: 8px;
  /*background: #f7f4ef;*/
  background:
    linear-gradient(rgba(247, 244, 239, 0.605), rgba(247, 244, 239, 0.593)),
    url("elements/contactback.jpg") center/cover no-repeat,
    #cfe8f3;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.modal h2 {
  margin: 0 0 22px;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #1f1f1f;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(31, 31, 31, 0.08);
}

.notify-form {
  display: grid;
  gap: 16px;
}

.notify-form label {
  display: grid;
  gap: 8px;
  color: #55504a;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
  font-size: 1rem;
}

.artwork-modal {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(240px, 1fr);
  gap: 28px;
  width: min(1120px, 100%);
}

.artwork-modal-image {
  display: block;
  width: 100%;
  max-height: min(72vh, 680px);
  border-radius: 0px;
  object-fit: contain;
  background: #e5e5e5;
}

.artwork-modal-content {
  align-self: center;
}

.artwork-modal-details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 16px;
  margin: 0 0 24px;
  color: #55504a;
  font-family: "Bodoni Moda", "Bodoni 72", Didot, serif;
}

.artwork-modal-details dt {
  color: #1f1f1f;
  font-weight: 700;
}

.artwork-modal-details dd {
  margin: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid rgba(31, 31, 31, 0.16);
  color: #ffffff;
  font-size: 0.92rem;
}

.site-footer::before {
  position: absolute;
  z-index: 0;
  top: -96px;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  content: "";
  background: linear-gradient(
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.255) 62%,
    #000000 100%
  );
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  color: #d7ecf7;
}

@media (max-width: 1005px) {
  .site-header,
  .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav {
    height: 64px;
    width: calc(100% - 12px);
    gap: 10px;
  }

  .brand-tools {
    gap: 8px;
  }

  .brand-tools .language-switcher {
    display: inline-flex;
  }

  .logo {
    font-size: 0.96rem;
  }

  .language-current-button {
    display: inline-flex;
  }

  .language-options {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 12;
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 52px;
    padding: 6px;
    border: 1px solid rgba(31, 31, 31, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }

  .language-switcher.is-open .language-options {
    display: flex;
  }

  .language-button {
    width: 100%;
    min-width: 40px;
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .language-options .language-button.is-active {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 6px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: min(270px, calc(100vw - 24px));
    padding: 14px;
    border: 1px solid rgba(31, 31, 31, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  .notify-button {
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 82vh;
    padding: 104px 16px 48px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-frame {
    width: min(320px, 100%);
    margin: 0 auto;
    padding: 9px;
  }

  .hero-quote {
    text-align: center;
  }

  .bio-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bio-video {
    float: none;
    width: 100%;
    margin: 0;
  }

  .parcours-subsections {
    grid-template-columns: 1fr;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .artwork-modal {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-collections {
    gap: 10px;
  }

  .gallery-row {
    --gallery-gap: 14px;
    --gallery-item-width: 48vw;
  }

  .sculptures-section {
    padding: 48px 0 56px;
  }

  .sculptures-carousel-shell {
    width: min(300px, 76vw);
    min-height: min(375px, 95vw);
  }

  .sculptures-carousel .gallery-row {
    --gallery-item-width: min(300px, 76vw);
  }

  .sculptures-nav {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .sculptures-nav-prev {
    left: -18px;
  }

  .sculptures-nav-next {
    right: -18px;
  }

  .interview-card {
    grid-template-columns: 1fr;
  }
}
