.toman-posterwall-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  /* fullscreen */
  overflow: hidden;
  /* geen scroll */
  background: #111;
}

#tomanPosterwallCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Page arrows */
.tpw-page {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #083131;
  color: rgba(194, 162, 92, 0.85);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: none;
  /* wordt door JS aan/uit gezet */
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.tpw-page:hover {
  background: #0d4a4a;
}

.tpw-page-prev {
  left: 10px;
}

.tpw-page-next {
  right: 10px;
}

/* Modal */
.tpw-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.tpw-modal.is-open {
  display: block;
}

.tpw-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
}

.tpw-modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 760px);
  max-height: 92vh;
  background: rgba(15, 15, 15, .92);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .6);
}

.tpw-media {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 75vh;
}

.tpw-media img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.tpw-meta {
  padding: 10px 14px 14px;
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.tpw-title {
  font-size: 16px;
  font-weight: 600;
}

.tpw-date {
  font-size: 13px;
  opacity: .8;
  margin-top: 4px;
}

.tpw-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #083131;
  color: rgba(194, 162, 92, 0.85);
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.tpw-close:hover {
  background: #0d4a4a;
}

.tpw-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: #083131;
  color: rgba(194, 162, 92, 0.85);
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tpw-nav:hover {
  background: #0d4a4a;
}

.tpw-prev {
  left: 10px;
}

.tpw-next {
  right: 10px;
}

/* Modal caption: tooltip · datum */
.tpw-modal-caption {
  padding: 8px 16px 14px;
  color: rgba(255, 255, 255, 0.80);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}