@font-face {
  font-family: 'Compagnon';
  src: url('fonts/Compagnon-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Compagnon';
  src: url('fonts/Compagnon-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Compagnon';
  src: url('fonts/Compagnon-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Velvelyne';
  src: url('fonts/Velvelyne-Regular.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Velvelyne';
  src: url('fonts/Velvelyne-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Velvelyne';
  src: url('fonts/Velvelyne-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Velvelyne';
  src: url('fonts/Velvelyne-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 22px;
}

body {
  margin: 0;
  width: 100%;
  height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: var(--line-height-body);
  font-size: 1rem;
  text-wrap: pretty;
  overflow-x: hidden;
  text-underline-position: under;
}

main {
  padding: 2rem;
  width: 100%;
  max-width: 1400px;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

h3,
h4,
h5,
h6,
.content p,
.content figure,
.content ul,
.content table,
.table-small-screen,
.content details,
.content video {
  width: 100%;
  max-width: 900px;
  align-self: center;
  margin: 1rem 0;
}

.content h2,
.content blockquote {
  width: 100%;
  align-self: flex-start;
  margin: 1rem 0;
}

.content h2 {
  margin-top: 2rem;
}

blockquote {
  font-size: 1.25rem;
}

a {
  color: black;
  text-underline-position: under;
  transition: background 0.3s ease-in-out;
}

main a:hover {
  transition: background 0.3s ease-in-out;
  background: var(--color-gr);
}

button {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 0;
  padding: 0.25rem 1rem;
  cursor: pointer;
  background: transparent;
  color: black !important;
  outline: 1px solid black;
  outline-offset: -2px;
  border: none;
  transition: background 0.3s ease-in-out;
}

button:hover {
  background: var(--color-gr);
}

h1 {
  font-family: var(--font-title);
  font-weight: 500;
  line-height: var(--line-height-title);
  font-size: 2.5rem;
  margin: 0;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1rem;
  margin-top: 2rem;
}

h4 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: -1rem;
}

h5 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 2rem;
  padding: 0 0.5rem;
  background: var(--color-pk);
  display: inline-block;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 2rem;
  padding: 0 0.5rem;
  background: var(--color-gr);
  display: inline-block;
}

hr {
  max-width: 100%;
  border: none;
  border-top: var(--color-dg) 1px solid;
  margin: 0 0 0 -2rem;
}

.color-bl {
  color: var(--color-bl);
}

.color-pk {
  color: var(--color-pk);
}

.color-dg {
  color: var(--color-dg);
}

.bg-bl {
  background: var(--color-bl);
}

.bg-gr {
  background: var(--color-gr);
}

.bg-pk {
  background: var(--color-pk);
}

.bg-br {
  background: var(--color-br);
}

.bg-dg {
  background: var(--color-dg);
}

.bg-lg {
  background: var(--color-lg);
}

.border-pk {
  border: 1px solid #e133be !important;
}

.border-gr {
  border: 1px solid #9cc62a;
}

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

.hover-underline-gr:hover {
  text-decoration: underline solid var(--color-gr) 2px;
  text-underline-position: under;
}

.hover-underline-pk:hover {
  text-decoration: underline solid var(--color-pk) 2px;
  text-underline-position: under;
}

.font-weight-500 {
  font-weight: 500;
}

details summary {
  cursor: pointer;
  list-style: none;
  border-bottom: black 3px dotted;
}

details summary::-webkit-details-marker {
  display: none;
}

/* --------------- author bio --------------- */

.author {
  width: 100%;
  height: 8rem;
  position: relative;
}

.author-toggle {
  margin: 1rem 0;
}

.author-bio {
  position: absolute;
  left: 2rem;
  width: 100%;
  max-width: 45vh;
  height: 40vh;
  max-height: 40vw;
  font-size: 0.8rem;
  overflow-y: scroll;
  padding: 1.5rem;
  border: 1px solid #9cc62a;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
  transform: rotate(-5deg) scale(1);
  z-index: 5;
  cursor: grab;
  transition: transform 0.2s ease;
  display: none;
}

.author-bio p {
  margin: 0;
}

.author-close {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.25;
  mix-blend-mode: multiply;
  text-decoration: none;
}

.author-close:hover {
  opacity: 0.75;
  background: transparent;
}

.author-bio.active {
  display: block;
}

.author-bio:hover {
  transform: rotate(0deg) scale(1.25);
  z-index: 10;
}

.author-bio:active {
  transform: rotate(0deg) scale(1);
}

.author-2 {
  left: 9rem;
}


/* ------------------ foreword post-it note ------------------ */

.foreword {
  position: absolute;
  top: 25%;
  right: 5%;
  width: 100%;
  max-width: 45vh;
  height: 40vh;
  max-height: 40vw;
  overflow-y: scroll;
  padding: 1.5rem;
  background: #fffa5a;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid #e0d87a;
  transform: rotate(3deg) scale(1);
  z-index: 5;
  cursor: grab;
  transition: transform 0.2s ease;
}

.foreword p {
  margin: 0;
}

.foreword:hover {
  transform: rotate(0deg) scale(1.2);
  z-index: 10;
}

.foreword:active {
  cursor: grabbing;
  transform: rotate(0deg);
}

.touch-screen {
  position: static;
  top: auto;
  margin: 2rem auto;
  max-width: 900px;
  max-height: 35vh;
  overflow-y: scroll;
  padding: 1rem;
  transform: none;
  z-index: 5;
  cursor: default;
}


.author-bio.touch-screen {
  font-size: 1rem;
  top: 1rem;
  left: 0;
  z-index: 10;
}

.author-2.touch-screen {
  left: 8rem;
}

.author-bio::-webkit-scrollbar,
.foreword::-webkit-scrollbar {
  width: 8px !important;
}


/* -------------------- lightbox --------------------- */

.lightbox-container {
  width: calc(100% + 2rem);
  margin-left: -2rem;
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: #eee;
  margin-top: 2rem;
}

.four-three {
  aspect-ratio: 4 / 3;
}

.lightbox-scroll {
  display: flex;
  width: max-content;
  height: 100%;
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan-y;
}

.lightbox-scroll img {
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-info {
  display: flex;
  justify-content: space-between;
  margin: 0 0 3rem 0;
  line-height: var(--line-height-small);
  font-size: 0.8rem;
  color: var(--color-dg);
}

.lightbox-counter {
  color: var(--color-bl);
  width: 6rem;
  text-align: right;
}

.lightbox-controls {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjbQg61aAAAADUlEQVQYV2P4//8/IwAI/QL/+TZZdwAAAABJRU5ErkJggg=='),
    url(img/blank.cur), url(img/blank.png),
    none !important;
  user-select: none;
}

.lightbox-button {
  height: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjbQg61aAAAADUlEQVQYV2P4//8/IwAI/QL/+TZZdwAAAABJRU5ErkJggg=='),
    url(img/blank.cur), url(img/blank.png),
    none !important;
  user-select: none;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.arrow-sign {
  color: var(--color-pk);
    font-size: 3rem;
    transform: scaleY(2);
    display: none;
}

#right-arrow {
   margin-left: auto;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  font-size: 6rem;
  color: var(--color-pk);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -75%);
  transition: opacity 0.15s ease, transform 0.05s ease;
}

/* -------------------- popup image -------------------- */

.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
  gap: 0.5rem;
}

.popup .credit {
  color: white;
  font-size: 0.8rem;
  line-height: var(--line-height-small);
  text-align: center;
  max-width: 90vw;
  padding: 0 2rem;
}

.popup.active {
  display: flex;
}

.popup img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* ------------------- content elements -------------------- */

.tooltip {
  cursor: pointer;
  color: var(--color-bl);
  padding: 0.5rem 0.25rem;
}

.tooltip-content {
  display: none;
  visibility: hidden;
  font-size: 0.8rem;
  z-index: 2;
}

.tooltip:hover .tooltip-content {
  visibility: visible;
  display: inline;
}

.content figure {
  margin-top: 2rem;
}

.content figure img {
  width: 100%;
  cursor: zoom-in;
  display: block;
}

.content figcaption {
  font-size: 0.8rem;
  color: var(--color-dg);
  line-height: var(--line-height-small);
}

figure.head-img {
  width: calc(100% + 2rem);
  max-width: calc(100% + 2rem);
  margin-left: -2rem;
  margin-bottom: 3rem;
}

figure.head-img figcaption {
  padding: 0.25rem 0 0 2rem;
}

figure.narrow-img {
  width: 50%;
  align-self: center;
  margin: 2rem auto 1rem auto;
}

figure.narrow-img img {
  height: auto;
  cursor: zoom-in;
}

.video-container {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  margin: 1rem 0;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.content blockquote {
  width: 100%;
  font-size: 1.25rem;
  position: relative;
}

.content blockquote p {
  margin-left: 0;
  width: 100%;
}

blockquote::before {
  content: "“";
  position: absolute;
  top: -0.4em;
  left: 0;
  font-size: 4rem;
  color: var(--color-lg);
  line-height: 1;
  font-family: var(--font-title);
  font-weight: 500;
  pointer-events: none;
}

.gr-highlight-long {
  background: linear-gradient(100deg,
      #C9FF3400 0.1%,
      #C9FF34 0.3%,
      #C9FF3480 2.7%,
      #C9FF341a 93%,
      #C9FF34b4 99.3%,
      #C9FF3400 99.8%),
    linear-gradient(182deg, #C9FF3400, #C9FF344d 8%, #C9FF3400 15%);
  font-size: 1.25rem;
}

.pk-highlight-long {
  background: linear-gradient(100deg,
      #FF71E300 0.1%,
      #FF71E3 0.3%,
      #FF71E380 2.7%,
      #FF71E31a 93%,
      #FF71E3b4 99.3%,
      #FF71E300 99.8%),
    linear-gradient(182deg, #FF71E300, #FF71E34d 8%, #FF71E300 15%);
  font-size: 1.25rem;
}

.interviewer {
  display: inline-block;
  font-weight: 700;
  padding: 0 0.5rem;
  margin: 1rem 0.25rem 0 0;
  background: var(--color-pk);
}

.interviewee {
  display: inline-block;
  font-weight: 700;
  padding: 0 0.5rem;
  margin: 1rem 0.25rem 0 0;
  background: var(--color-gr);
}

p.blink {
  animation: fadeBlink 1.5s ease-in-out infinite;
}

@keyframes fadeBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

table,
td {
  padding: 0.5rem;
  border: var(--color-br) 1px solid;
}

table {
  padding: 0;
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  background: var(--color-br);
  padding: 0 0.5rem;
}

.footnote {
  color: var(--color-dg);
  font-size: 0.8rem;
}

footer {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#top-btn {
  display: none;
}

/* ----------------- bubble text ----------------- */

.bubble {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1rem 0;
  color: var(--color-dg);
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.bubble p {
  display: flex;
  align-items: stretch;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

.bubble p .bracket-left,
.bubble p .bracket-right {
  display: inline-block;
  width: 0.5rem;
  border: 2px solid var(--color-dg);
  flex-shrink: 0;

}

.bubble p .bracket-left {
  border-right: none;
  /* Remove right border */
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  margin-right: 1rem;
}

.bubble p .bracket-right {
  border-left: none;
  /* Remove left border */
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  margin-left: 1rem;
}

.bubble.visible {
  transform: scale(1);
  opacity: 1;
}

/* ----------------- image floating area ----------------- */

.floating {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 3rem 0;
}

.floating img {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;

  --float: translateY(0);
  --rotate: rotate(0deg);
  transform: var(--float) var(--rotate);
}

.floating img:hover {
  --rotate: rotate(10deg);
  z-index: 10;
}

.floating img:nth-child(1) {
  top: 5%;
  left: 40%;
}

.floating img:nth-child(2) {
  top: 20%;
  left: 18%;
  animation-duration: 5s;
}

.floating img:nth-child(3) {
  top: 40%;
  left: 60%;
  animation-duration: 6s;
}

.floating img:nth-child(4) {
  top: 45%;
  left: 10%;
  animation-duration: 7s;
}

.floating img:nth-child(5) {
  top: 35%;
  left: 50%;
  animation-duration: 4s;
}

.floating img:nth-child(6) {
  top: 55%;
  left: 20%;
  animation-duration: 5s;
}

@keyframes float {

  0%,
  100% {
    --float: translateY(0);
  }

  50% {
    --float: translateY(-15%);
  }
}

/* ----------------- details list ----------------- */

.content ul {
  padding: 0 0 0 3rem;
  list-style: disc;
}

.content ul li::marker {
  content: "\2714  ";
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

details .details-content {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}

.content details blockquote {
  margin-top: 2rem;
}


details.tools {
  margin-bottom: -1rem;
}

details.tools summary {
  padding: 0.5rem 0 0 0;
  border-bottom: black 3px dotted;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.tools summary::after {
  content: "+";
  margin-left: 0.5rem;
  font-weight: 400;
  font-family: system-ui;
}

details.tools[open] summary::after {
  content: "-";
}

details.tools summary:hover {
  background: var(--color-gr);
}


/* ---------------- auto slideshow ---------------- */

.auto-slideshow {
  width: 50%;
  display: grid;
  place-items: center;
  margin: 2rem auto 1rem auto;
  align-self: center;
  position: relative;
}

.auto-slideshow figure {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  margin: 0;
}

.auto-slideshow figure.active {
  opacity: 1;
  z-index: 1;
}

.auto-slideshow img {
  width: 100%;
  height: auto;
  display: block;
}



/* ------------------- tablet landscape ------------------- */

@media (max-width: 1200px) {
  html {
    font-size: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  .author {
    height: auto;
  }

  .foreword {
    position: static;
    padding: 1rem;
    transform: none;
    z-index: 5;
    cursor: default;
    width: 100%;
    max-width: 900px;
    height: fit-content;
    max-height: fit-content;
  }

  .foreword:hover {
    transform: none;
    z-index: 5;
  }

  .foreword:active {
    cursor: default;
    transform: none;
  }

  .author-bio {
    width: 100%;
    max-width: 900px;
    height: fit-content;
    max-height: fit-content;
  }

  .author-bio:hover {
    transform: none;
  }

  .author-bio:active {
    transform: none;
  }

  .touch-screen {
    position: static;
    top: auto;
    margin: 1rem auto;
    width: 100%;
    max-width: 900px;
    height: auto;
    max-height: auto;
    padding: 1rem;
    transform: none;
    z-index: 5;
    cursor: default;
  }

  .author-bio.touch-screen {
    font-size: 1rem;
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: 10;
  }

  .author-2.touch-screen {
    left: 0;
  }

  .arrow-sign {
    display: block;
  }

  .custom-cursor {
    display: none;
  }

}

/* ------------------- mobile layout ------------------- */

@media (max-width: 768px) {

  h1 {
    font-size: 1.35rem;
    margin-top: 2rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    margin-top: 2rem;
  }

  main {
    padding: 0.5rem;
    max-width: 100%;
  }

  hr {
    max-width: calc(100% + 2rem);
    margin: 0;
  }

  h3,
  h4,
  h5,
  h6,
  .content p,
  .content ul,
  .content table,
  .content details {
    max-width: 100%;
    margin: 0.5rem 0;
  }

  .content h2,
  .content blockquote {
    width: 100%;
    align-self: flex-start;
    margin: 0.5rem 0;
  }

  .content blockquote {
    margin-top: 1.5rem;
  }

  blockquote::before {
    font-size: 3rem;
  }

  .content h2 {
    margin-top: 1rem;
  }

  .content details blockquote {
    margin-top: 1.5rem;
  }

  .content figure,
  .content video {
    width: calc(100% + 1rem);
    margin: 0.5rem 0;
  }

  .content figure {
    margin-top: 1rem;
  }

  .content figcaption {
    padding: 0 0.5rem;
  }

  .content figure.narrow-img {
    width: 70%;
    align-self: center;
    margin: 1rem auto;
  }

  .content figure.narrow-img figcaption {
    padding: 0;
  }

  figure.head-img {
    width: calc(100% + 1rem);
    max-width: calc(100% + 1rem);
    margin-left: 0;
  }

  figure.head-img figcaption {
    padding: 0 0.5rem;
  }

  .video-container {
    width: 100vw;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    margin-left: -0.5rem;
  }

  .video-container iframe {
    height: 100%;
    border: 0;
    display: block;
  }

  .foreword {
    position: static;
    padding: 1rem;
    transform: none;
    z-index: 5;
    cursor: default;
    width: 100%;
    max-width: 100%;
    height: fit-content;
    max-height: fit-content;
  }

  .foreword:hover {
    transform: none;
    z-index: 5;
  }

  .foreword:active {
    cursor: default;
    transform: none;
  }

  .author-bio {
    width: 100%;
    max-width: 100%;
    height: fit-content;
    max-height: fit-content;
  }

  .author-bio:hover {
    transform: none;
  }

  .author-bio:active {
    transform: none;
  }

  .touch-screen {
    position: static;
    top: auto;
    margin: 1rem auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: auto;
    padding: 1rem;
    transform: none;
    z-index: 5;
    cursor: default;
  }

  .author-bio.touch-screen {
    font-size: 1rem;
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: 10;
  }

  .author-2.touch-screen {
    left: 0;
  }

  .lightbox-container {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin: 2rem 0 0 -0.5rem;
  }

  .lightbox-info {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    padding: 0 0.5rem;
  }

  .lightbox-controls {
    display: none;
  }

  .floating {
    height: 200px;
    margin: .5rem 0;
  }

  .auto-slideshow {
    width: 70%;
    margin: .5rem auto;
  }

  .auto-slideshow figcaption {
    padding: 0;
  }

  .gr-highlight-long {
    font-size: 1.15rem;
  }

  .pk-highlight-long {
    font-size: 1.15rem;
  }

  .bubble {
    margin: 1rem 0;
  }

  .bubble p {
    font-size: 1rem;
    line-height: var(--line-height-title);
    text-align: justify;
    text-align-last: center;
  }

  .bubble p .bracket-left {
    border-right: none;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    margin-right: 0.5rem;
  }

  .bubble p .bracket-right {
    border-left: none;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    margin-left: 0.5rem;
  }

  .content ul {
    padding: 0 0 0 1.5rem;
    list-style: disc;
  }

  .content ul li::marker {
    content: "\2714 ";
  }

    .content details {
      margin: 0;
    }

    .table-small-screen {
      max-width: 100%;
      overflow-x: auto;
    }

    table,
    td {
      padding: 0.25rem;
    }

    table {
      border: none;
      table-layout: fixed;
    }

    table th:nth-child(1),
    table td:nth-child(1) {
      width: 6rem;
    }

    table th:nth-child(2),
    table td:nth-child(2) {
      width: 6rem;
    }

    table th:nth-child(3),
    table td:nth-child(3) {
      width: 8rem;
    }

    table th:nth-child(4),
    table td:nth-child(4) {
      width: 18rem;
    }

    #top-btn {
      display: block;
    }

  }