/* ===== FULL-WIDTH FOOTER FIX FOR OJS ===== */

/* Break out of OJS container */
.journal-footer-horizontal {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  background-color: #138038;
  color: #e5e7eb;
  font-family: "Segoe UI", Arial, sans-serif;
}
.pkp_brand_footer {
    display: none !important;
}


/* Inner content stays readable */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Sections */
.footer-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo */
.footer-logo {
  max-height: 50px;
}

.journal-name {
  font-size: 18px;
  font-weight: 600;
}

/* Links */
.footer-links-section a {
  color: #cbd5f5;
  text-decoration: none;
  margin-right: 15px;
  font-size: 14px;
}

.footer-links-section a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

/* Contact */
.footer-contact-section span {
  display: block;
  font-size: 14px;
}

/* Bottom bar also full width */
.footer-bottom-bar {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  background-color: #020617;
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
  border-top: 1px solid #1e293b;
}
