body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: #0b0b0d;
  color: #e7e7ea;
}

.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px;
}

.chat {
  background: #111116;
  border: 1px solid #23232a;
  border-radius: 12px;
  padding: 16px;
  height: 55vh;
  overflow: auto;
  white-space: pre-wrap;
}

.row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #2a2a33;
  background: #0f0f14;
  color: #e7e7ea;
  outline: none;
}

button {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #2a2a33;
  background: #1a1a22;
  color: #e7e7ea;
  cursor: pointer;
}

button:disabled,
input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hint {
  opacity: 0.7;
  font-size: 12px;
  margin-top: 10px;
}

img.svelte-1mm0l5o {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  margin-top: 10em;
}

#page {
  margin-top: 9em;
  padding: 12px;
}

/* Container styling */
.ncm-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif; /* Replace with NCM's specific font-family */
}

/* The Grid Logic */
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* Main image takes 60% width */
  grid-template-rows: repeat(2, 250px); /* Two rows for the smaller images */
  gap: 16px;
  margin-bottom: 2rem;
}

.main-feature {
  grid-row: 1 / span 2; /* Spans both rows on the left */
}

/* Image handling */
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps the robot dog from looking squashed */
  display: block;
}

/* Typography to match NCM Hub */
.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

.badge {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
  color: #008144; /* NCM-esque green or adjust to your brand */
}

.byline {
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .main-feature {
    grid-row: auto;
  }
}
