.plenary-lecturers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.plenary-lecturers__title {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d0d0d0;
}

.speaker-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8e8e8;
}

.speaker-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.speaker-item__photo {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.speaker-item__content {
  flex: 1;
  min-width: 0;
}

.speaker-item__name {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.speaker-item__position {
  font-size: 18px;
  color: #666;
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1.4;
}

.speaker-item__place {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.speaker-item__talk-label {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.speaker-item__talk-title {
  font-size: 16px;
  font-weight: 600;
  color: #3a3838;
  margin-bottom: 16px;
  line-height: 1.4;
}

.speaker-item__abstract-label {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.speaker-item__abstract {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  text-align: start;
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
  .speaker-item {
    flex-direction: column;
    gap: 20px;
  }

  .speaker-item__photo {
    width: 55%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 3/4;
  }

  .plenary-lecturers {
    padding: 40px 16px;
  }

  .plenary-lecturers__title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .speaker-item__photo {
    width: 60%;
    align-self: center;
  }
  .speaker-item__name {
    font-size: 17px;
  }
  .speaker-item__position {
    font-size: 15px;
  }
  .speaker-item__talk-label {
    font-size: 17px;
  }
  .speaker-item__abstract-label {
    font-size: 17px;
  }
  .speaker-item__abstract {
    font-size: 16px;
  }
}
