/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= SECTION ================= */
.founder-section {

  /* background: #f6f6f6; */
  position: relative;
  background: url("../../images/Rectangle\ 555.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
     padding: 80px 70px;
}

/* ================= WRAPPER ================= */
.founder-wrapper {
  /* max-width: 1200px; */
 
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

/* ================= LEFT CONTENT ================= */
.founder-left h2 {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: #252525;
  margin-bottom: 20px;
  position: relative;
}

.founder-left h2::before {
  content: "";
  width: 32px;
  height: 4px;
  background: #e11b22;
  position: absolute;
  top: -10px;
  left: 0;
   border-radius: 2px;
}

.founder-left p {
  font-size: 14px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 14px;
  text-align: justify;
  
}

/* ================= RIGHT IMAGE ================= */
.founder-image {
  border-radius: 18px;
  overflow: hidden;
  /* border: 4px solid #e11b22; */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
 .founder-section {
    padding: 30px 35px;
  }

  .founder-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-left h2 {
    font-size: 30px;
  }
}
