.trainers {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    rgba(79, 179, 255, 0.08) 0%,
    rgba(255, 255, 255, 1) 48%,
    rgba(30, 90, 166, 0.05) 100%
  );
}

.trainers-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trainers-header {
  text-align: center;
  margin-bottom: 60px;
}

.trainers-header h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.trainers-header p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.7;
  color: rgba(30, 90, 166, 0.82);
}

.trainer-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(79, 179, 255, 0.22);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(30, 90, 166, 0.1);
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.trainer-row:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 90, 166, 0.22);
  box-shadow: 0 18px 45px rgba(30, 90, 166, 0.16);
}

.trainer-row-reverse {
  grid-template-columns: 1fr 420px;
}

.trainer-row-reverse .trainer-photo {
  order: 2;
}

.trainer-row-reverse .trainer-info {
  order: 1;
}

.trainer-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 179, 255, 0.24);
  box-shadow: 0 12px 28px rgba(30, 90, 166, 0.1);
  background: linear-gradient(135deg, rgba(79, 179, 255, 0.1), rgba(30, 90, 166, 0.06));
}

.trainer-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.trainer-info {
  min-width: 0;
}

.trainer-role {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(79, 179, 255, 0.16);
  border: 1px solid rgba(79, 179, 255, 0.3);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
}

.trainer-info h3 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.trainer-short,
.trainer-more p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 16px;
}

.trainer-more {
  padding-top: 4px;
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 18px;
}

.trainer-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(79, 179, 255, 0.14);
  border: 1px solid rgba(79, 179, 255, 0.24);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
}

.trainer-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(79,179,255,1), rgba(30,90,166,.96));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(30,90,166,.18);
  transition: .25s ease;
}

.trainer-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(30,90,166,.22);
}

.trainer-toggle.is-open {
  background: linear-gradient(135deg, rgba(30,90,166,.96), rgba(14,42,71,1));
}

@media (max-width: 980px) {
  .trainers {
    padding: 70px 14px;
  }

  .trainers-header h2 {
    font-size: 40px;
  }

  .trainers-header p {
    font-size: 19px;
  }

  .trainer-row,
  .trainer-row-reverse {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 22px;
  }

  .trainer-row-reverse .trainer-photo,
  .trainer-row-reverse .trainer-info {
    order: unset;
  }

  .trainer-photo img {
    height: 360px;
  }

  .trainer-info h3 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .trainers {
    padding: 60px 12px;
  }

  .trainers-header {
    margin-bottom: 35px;
  }

  .trainers-header h2 {
    font-size: 28px;
  }

  .trainers-header p {
    font-size: 16px;
    line-height: 1.6;
  }

  .trainer-row {
    padding: 16px;
    gap: 16px;
    border-radius: 18px;
  }

  .trainer-photo {
    border-radius: 16px;
  }

  .trainer-photo img {
    height: 260px;
  }

  .trainer-role {
    font-size: 13px;
    padding: 7px 12px;
  }

  .trainer-info h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .trainer-short,
  .trainer-more p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  .trainer-tags span {
    font-size: 13px;
    padding: 8px 12px;
  }

  .trainer-toggle {
    width: 100%;
  }
}