.section-documents .btn-1{
	background-color: rgba(19, 115, 58, 0.2);
}
p.heading-description {
  margin-bottom: 1.5rem;
}

button[hide] {
	display:none;
}
.section-most-download-documents {
  padding-top: 3.75rem;
}

.documents-container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 1.38rem;
}
.section-documents {
	margin-top:3.75rem;
}
.section-documents .documents-container {
  padding-top: 1.5rem;
  row-gap: 2rem;
}

.document-item {
  display: flex;
  flex-direction: column;
}

.section-documents .document-skeleton {
  pointer-events: none;
}

.section-documents .skeleton-block {
  display: block;
  border-radius: 0.25rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #fafafa 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}

.section-documents .skeleton-text {
  height: 0.875rem;
}

.section-documents .skeleton-text-medium {
  width: 65%;
  margin-bottom: 0.5rem;
}

.section-documents .skeleton-title {
  width: 90%;
  height: 2.4rem;
  margin-bottom: 0.75rem;
}

.section-documents .skeleton-button {
  width: 100%;
  height: 2.3125rem;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.document-item .image-container {
  height: 23rem;
  margin-bottom: 0.75rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.document-item .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	border: 1px solid var(--grey-200);
}

.document-item .download-count {
  color: var(--grey-400);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0.38rem;
}

.document-item h4 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
	min-height:2.4rem;
  line-height: 120%;
  color: #0c482f;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0.75rem;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.125rem;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

.document-item h4:hover {
  text-decoration-color: #0c482f;
}

.document-item .download-btn {
  border-radius: 0.25rem;
  background: rgba(19, 115, 58, 0.2);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 128.6%;
  color: var(--green-600);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.3125rem;
  transition: all 0.3s ease;
  position: relative;
}

.document-item .download-btn svg {
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
}

.document-item .download-btn:hover {
  background: rgba(19, 115, 58, 0.4);
}

/* .section-documents {
  padding-top: 3.75rem;
} */

/* .pagination-container {
  padding-bottom: 3.75rem;
} */

@media (max-width: 768px) {
  .documents-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .document-item .image-container {
    height: 15rem;
  }
  .section-most-download-documents .documents-container {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    margin: 0 -0.3rem;
    row-gap: 1.25rem;
    column-gap: 0.5rem;
  }
  .section-most-download-documents .documents-container::-webkit-scrollbar {
    display: none;
  }
  .section-documents .documents-container {
    row-gap: 1.25rem;
    column-gap: 0.5rem;
  }
  .section-most-download-documents .documents-container .document-item {
    flex: none;
    width: 14rem;
  }
}
