.pdfs {
  display: block;
}
@media (min-width: 1024px) {
  .pdfs {
    width: 100%;
    max-width: 1014px;
    margin: 0 auto 30px;
  }
}
.pdfs a {
  color: var(--color-orange);
}
.pdfs a:hover {
  color: var(--color-red);
}
.pdfs .grid {
  display: block;
  padding: 0 15px;
}
.pdfs .listing {
  gap: 30px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pdfs .listing > div {
  width: calc(100% - 40px);
}
@media (min-width: 767px) {
  .pdfs .listing > div {
    width: calc(50% - 40px);
  }
}
@media (min-width: 1024px) {
  .pdfs .listing > div {
    width: calc(25% - 40px);
  }
}
.pdfs .listing p {
  font-size: 1.375rem;
  line-height: 1;
  font-weight: var(--font-weight-700);
  margin-bottom: 10px;
}
.pdfs .listing ul, .pdfs .listing li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pdfs .listing ul {
  display: flex;
  justify-content: center;
}
.pdfs .listing a {
  font-size: 3rem;
  margin: 0 10px;
  text-align: center;
  display: block;
}
.pdfs .listing a i {
  font-size: 3rem;
}
.pdfs .listing a svg {
  padding: 0;
  height: 48px;
  width: auto;
  max-width: none;
}
.pdfs .listing a svg path {
  fill: var(--color-orange);
  transition: fill 0.25s ease-in-out;
}
.pdfs .listing a:hover svg path {
  fill: var(--color-red);
}
.pdfs .listing .item {
  border: 1px solid var(--color-gray-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}