.teachers {
  background-color: #ffffff;
  padding: 120px 0px;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}

.teachers__container {
  max-width: 1440px;
  margin: 0 auto;
}

.teachers__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 64px auto;
  max-width: 1120px;
}

.teachers__heading {
  font-size: 32px;
  font-weight: normal;
  line-height: 40px;
  color: #333333;
  margin: 0 0 8px 0;
  font-family: 'schibsted_grotesk_demi', 'Verdana';
}

.teachers__description {
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: #707070;
  margin: 0 0 24px 0;
  font-family: 'avenir_next_worldmedium', 'Verdana';
}

.teachers__tabs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.teachers__select-wrap {
  display: none;
}

.teachers__tab {
  padding: 8px 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #707070;
  font-family: 'avenir_next_worlddemi', 'Verdana';
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.teachers__tab:hover {
  border-color: #333333;
}

.teachers__tab--active {
  background-color: #f5f5f5;
  border-color: #333333;
  color: #333333;
}

.teachers__content {
  position: relative;
}

.teachers__group {
  display: none;
  opacity: 0;
}

.teachers__group--active {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px 32px;
  flex-wrap:wrap;
  padding-bottom: 0px;
  animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.teachers__card {
  flex: 0 0 352px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.teachers__image {
  position: relative;
  width: 352px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(88.96deg, rgb(227, 241, 195) 3.91%, rgb(200, 228, 135) 59.72%, rgb(191, 251, 251) 123.35%);
}

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

.teachers__name {
  font-size: 24px;
  font-weight: normal;
  line-height: 32px;
  color: #333333;
  margin: 32px 0 8px 0;
  font-family: 'schibsted_grotesk_demi', 'Verdana';
}

.teachers__title {
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #707070;
  margin: 0;
  font-family: 'avenir_next_worldmedium', 'Verdana';
}

.teachers__subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #707070;
  margin: 0;
  font-family: 'avenir_next_worldmedium', 'Verdana';
}

/* Responsive design */
@media (max-width: 1200px) {
  .teachers {
    padding: 80px 40px;
  }

  .teachers__heading {
    font-size: 28px;
    line-height: 36px;
  }

  .teachers__card {
    flex: 0 0 calc(30% - 16px);
    max-width: 544px;
  }

  .teachers__image {
    width: 100%;
    height: auto;
  }

  .teachers__group--active {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .teachers {
    padding: 60px 40px;
  }

  .teachers__header {
    margin-bottom: 40px;
  }

  /* .teachers__heading {
    font-size: 24px;
    line-height: 32px;
  } */

  .teachers__tabs {
    display: none;
  }

  .teachers__select-wrap {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 0px;
  }

  .teachers__select-display {
    display: flex;
    align-items: center;
    padding: 8px 40px 8px 12px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M6 8l4 4 4-4z' fill='%23333333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
  }

  .teachers__select-group {
    font-family: 'avenir_next_worlddemi', 'Verdana';
    font-weight: normal;
  }

  .teachers__select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    font-size: 16px;
    cursor: pointer;
  }

  .teachers__select:focus-visible {
    outline: none;
  }

  .teachers__group--active {
    gap: 20px;
  }

  .teachers__card {
    flex: 0 0 calc(50% - 10px);
    gap: 0px;
  }

  .teachers__image {
    width: 100%;
    height: auto;
  }

  .teachers__name {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0 8px 0;
  }
}

@media (max-width: 480px) {
  .teachers {
    padding: 40px 20px;
  }

  /* .teachers__heading {
    font-size: 20px;
    line-height: 28px;
  } */

  /* .teachers__description {
    font-size: 14px;
    line-height: 22px;
  } */

  .teachers__select-display {
    font-size: 13px;
    line-height: 20px;
    padding: 8px 36px 8px 12px;
  }

  .teachers__group--active {
    gap: 16px;
  }

  .teachers__card {
    flex: 0 0 calc(50% - 8px);
    gap: 0px;
  }

  .teachers__image {
    width: 100%;
    height: auto;
  }

  .teachers__name {
    font-size: 16px;
    line-height: 24px;
    margin: 16px 0 8px 0;
  }

  .teachers__title,
  .teachers__subtitle {
    font-size: 12px;
    line-height: 20px;
  }
}
