/* Основной контейнер */
.mission-page {
  padding: 6rem 8rem;
  background-color: #fff;
  max-width: 144rem;
  margin: 0 auto;
}

.news-list-header {
  padding: 4.8rem 11.2rem 0;
}

.breadcrumb,
.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #666;
}
.breadcrumb-current {
  color: #0070ad;
}

.breadcrumb-home {
  color: #666;
  text-decoration: none;
}

.breadcrumb-separator {
  color: #999;
}

.breadcrumb-link {
  color: #374151;
  text-decoration: none;
}

.main-content__section {
  display: flex;
  gap: 3.2rem;
  padding: 4.8rem 0 0rem;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
}

.mission-content {
  display: flex;
  margin-bottom: 4rem;
  padding-bottom: 0;
  flex-direction: column;
  gap: 4.8rem;
}

.mission-text {
  flex: 1;
  max-width: 60rem;
}

.mission-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.6rem;
  line-height: 2.4;
}

.mission-description p {
  font-size: 1.8rem;
  color: #555;
  line-height: 2.8rem;
  margin: 0;
}

.mission-image {
  flex: 1;
  overflow: hidden;
  max-width: 59.2rem;
  max-height: 39.4rem;
}
.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.mission-footer {
  display: flex;
  gap: 3.2rem;
  justify-content: space-between;
}

.members-section {
  flex: 1;
  max-width: 60rem;
}

.members-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.6rem;
  line-height: 4rem;
}

.members-description p {
  font-size: 1.6rem;
  color: #374151;
  line-height: 2.8rem;
  margin-bottom: 1.2rem;
}

.members-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 1.2rem 2.4rem;
  background-color: #0070ad;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 4rem;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-primary:hover {
  background-color: #006094;
}

.btn-secondary {
  padding: 1.2rem 2.4rem;
  background-color: transparent;
  color: #0070ad;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  border: 1px solid #0070ad;
  border-radius: 4rem;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-secondary:hover {
  background-color: #e6f2ff;
}

.contact-section {
  flex: 1;
  max-width: 59.2rem;
}

.contact-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.6rem;
  line-height: 4rem;
}

.contact-info {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
}

.contact-info p {
  margin: 0 0 0.8rem 0;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #0055aa;
  text-decoration: underline;
}

/* Мобильная версия (375px - 834px) */
@media (max-width: 834px) {
  .mission-page {
    padding: 2.8rem 1.4rem;
    max-width: 100%;
  }

  .news-list-header {
    padding: 2.8rem 1.4rem 0;
  }

  .breadcrumb {
    font-size: 1.2rem;
    padding: 0;
  }

  .breadcrumb svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .main-content__section {
    flex-direction: column;
    gap: 2.4rem;
    padding: 3.2rem 0 0;
    border-bottom: none;
  }

  .mission-content {
    gap: 3.2rem;
    margin-bottom: 0;
  }

  .mission-text {
    max-width: 100%;
  }

  .mission-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }

  .mission-description p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }

  .mission-image {
    max-width: 100%;
    max-height: 17rem;
  }

  .mission-footer {
    flex-direction: column;
    gap: 2.4rem;
    padding: 0;
  }

  .members-section {
    max-width: 100%;
  }

  .members-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }

  .members-description p {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0.8rem;
  }

  .members-buttons {
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1.4rem;
    padding: 1rem 1.6rem;
    width: 100%;
    justify-content: center;
  }

  .contact-section {
    padding: 0;
  }

  .contact-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }

  .contact-info {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .contact-info p {
    margin: 0 0 0.8rem 0;
  }
}

/* Планшетная версия (834px - 1200px) */
@media (min-width: 835px) and (max-width: 1200px) {
  .mission-page {
    padding: 4.8rem 3.2rem;
    max-width: 100%;
  }

  .news-list-header {
    padding: 4.8rem 3.2rem 0;
  }

  .breadcrumb {
    font-size: 1.3rem;
    padding: 0;
  }

  .breadcrumb svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .main-content__section {
    gap: 2.4rem;
    padding: 4rem 0 0;
    border-bottom: none;
    flex-direction: column;
  }

  .mission-content {
    gap: 4rem;
    margin-bottom: 0;
  }

  .mission-text {
    max-width: 100%;
  }

  .mission-title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    line-height: 1.4;
  }

  .mission-description p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .mission-image {
    max-width: 100%;
    max-height: 44rem;
  }

  .mission-footer {
    gap: 3.2rem;
    padding: 0;
  }

  .members-section {
    max-width: 40rem;
  }

  .members-title {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
    line-height: 1.4;
  }

  .members-description p {
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .members-buttons {
    gap: 1.2rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1.6rem;
    padding: 1.2rem 2rem;
    max-width: 100%;
    justify-content: center;
  }

  .contact-section {
    padding: 0 3.2rem;
  }

  .contact-title {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
    line-height: 1.4;
  }

  .contact-info {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }

  .contact-info p {
    margin: 0 0 0.8rem 0;
  }
}
