/* Remove OJS/PKP branding in footer */
.pkp_brand_footer {
  display: none;
}

/* Custom footer styles */
.pkp_structure_footer_wrapper {
  background-color: #60598b;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.eph-footer {
  background-color: #60598b; /* Updated */
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.eph-footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.eph-footer-section {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.eph-footer-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
  border-bottom: 1px solid #aaa;
  padding-bottom: 5px;
}

.eph-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eph-footer-section ul li {
  margin-bottom: 8px;
}

.eph-footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
}

.eph-footer-section ul li a:hover,
.eph-footer-section ul li a:focus,
.eph-footer-section ul li a:visited {
  color: #ffffff;
  text-decoration: none;
}

.eph-social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.eph-social-icons a img {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.eph-footer-bottom {
  text-align: center;
  padding: 9px;
  background-color: #4e4873; /* A slightly darker variant of #60598b */
  color: #ccc;
  font-size: 14px;
  width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .eph-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .eph-footer-section {
    align-items: center;
    text-align: center;
  }

  .eph-social-icons {
    justify-content: center;
  }
}
/* Hide the name div inside each contact block */
.page_contact .contact_section .contact .name {
    display: none;
}