/* ============================================================
   initiatives.css — styles ONLY for initiatives.php
   Loaded in addition to style.css. Does NOT modify anything
   in style.css (nav, footer, header, hero, carousel, etc.).
   ============================================================ */

/* ── PAGE BANNER ─────────────────────────────────────────── */
.init-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #1a2a3a;
}

.init-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  filter: brightness(0.62);
}

/* ── PAGE BODY ───────────────────────────────────────────── */
.init-body {
  background: #fff;
  padding: 40px 0 60px;
}

/* ── "Initiatives" PILL TAG ──────────────────────────────── */
.init-tag {
  display: inline-block;
  background: #1A427E;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 18px; /* Increased from 16px */
  font-weight: 700;
  margin-bottom: 36px;
  font-family: 'Inter', sans-serif;
}

/* ── OUTER CARD WRAPPER ──────────────────────────────────── */
.init-outer-card {
  background: #edf2f8;
  border-radius: 10px;
  padding: 30px 28px 36px;
}

/* ── SECTION HEADING + DESCRIPTION ──────────────────────── */
.init-outer-card > h2 {
  font-size: 26px; /* Increased from 24px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.init-outer-card > p {
  font-size: 15.5px; /* Increased from 13.5px */
  color: #444;
  line-height: 1.65;
  margin-bottom: 26px;
}

/* ── 2-COLUMN GRID FOR INITIATIVE CARDS ─────────────────── */
.init-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* ── INDIVIDUAL INITIATIVE CARD ──────────────────────────── */
.init-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 22px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.init-card h3 {
  font-size: 20px; /* Increased from 18px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.init-card p {
  font-size: 15px; /* Increased from 13px */
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ── FULL-WIDTH SINGLE CARD (Science & Tech Park) ────────── */
.init-card-full {
  background: #fff;
  border-radius: 8px;
  padding: 24px 22px 20px;
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.init-card-full h3 {
  font-size: 24px; /* Increased from 22px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.init-card-full p {
  font-size: 15px; /* Increased from 13px */
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── "Coming Soon" BADGE ─────────────────────────────────── */
.init-badge {
  display: inline-block;
  background: #e8edf4;
  color: #444;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 14.5px; /* Increased from 12.5px */
  font-weight: 600;
  border: 1px solid #c8d4e8;
  font-family: 'Inter', sans-serif;
  align-self: flex-start;
}

/* ── "Learn More" CTA BUTTON ─────────────────────────────── */
.init-cta {
  display: inline-block;
  background: #1A427E;
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 16px; /* Increased from 14px */
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.init-cta:hover { background: #15336a; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .init-banner      { height: 160px; }
  .init-grid        { grid-template-columns: 1fr; }
  .init-outer-card  { padding: 20px 14px 26px; }
  .init-card        { padding: 18px 16px 16px; }
  .init-card-full   { padding: 18px 16px 16px; }
  .init-card h3     { font-size: 18px; } /* Increased from 16px */
  .init-card-full h3 { font-size: 20px; } /* Increased from 18px */
  .init-tag         { font-size: 16px; padding: 8px 20px; } /* Increased from 14px */
}