/* -------------------------------
   Ea-2-Sa Plain Styles
--------------------------------*/

/* Body */
body {
  padding-top: 80px;
  margin: 0;
  font-size: 14px; /* set default font size for the page */
  background: url('/assets/images/ai-backdrop.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

/* Logo */
.logo img {
  height: 60px;
}

/* Link Button */
.btn-link {
  display: inline-block;
  margin-top: .5rem;
  padding: 0.3rem .5rem;
  background-color: #255cb9f6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-link:hover {
  background-color: #3f7da1ff;
}

 /* AI Governance Card Styling */
    .ai-governance-card {
      max-width: 800px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 2rem;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .ai-governance-card:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
    .ai-governance-card img {
      height: 80px;
      margin-bottom: 1rem;
    }
    .ai-governance-card h2 {
      color: #255cb9;
      margin-bottom: 1rem;
    }
    .ai-governance-card p {
      text-align: left;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .back-link {
      background: rgba(255, 255, 255, 0.9);
      padding: 6px 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-weight: bold;
      color: #255cb9;
    }
    .back-button {
      display: inline-block;
      padding: 0.2rem .5rem;
      background-color: #255cb9f6;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 500;
      transition: background 0.3s;
    }

    .back-button:hover {
      background-color: #55899eff;
    }

    .back-link svg {
      width: 22px;
      height: 22px;
      fill: #255cb9;
    }
    .back-link:hover {
      background: rgba(91, 171, 182, 0.9);
      color: white;
    }
    .back-link:hover svg {
      fill: white;
    }

    /* Back button styling */
    .back-link {
      background: rgba(255, 255, 255, 0.9);
      padding: 6px 12px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-weight: bold;
      color: #255cb9;
    }
    .back-link svg {
      width: 22px;
      height: 22px;
      fill: #255cb9;
    }
    .back-link:hover {
      background: rgba(91, 171, 182, 0.9);
      color: white;
    }
    .back-link:hover svg {
      fill: white;
    }

     /* ----- List Styling ----- */
    ul, ol {
      margin: 1rem 0 1rem 2rem; /* indent lists */
      padding-left: 1.5rem;     /* ensure bullets/numbers are offset */
    }

    ul li, ol li {
      margin-bottom: 0.5rem;    /* spacing between items */
      line-height: 1.6;         /* improve readability */
    }

    ul ul, ol ul, ul ol, ol ol {
      margin-left: 1.5rem;      /* indent nested lists further */
    }

    .page-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .page-header img {
      max-width: 20%;   /* reduce image size */
      height: auto;
      border-radius: 8px;
    }
    .banner-section {
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #657085; /* light gray line */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
 /* Base responsive font system */
    body {
      font-size: clamp(14px, 1.1vw, 18px); /* scales with screen size */
      line-height: 1.6;
    }

    h2 {
      font-size: clamp(22px, 2.2vw, 32px);
      margin-top: 1.2rem;
      margin-bottom: 0.6rem;
    }

    h3 {
      font-size: clamp(18px, 1.8vw, 26px);
      margin-top: 1rem;
      margin-bottom: 0.4rem;
    }

    p, li {
      font-size: clamp(14px, 1vw, 18px);
    }

    ul, ol {
      margin-left: 1.2rem;
      padding-left: 1.2rem;
    }

    /* Keep readability on very wide screens */
    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 1rem;
    }

.ai-playbook ul li {
  margin-bottom: .2rem;
}
