.our-people {
  padding: 80px 0;

}


.people-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.left-content {
  flex: 1;
}


.learn-more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.learn-more .dot {
  width: 6px;
  height: 6px;
  background: #e21d2f;
  border-radius: 50%;
}

/* RIGHT */
.right-images {
  flex: 1.2;
  display: flex;
  gap: 20px;
}

.img-large {
  flex: 1;
}

.img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* SMALL IMAGES */
.img-small-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0.8;
}

.img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* HEIGHT CONTROL */
.img-large {
  height: 420px;
}

.img-small {
  height: 200px;
}

@media only screen and (min-width: 1400px)and (max-width: 1599px) { 
 .common_tile {
        font-size: 34px;
    }
    p {
        font-size: var(--fs-14);
        line-height: 24px;
    }

}

@media only screen and (min-width: 1200px)and (max-width: 1399px) { 
 .common_tile {
        font-size: 34px;
    }
    p {
        font-size: var(--fs-14);
        line-height: 24px;
    }

}

/* RESPONSIVE */
@media (max-width: 991px) {
  .people-row {
    flex-direction: column;
  }

  .right-images {
    flex-direction: column;
  }

  .img-large,
  .img-small {
    height: auto;
  }

  .img-large img,
  .img-small img {
    height: auto;
  }
}