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

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
@media (max-width: 768px) {
  body {
    min-height: unset;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  padding: 60px;
}

.diptych {
  display: flex;
  width: 100%;
  gap: 0;
  position: relative;
  align-items: stretch;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24' viewBox='0 0 48 24'%3E%3Cpath d='M0 12 L36 12 L28 4 M36 12 L28 20' fill='none' stroke='%23000' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E")
      0 8,
    auto;
  min-height: 50vh;
}

.panel {
  flex: 1;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

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

.left-panel {
  background-color: #ffffff;
}

.right-panel {
  background-color: #ffffff;
}

.footer-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.02em;
}

.studio-email {
  font-weight: 400;
  text-decoration: none;
  color: #000000;
}

.date {
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .container {
    padding: 30px;
  }

  .diptych {
    flex-direction: column;
  }

  .panel {
    width: 100%;
  }

  .panel img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .right-panel {
    display: none;
  }

  .footer-text {
    left: 30px;
    bottom: 10px;
    font-size: 12px;
  }
}
