* {
  margin: 0;
  padding: 0;
}
/* ================= SECTION ================= */
.jesuits-first-section {
  background: url("../../images/Rectangle\ 30.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 70px;
}
.jesuits-first-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* ================= WRAPPER ================= */
.jesuit-wrapper {
  /* max-width: 1300px; */
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= TITLE ================= */
.jesuit-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 */
.jesuit-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;
} */

/* ================= TEXT ================= */
.jesuit-text {
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;

  letter-spacing: 1%;
  text-align: justify;

  line-height: 1.8;
  color: #544e4e;

  margin-bottom: 30px;
  /* max-width: 560px; */
  text-align: justify;
}

/* ================= POINTS ================= */
.jesuit-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.point {
  position: relative;
  overflow: hidden;
}

/* LEFT CUT ROUND SHAPE */
.point::before {
  content: "";
  position: absolute;
  left: -18px; /* controls depth of cut */
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #f7f7f7; /* SAME as section background */
  border-radius: 50%;
}

.check {
  width: 40px;
  height: 40px;
  background: #e11b22;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: bold;
}

/* ================= IMAGE CARD ================= */
.jesuit-image {
  position: relative;
  border-radius: 16px;
  padding: 6px;
  background: #e11b22;
}

.jesuit-image img {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1070px) {
  .jesuit-wrapper {
    grid-template-columns: 1fr;
  }

  .jesuit-points {
    grid-template-columns: 1fr;
  }

 .jesuits-first-section{
    padding: 20px 35px;
  }
}

@media (max-width: 990px) {
  .jesuit-title {
    font-size: 30px;
  }

  .jesuit-para {
    font-size: 16px;
  }

  .jesuits-first-section {
    padding: 30px 35px;
  }
}
