.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: #0066cc;
  text-decoration: none;
}

main.article {
  padding: 4.8rem 0 6.4rem 0;
}

.resource-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
  max-width: 121.6rem;
  border-bottom: 1px solid #e5e7eb;
  margin: 0 auto 4.8rem auto;
}

.resource-block__content {
  flex: 1;
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
}

.resource-block__title {
  font-size: 3.6rem;
  line-height: 4.4rem;
  color: #141414;
  font-weight: 700;
}

.resource-block__text {
  font-size: 1.6rem;
  color: #374151;
  line-height: 2.4rem;
  max-width: 48rem;
}

.resource-block__image {
  flex: 1;
  max-width: 59.2rem;
  max-height: 39.4rem;
}

.resource-block__image img {
  width: 100%;
  height: 39rem;
  border-radius: 0;
  display: flex;
  object-fit: cover;
}

.international-partners {
  background-color: #fff;
  max-width: 121.6rem;
  margin: 0 auto;
}

.partner-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.partner-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.partner-acronym {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 2.8rem;
}

.partner-name {
  font-size: 1.6rem;
  color: #374151;
  margin: 0;
  line-height: 2.4rem;
}

.partner-link {
  font-size: 1.4rem;
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.partner-link:hover {
  color: #0055aa;
  text-decoration: underline;
}

.membership-cta {
  display: flex;
  align-items: center;
  padding: 5.6rem 11.2rem;
  background-color: #fafafa;
  width: 100%;
}

.membership-image {
  flex: 1;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
  max-width: 58.6rem;
  max-height: 33rem;
}

.membership-image img {
  width: 100%;
  height: 39.6rem;
  display: block;
  object-fit: cover;
}

.membership-content {
  flex: 1;
  max-width: 50rem;
}

.membership-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2.4rem;
  line-height: 1.2;
}

.membership-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 5.7rem 0;
}

.membership-benefits li {
  font-size: 1.6rem;
  color: #374151;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 2.4rem;
  align-items: center;
}

.main-content__section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3.2rem;
  max-width: 121.6rem;
  width: 100%;
  margin: auto;
}

.membership-benefits li::before {
  content: "";
  background-image: url("/wp-content/themes/ref/img/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.btn-membership {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: #0070ad;
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 10rem;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 22.2rem;
  height: 4.9rem;
}

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

/* Мобильная версия (375px - 834px) */
@media (max-width: 834px) {
  .news-list-header {
    padding: 3.2rem 1.6rem 0;
  }

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

  main.article {
    padding: 2.4rem 0 3.2rem;
  }

  .resource-block {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
    padding: 0 1.6rem;
    border-bottom: none;
  }

  .resource-block__content {
    gap: 1.6rem;
  }

  .resource-block__title {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .resource-block__text {
    font-size: 1.4rem;
    line-height: 2rem;
    max-width: 100%;
  }

  .resource-block__image {
    max-width: 100%;
    max-height: 22.9rem;
  }

  .resource-block__image img {
    max-height: 22.9rem;
  }
  .main-content__section {
    flex-direction: column;
  }

  .international-partners {
    padding: 0 1.6rem;
  }

  .partner-column {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
  }

  .partner-column {
    gap: 3.2rem;
  }

  .partner-item {
    gap: 0.4rem;
  }

  .partner-acronym {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .partner-name {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .partner-link {
    font-size: 1.2rem;
  }

  .membership-cta {
    flex-direction: column;
    padding: 2.4rem 1.6rem 3.2rem;
    gap: 2.4rem;
  }

  .membership-image {
    max-width: 100%;
    max-height: 24rem;
    border-radius: 0;
  }

  .membership-content {
    max-width: 100%;
  }

  .membership-title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    line-height: 3.6rem;
  }

  .membership-benefits {
    margin: 0 0 3.2rem 0;
  }

  .membership-benefits li {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 2rem;
    gap: 0.8rem;
  }

  .membership-benefits li::before {
    width: 2rem;
    height: 2rem;
  }

  .btn-membership {
    font-size: 1.6rem;
    padding: 1rem 1.6rem;
    max-width: 100%;
    height: auto;
    justify-content: center;
  }
}

/* Планшетная версия (834px - 1200px) */
@media (min-width: 835px) and (max-width: 1200px) {
  .news-list-header {
    padding: 4rem 3.2rem 0;
  }

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

  main.article {
    padding: 4rem 0 5.6rem;
  }

  .resource-block {
    gap: 3.2rem;
    margin-bottom: 4rem;
    padding: 0 3.2rem;
    flex-direction: column;
    border-bottom: none;
  }

  .resource-block__content {
    gap: 2.4rem;
  }

  .resource-block__title {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  .resource-block__text {
    font-size: 1.5rem;
    line-height: 2.2rem;
    max-width: 100%;
  }

  .resource-block__image {
    width: 100%;
    height: 49rem;
    object-fit: cover;
    max-width: 100%;
    max-height: 39rem;
  }

  .international-partners {
    padding: 0 2.4rem;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }

  .partner-column {
    gap: 3.2rem;
  }

  .partner-item {
    gap: 0.4rem;
  }

  .partner-acronym {
    font-size: 2rem;
    line-height: 2.6rem;
  }

  .partner-name {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .partner-link {
    font-size: 1.4rem;
  }

  .membership-cta {
    gap: 3.2rem;
    padding: 3.2rem 3.2rem 4.8rem;
  }

  .membership-image {
    max-width: 100%;
    max-height: 39.6rem;
    border-radius: 0;
  }

  .membership-content {
    max-width: 100%;
  }

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

  .membership-benefits {
    margin: 0 0 4.8rem 0;
  }

  .membership-benefits li {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 2.2rem;
    gap: 0.8rem;
  }

  .membership-benefits li::before {
    width: 2.2rem;
    height: 2.2rem;
  }

  .btn-membership {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
    max-width: 20rem;
    height: 4.5rem;
  }
  .main-content__section {
    flex-direction: column;
  }
}
