* {
  margin: 0;
  padding: 0;
}
/* ================= SECTION ================= */
.who-are-jesuits-section{
  background: url("../../images/Rectangle\ 30.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
    padding: 80px 70px;
}
.who-are-jesuits-container{

  max-width: 1320px;
  margin: 0 auto;
}
.jesuits-section {


}

/* ================= TITLE ================= */
.jesuits-title {
  font-family: "EB Garamond";
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  letter-spacing: 1%;
  color: #252525;

  display: flex;
  flex-direction: column; /* stack line + text */
  align-items: flex-start;
  gap: 2px;

  margin-bottom: 35px;
  position: relative;
}

/* small line above */
.jesuits-title::before {
  content: "";
  width: 32px;          /* very small line */
  height: 4px;
  background: #e11b22;  /* change color if needed */
  border-radius: 2px;
}


/* .title-line {
  width: 26px;
  height: 3px;
  background: #e11b22;
} */

/* ================= WRAPPER ================= */
.jesuits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT TEXT ================= */
.jesuits-content p {
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1%;
  text-align: justify;

  color: #544e4e;
}

/* ================= CARDS ================= */
.jesuits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.jesuit-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ICON */
.card-icon {
  width: 42px;
  height: 42px;
  background: #e11b22;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* TEXT */
.card-text span {
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;

  letter-spacing: 1%;
  text-align: justify;

  color: #777;
  display: block;
}

.card-text strong {
  font-family: Outfit;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;

  letter-spacing: 1%;
  text-align: justify;

  color: #e11b22;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1270px) {
  .jesuits-wrapper {
    grid-template-columns: 1fr;
  }

  .jesuits-cards {
    grid-template-columns: 1fr;
  }

.who-are-jesuits-section  {
    padding: 30px 35px;
  }
}

@media (max-width: 990px) {
  .jesuits-title {
    font-size: 30px;
    
  }

    .jesuits-content p {
    font-size: 16px;
    
  }

.who-are-jesuits-section{
    padding: 30px 35px;
  }


}
