/* MCP page uses standard modern-hero.css styles */

/* MCP specific hero image positioning */
.hero-modern .hero-image .image-wrapper img {
  object-position: top center;
}

/* Examples Section */
.mcp-examples {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.example-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #389f58;
}

.example-input,
.example-output {
  margin-bottom: 1rem;
}

.example-output {
  margin-bottom: 0;
}

.example-card .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.example-input p {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
  margin: 0.5rem 0 0 0;
}

.example-output p {
  font-size: 1.125rem;
  color: #0a0a0a;
  font-weight: 700;
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .mcp-examples {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}