.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: calc(100vh - var(--header-height) - 100px);
  align-content: start;
}

.terminal-section {
  order: 1;
}

.feed-section {
  order: 2;
}

@media (min-width: 768px) {
  .home-grid {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.5rem;
  }

  .terminal-section {
    order: 0;
  }

  .feed-section {
    order: 0;
  }
}

@media (min-width: 1024px) {
  .home-grid {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.5rem 1.5rem;
  }
}

.placeholder-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height) - 100px);
  text-align: center;
  padding: 2rem;
}

.placeholder-title {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--color-text-bright);
  margin-bottom: 0.5rem;
}

.placeholder-text {
  color: var(--color-text-dim);
  max-width: 450px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
