
* {
  margin: 0;
  padding: 0;
  border: 0;
}

h4,
p {
  margin: 0 !important;
}

a {
  text-decoration: none !important;
}

body {
  height: fit-content;
}

.document-list-container,
.more-button-container {
  padding: 0px 150px 48px 150px;
}

.document-list-container {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
}

.document {
  width: 100%;
  min-height: 58px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  border-bottom: 1px solid var(--gray-stroke, #dfe0eb);
}

.document .title {
  color: var(--gray-text-strong, #2c3059);
  font-family: "InterBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;

  margin: 0;
}

.link-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.download-link {
  width: max-content;
  display: flex;
  gap: 8px;
  padding: 0;
}

.download-link .lang {
  color: var(--gray-text-strong, #2c3059);
  font-family: "InterBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.clickable-image {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.more-button-container {
  padding: 48px 0px 90px 0px;
  display: flex;
  justify-content: center;
}

.more-button {
  justify-self: center;
  display: flex;
  height: 48px;
  padding: 8px var(--spacing-xl, 24px);
  justify-content: center;
  align-items: center;
  gap: 8px;

  color: var(--primary-text, #684b9b);
  text-align: center;

  /* Body1/Body 1 — Bold */
  font-family: "InterBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */

  border: none;
  border-radius: 30px;
  background: var(--primary-surface-weak, #f5efff);

  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

@media (max-width: 767px) {
  .document-list-container,
  .more-button-container {
    padding: 0px 16px 32px 16px;
  }

  .document {
    width: 100%;
    min-height: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: start;
    align-items: start;

    border-bottom: 1px solid var(--gray-stroke, #dfe0eb);
  }

  .more-button-container {
    padding: 24px 0px 72px 0px;
    display: flex;
    justify-content: center;
  }
}
