.pdf-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  font-family: sans-serif;
}

.pdf-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pdf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.pdf-info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 20%;
}

.pdf-icon {
  font-size: 33px;
  margin-left: 17px;
  line-height: 1;
  flex-shrink: 0;
}

.pdf-title {
  font-size: 16px;
  font-weight: bold;
}

.pdf-button {
  background-color: #00a3e0;
  color: white !important;
  text-align: center;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.2;
}

.pdf-button span {
  font-size: 12px;
  color: #e0f7ff;
}

.pdf-link p {
  width: 75%;
  margin-bottom: 0 !important;
}

.pdf-link p:hover {
  color: #666 !important;
}

.pdf-link:hover {
  color: #666 !important;
}

.pdf-info:hover {
  color: #004cc1;
}

@media (max-width: 991px) {
  .pdf-info {
    width: 30%;
  }
}

@media (max-width: 767px) {
  .pdf-item {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .pdf-info {
    width: 100%;
    justify-content: center;
  }

  .pdf-link p {
    width: 100%;
    margin-top: 5%;
  }

  .pdf-icon {
    margin-left: 0;
  }
}