.section-documents {
  margin-top: 7.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section-documents .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section-documents .section__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6rem;
}
.section-documents .block-documents {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3.2rem;
}
.section-documents .block-documents .block__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
  padding: 0 2.8rem;
}
.section-documents .block-documents .block__title {
  display: block;
  font-size: var(--font-size-h4);
  line-height: var(--line-height-snug);
  font-weight: var(--font-wight-regular);
  font-family: var(--font-family-heading);
}
.section-documents .block-documents .block__description {
  display: block;
  line-height: var(--line-height-dense);
}
.section-documents .block-documents .block__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section-documents .block-documents .list-documents {
  width: 100%;
  display: grid;
  gap: 0.6rem;
  padding: 0 0.6rem;
}
.section-documents .block-documents .card-document {
  width: 100%;
  padding: 2.8rem 2.2rem;
  border-radius: 1.8rem;
  background-color: var(--color-surface-muted);
  display: flex;
  gap: 1.6rem;
}
.section-documents .block-documents .card-document .card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: var(--color-primary);
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
}
.section-documents .block-documents .card-document .card__icon .icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-on-primary);
}
.section-documents .block-documents .card-document .card__label {
  display: block;
  line-height: var(--line-height-dense);
  font-size: var(--font-size-sm);
}
