/* ============================================================
   AI Powered Innovation — page-specific styles
   /ai-powered-innovation
   ============================================================ */

/* ---- Static image hero ---- */
.ai-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
  background-image: url('/assets/img2/ai_innovation_3.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ---- Challenge callout box ---- */
.ai-challenge-box {
  background: linear-gradient(135deg, #072536 0%, #0d4d6d 52%, #0a3a54 100%);
  border-radius: 16px;
  padding: 44px 48px;
  text-align: center;
  -webkit-box-shadow: 0 12px 40px rgba(7, 37, 54, 0.28);
  box-shadow: 0 12px 40px rgba(7, 37, 54, 0.28);
  margin: 8px 0 32px;
}

.ai-challenge-box p {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.55;
  font-family: 'Lato', sans-serif;
  font-style: italic;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .ai-hero {
    height: 40vh;
    min-height: 260px;
  }

  .ai-challenge-box {
    padding: 28px 20px;
  }

  .ai-challenge-box p {
    font-size: 16px;
  }
}