/* =========================================================
   About – Who We Are + Our Mission (2 cards)
   File: /assets/css/about-us/about_who_we_are.css
   ========================================================= */

.gc-about-cards{
  position: relative;
  background: linear-gradient(180deg, #003b5f 0%, #022f4a 100%);
  color: var(--gc-white);
  overflow: hidden;
}

/* soft glow like the sample screenshot */
.gc-about-cards::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(closest-side at 50% 18%, rgba(0,145,235,.18), transparent 55%),
    radial-gradient(closest-side at 78% 70%, rgba(255,255,255,.06), transparent 62%);
  pointer-events:none;
  z-index:0;
}

.gc-about-cards .container{
  position: relative;
  z-index: 1;
}

/* 2-column layout */
.gc-about-cards__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 26px);
  align-items: stretch;
}

/* card style */
.gc-about-cards__card{
  background: var(--gc-dark-blue); /* requested */
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);

  padding: clamp(18px, 2.6vw, 34px);

  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(14px, 2vw, 22px);
  min-height: 100%;
}

/* icon bubble */
.gc-about-cards__icon{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(0,145,235,.16);
  border: 1px solid rgba(0,145,235,.34);
  color: var(--gc-white);
}

.gc-about-cards__title{
  margin: 0 0 var(--space-xs);
  color: var(--gc-white);
  line-height: 1.15;
}

.gc-about-cards__text{
  margin: 0 0 var(--space-xs);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-size: clamp(0.95rem, 0.89rem + 0.22vw, 1.12rem);
}

.gc-about-cards__text:last-child{
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px){
  .gc-about-cards__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px){
  .gc-about-cards__card{
    grid-template-columns: 1fr;
  }
}
