/* Teachers Section */
.teachers-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.teachers-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
  cursor: pointer;
}

.teachers-section .teachers-panel {
  display: flex;
  align-items: center;
  gap: var(--inner-gap);
  overflow-y: hidden;
  overflow-x: auto;

  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.teachers-section .teachers-panel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.teachers-section .teacher-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #eeedf2;
  background-color: #f9f7f7;
  cursor: pointer;
}

.teachers-section .teacher-card .content {
  width: var(--teacher-card-min-width);
  min-height: var(--teacher-card-min-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.teachers-section .teacher-card .content .content-image {
  width: 194px;
  height: 201.05px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.teachers-section .teacher-card .content .content-image img {
  height: 100%;
  width: 100%;
}

.teachers-section .teacher-card .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--smaller-gap);
}

.teachers-section .teacher-card .description .summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.teachers-section .teacher-card h3 {
  font-size: var(--h2-font-size-mobile);
  font-weight: 400;
  line-height: var(--h2-line-height-mobile);
  text-align: center;
}

.teachers-section .teacher-card .role {
  display: flex;
  flex-direction: column;
}

.teachers-section .teacher-card span {
  font-size: var(--font-size-mobile);
  font-weight: 300;
  line-height: var(--line-height-mobile);
  text-align: center;
}

.teachers-section .teacher-card p {
  font-size: var(--font-size-mobile);
  font-weight: 300;
  line-height: var(--line-height-mobile);
  text-align: center;
}

@media (min-width: 1280px) {
  .teachers-section .container {
    width: 1200px;
    gap: 60px;
  }

  .teachers-section .teachers-panel {
    justify-content: space-between;
    padding-right: 2px;
    padding-bottom: 2px;
  }

  .teachers-section .teacher-card {
    max-width: 275.51px;
    background-color: #FFFFFF;
  }

  .teachers-section .teacher-card:hover {
    box-shadow: 2px 2px 0px 0px #A7A7AC;
  }

  .teachers-section .teacher-card span,
  .teachers-section .teacher-card p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: center;
  }
}
