:root {
  --bg: #000;
  --text: #f2f2f2;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.slide {
  width: min(100vw, 1440px);
  min-height: min(100vh, 810px);
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.left-panel {
  position: relative;
}

.left-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.right-panel {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1.6rem, 5vw, 4.6rem) clamp(1.4rem, 4vw, 4.2rem);
  gap: clamp(1.8rem, 7vh, 4.8rem);
}

.logo {
  width: min(92%, 840px);
  max-width: 100%;
  height: auto;
  align-self: center;
}

.right-panel p {
  margin: 0;
  max-width: 31ch;
  align-self: center;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.25vw, 2.9rem);
  line-height: 1.36;
  letter-spacing: -0.01em;
}

@media (max-width: 960px) {
  .slide {
    width: 100vw;
    min-height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: 58vh 42vh;
  }

  .right-panel {
    justify-content: center;
    gap: clamp(1rem, 3vh, 2rem);
    padding: clamp(1rem, 5vw, 2rem);
  }

  .logo {
    width: min(100%, 700px);
  }

  .right-panel p {
    align-self: center;
    max-width: 34ch;
    font-size: clamp(1rem, 4.2vw, 1.55rem);
  }
}
