/* ===== ОБУЧЕНИЕ ===== */
.education-page .main__title {
  margin: 47px 0;
}
.education__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin-top: 100px;
}
.education__block--reverse {
  flex-direction: row-reverse;
}
.education__image img {
  width: 456px;
  height: 290px;
  object-fit: cover;
  display: block;
}
.education__text {
  flex: 1;
  font: 400 16px var(--inter);
  color: var(--color-black);
}
.education__text p {
  margin: 0 0 16px 0;
  line-height: 1.5;
}
.education__link {
  color: var(--element-accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
  .education__block {
    gap: 61px;
    margin-top: 40px;
  }
  .education__text {
    font-size: 12px;
  }
  .education__image img {
    width: 353px;
    height: 225px;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 680px) {
  .education__block {
    flex-direction: column;
  }
  .education__block--reverse {
    flex-direction: column;
  }
  .education__image img {
    width: 100%;
    height: auto;
  }
  .education__block {
    gap: 20px;
  }
  .education__text {
    font-size: 12px;
  }
  .education__text p {
    margin: 0 0 10px 0;
  }
}
