.thoughts {
  display: grid;
  grid-template-columns: 1fr 1fr 56px;
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 32px;
  height: 100vh;
  padding: var(--gap);
}

/* === HEADER === */
.thoughts__header {
  grid-column: 1;
  grid-row: 1;
  padding-top: 4px;
}
.thoughts__title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* === LEFT: PICTURE PLACEHOLDER === */
.thoughts__preview {
  grid-column: 1;
  grid-row: 2;
  min-height: 0;
}
.thoughts__preview-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.thoughts__preview-label {
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--ink);
  z-index: 1;
}
.thoughts__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease;
  z-index: 2;
}
.thoughts__preview-img.is-active {
  opacity: 1;
}

/* === RIGHT: TITLE LIST === */
.thoughts__list-wrap {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}
.thoughts__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 600px;
}

.thought-row {
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  color: var(--ink);
  transition: color 220ms ease, transform 280ms ease;
}
.thought-row:hover {
  transform: translateX(6px);
}
.thought-row__title {
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.thought-row__date {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* === MASTHEAD === */
.thoughts .masthead {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.thoughts .footnav {
  grid-column: 1 / span 3;
  grid-row: 3;
}