:root {
  --primary-color: #4A90E2;
  --accent-color: #F5A623;
  --text-dark: #2C3E50;
  --text-muted: #7F8C8D;
  --bg-soft: #F9FBFC;
}



.teachers {
  background-color: var(--bg-soft);
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.teachers__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.1;
}

.teachers__lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
}

.teachers__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.teachers__item {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(20px);
}

.teachers__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.teachers__item-text {
  margin: 0;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.4;
}

.teachers__image-container {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.teachers__image-container:hover {
  transform: scale(1.02);
}

.teachers__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .teachers {
    padding: 120px 0 60px;
  }
  
  .teachers__image-container {
    border-radius: 30px;
    margin-top: 2rem;
  }
}