/* Remove default OJS footer background */
.pkp_structure_footer {
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.pkp_structure_footer_wrapper{
    background-color: #f5f5f5 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
/* Hide PKP branding */
.pkp_brand_footer {
  display: none !important;
}

/* Your custom footer styling */
.jc-footer {
  background-color: #f5f5f5;
  color: #333;
  padding: 30px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.jc-footer a {
  color: #555;
  text-decoration: none;
  margin: 0 8px;
}

.jc-footer a:hover {
  color: #000;
  text-decoration: underline;
}

.jc-footer .footer-cols {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.jc-footer .logo {
  max-height: 50px;
  margin-bottom: 10px;
}


@media (min-width: 768px) {
  .jc-footer .footer-cols {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  .jc-footer .logo {
    margin-bottom: 0;
  }
}
