/* resources/puchi-custom/styles.css */
#main-container > div > div.mb-3.font-size-sm.mt-3.m-3.mx-xl-0 > span {
    display: none;
}
.custom-html-style blockquote {
    padding: 15px 8px 15px 15px;
}

#main-container > div > h2.font-weight-normal {
    display: none;
}

.puchistatic-logo {
    width: 230px;
}

.puchistatic-copyright {
    display: none;
}

.puchistatic-knowledge-search-bar {
    display: none !important;
}
/* resources/puchi-custom/styles.css */
.puchistatic-client-downloads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.puchistatic-client-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 12px 16px;
  color: #495057;
  border-right: 1px solid #eee;
  transition: background-color .2s, color .2s;
}
.puchistatic-client-download:last-child {
  border-right: 0;
}
.puchistatic-client-download:hover {
  color: #0665d0;
  background: #f6f6f6;
}
.puchistatic-client-download i {
  font-size: 24px;
}
.puchistatic-client-download span {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .puchistatic-client-downloads {
    grid-template-columns: repeat(2, 1fr);
  }
  .puchistatic-client-download {
    border-bottom: 1px solid #eee;
  }
  .puchistatic-client-download:nth-child(2) {
    border-right: 0;
  }
  .puchistatic-client-download:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
