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

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

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

.breadcrumb-separator {
  color: #999;
}

.breadcrumb-current {
  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;
  margin: auto;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 4.8rem;
}

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

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

.resource-block__text {
  font-size: 1.6rem;
  color: #374151;
  line-height: 2.4rem;
  max-width: 59.2rem;
  width: 100%;
}
.resource-block__image {
  width: 100%;
  max-width: 59.2rem;
  height: 100%;
  max-height: 39.4rem;
}

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

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem 3.2rem;
  background-color: #fff;
  max-width: 121.6rem;
  margin: 0 auto;
  padding-bottom: 6.4rem;
}

.document-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  transition: border-color 0.2s ease;
}
.document-card:hover .document-title {
  text-decoration: underline;
}
.document-card:hover {
  border-color: #ddd;
}

.document-icon {
  font-size: 2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  line-height: 2.8rem;
}

.document-author {
  font-size: 1.6rem;
  color: #6b7280;
  line-height: 2.4rem;
}

.document-link {
  font-size: 1.4rem;
  color: #0066cc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

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

@media (max-width: 834px) {
  .news-list-header {
    padding: 2.8rem 1.4rem 0;
  }

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

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

  .resource-block {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
    padding: 2rem 1.4rem 0;
  }

  .resource-block__content {
    gap: 1.4rem;
  }

  .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: 28rem;
  }

  .documents-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem 1.6rem;
    padding: 0 1.6rem 2.7rem;
  }

  .document-card {
    padding: 0;
    gap: 1.2rem;
  }

  .document-icon {
    font-size: 1.6rem;
    width: 4rem;
    height: 4rem;
  }

  .document-title {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .document-author {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .document-link {
    font-size: 1.2rem;
    gap: 0.4rem;
  }
  .resource-block__image img {
    height: 22.8rem;
  }
}

@media (min-width: 835px) and (max-width: 1200px) {
  .news-list-header {
    padding: 4.8rem 3.2rem 0;
  }

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

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

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

  .resource-block__content {
    gap: 2rem;
  }

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

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

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

  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 2.4rem;
    padding: 0 3.2rem 4.8rem;
  }

  .document-card {
    padding: 0;
    gap: 1.6rem;
  }

  .document-icon {
    font-size: 1.8rem;
    width: 4.8rem;
    height: 4.8rem;
  }

  .document-title {
    font-size: 2rem;
    line-height: 2.6rem;
  }

  .document-author {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }

  .document-link {
    font-size: 1.3rem;
    gap: 0.4rem;
  }
}
