/* ============================================================
   AJ VENTURE
   Founder Section
============================================================ */

.founder-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(47,134,255,.10), transparent 30%),
    #F4F7FB;
  color: #07111F;
}

.founder-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.founder-section .eyebrow {
  color: var(--secondary);
}

.founder-section h2 {
  color: #07111F;
  margin-bottom: 24px;
}

.founder-section p {
  color: #3D4654;
  font-size: 19px;
  margin-bottom: 34px;
}

.founder-photo {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  background: #07111F;
  box-shadow: 0 30px 90px rgba(0,0,0,.20);
}

.founder-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.founder-photo::after {
  content: "Founder • Builder • Entrepreneur";
  position: absolute;
  left: 26px;
  bottom: 26px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #061016;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Responsive */

@media(max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 420px;
    height: 420px;
  }
}