.teachers-section {
  padding: 70px 6%;
  background: #f9fbf9;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.teachers-section h2 {
  font-size: 2.5em;
  color: #006d75;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.teachers-section .subtitle {
  font-size: 1.15em;
  color: #0097a7;
  margin-bottom: 40px;
}

/* Рівна сітка */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: stretch;
}

/* Рівні картки */
.teacher-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-top: 4px solid #0097a7;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%; /* Гарантує однакову висоту */
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.teacher-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-card h3 {
  color: #006d75;
  font-size: 1.4em;
  margin-bottom: 8px;
  text-align: center;
}

.teacher-card .role {
  color: #444;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}

/* Опис */
.teacher-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  background: #f0fbfc;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 0.95em;
  color: #333;
  line-height: 1.5;
  width: 100%;
  margin-top: 10px;
}

.teacher-details.open {
  max-height: 300px;
  opacity: 1;
  padding: 15px;
}

/* Кнопка завжди внизу */
.more-btn {
  padding: 10px 24px;
  background: #0097a7;
  color: #fff;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin-top: auto; /* Вирівнює кнопку вниз */
}

.more-btn:hover {
  background: #007f8c;
}

/* Приховуємо футер */
.page-template-page-teachers footer,
.page-template-page-teachers .site-footer {
    display: none !important;
}
