

.teachers-wrapper {
  background-color: var(--cloud-gray);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  padding: 0 20px;
}

.teachers-inner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  
  }

.teachers-section {
  background-color: var(--white-0); 
  padding: 80px 0;
  z-index: 0;
}

.teachers-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.teachers-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.teachers-info {
  flex: 1;
}

.teachers-role {
font-family: 'Lora', serif;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--charcoal-black);
}

.teachers-name {
	font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2vw + 1rem, 2rem);
  margin-bottom: 20px;
  color: var(--charcoal-black);
}

.teachers-description {
font-family: 'Lora', serif;
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.4rem);
  line-height: 1.4;
  color: var(--gray20);
  text-align: justify;
}


@media (max-width: 1000px) {
  .teachers-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 10px;
  }

  .teachers-photo img {
    max-width: 220px;
  }

  .teachers-info {
    text-align: center;
  }

  .teachers-role {
    font-size: 0.9rem;
  }

  .teachers-name {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  .teachers-description {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    padding: 0 10px;
    text-align: justify;
  }

  .teachers-section {
    padding: 50px 0;
  }
}

@media (max-width: 550px) {
  .teachers-content {
    padding: 0 5px;
    gap: 20px;
  }

  .teachers-photo img {
    max-width: 180px;
    border-radius: 10px;
  }

  .teachers-role {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .teachers-name {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    margin-bottom: 15px;
  }

  .teachers-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    line-height: 1.4;
    padding: 0 5px;
  }

  .teachers-section {
    padding: 40px 0;
  }
}
