.white-paper-list {
  max-width: 950px;
  display: grid;
  grid-template-columns: 1fr;
}
.white-paper-list > .white-paper-item:first-child {
  border-top: 1px solid #212b3645;
}
.white-paper-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  gap: 30px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #212b3645;
  border-radius: 0;
}
.white-paper-image {
  width: 100%;
  min-width: 166px;
  max-width: 166px;
  height: 104px;
}
.white-paper-content {
  min-height: 104px;
}
.white-paper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.white-paper-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.white-paper-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.white-paper-title img {
  width: 24px;
  height: 24px;
}
.white-paper-content h3 {
  text-align: left;
  font-size: 1.25rem;
  margin: 0 0 8px;
}
.white-paper-content .download-link {
  color: rgba(51, 102, 255, 1);
  text-decoration: none;
  font-size: 0.875rem;
  text-align: left;
}
.white-paper-content .download-link:hover {
  text-decoration: underline;
}
html[lang="ar-eg"] .white-paper-content h3,html[lang="ar-eg"] .white-paper-content .download-link{
  text-align: right;
}
@media (max-width: 850px) {
  .white-paper-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .white-paper-image {
    max-width: 100%;
    height: 180px;
  }
  .white-paper-content h3 {
    font-size: 1.125;
  }
  .white-paper-content {
    min-height: unset;
  }
}
