/* =========================================
   Our Objectives (new card style with icons)
   ========================================= */

:root{
  --obj2-max: 1200px;
  --obj2-pad: clamp(16px, 4vw, 40px);

  --obj2-title: #383E8D;
  --obj2-text: #6b7280;

  --obj2-card-bg: #ffffff;
  --obj2-card-border: rgba(15, 23, 42, 0.12);

  --obj2-shadow: 0 18px 40px rgba(16,24,40,.10);

  --obj2-icon-bg: #eef2ff;        
  --obj2-icon-ring: rgba(99,102,241,.18);
  --obj2-link: #2b6cb0;
}

.obj2{
  /* background: #ffffff; */
  background-color: #DCE2CB;
  padding: clamp(34px, 6vw, 80px) 0;
}

.obj2__wrap{
  max-width: var(--obj2-max);
  margin: 0 auto;
  padding: 0 var(--obj2-pad);
  text-align: center;
}


/* Title with side lines */
.obj2__titleRow{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  margin: 0 0 clamp(22px, 4vw, 44px);
}

.obj2__title{
  margin-bottom: 7rem;
  margin-top: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  color: var(--obj2-title);
  line-height: 1;
}

.obj2__titleLine{
  height: 1px;
  background: rgba(15, 23, 42, 0.16); /* light grey line */
  width: 100%;
  margin-bottom: 7rem;
  margin-top: 0;
}


/* Grid */
.obj2__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: clamp(16px, 4vw, 8rem);
  align-items: stretch;
}

/* Card */
.obj2__card{
  position: relative;
  background: var(--obj2-card-bg);
  border: 1px solid var(--obj2-card-border);
  border-radius: 16px;
  box-shadow: var(--obj2-shadow);

  padding: 56px 22px 22px;  /* extra top space for floating icon */
  text-align: center;
  overflow: visible;
}

/* Floating Icon Circle */
.obj2__icon{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);

  width: 90px;
  height: 90px;
  border-radius: 999px;

  background: var(--obj2-icon-bg);
  border: 1px solid var(--obj2-icon-ring);
  box-shadow: 0 12px 26px rgba(16,24,40,.12);

  display: grid;
  place-items: center;
}

.obj2__icon img{
  width: 80px;      
  height: 80px;
  object-fit: contain;
  display: block;
}

/* Title + text */
.obj2__heading{
  margin: 8px 0 10px;
  font-weight: 800;
  font-size: 20px;
  color: #383E8D;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.obj2__text{
  margin: 0 0 14px;
  color: var(--obj2-text);
  font-size: 18px;
  line-height: 1.7;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Read more */
.obj2__link{
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  /* color: var(--obj2-link); */
  color: #0CC392;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
}

.obj2__link:hover{
  text-decoration: underline;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 980px){
  .obj2__grid{
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 5rem;
  }
}

@media (max-width: 560px){
  .obj2__grid{
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .obj2__card{
    padding: 54px 18px 20px;
  }

  .obj2__icon{
    width: 60px;
    height: 60px;
  }

  .obj2__icon img{
    width: 28px;
    height: 28px;
  }
}
