/* OJS/PKP brand yazısını gizle */
.pkp_brand_footer,
.pkp_brand_wrapper,
.pkp_brand,
.pkp_brand_footer .pkp_brand {
  display: none !important;
}

/* Sayfa iskeleti: sticky footer */
html, body {
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  display: flex;
  flex-direction: column;
}

/* İçerik alanı esnek */
.pkp_structure_content {
  flex: 1 0 auto;
}

/* Footer alanı */
.pkp_structure_footer_wrapper,
.pkp_site_footer {
  flex-shrink: 0;
  background: #efefef !important;   /* gri alan */
  border-top: 1px solid #e3e3e3 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Footer iç metin */
.pkp_structure_footer {
  max-width: 1140px;
  margin: 0 auto !important;
  padding: 16px 12px !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #000 !important;
  background: transparent !important;
}

/* Link görünümü */
.pkp_structure_footer a {
  color: #0073aa !important;
  text-decoration: underline;
}
.pkp_structure_footer a:hover {
  text-decoration: none;
}

/* Mobil uyum */
@media (max-width: 576px) {
  .pkp_structure_footer {
    font-size: 12px !important;
    padding: 14px 10px !important;
  }
}

/* site adı EYZED logonun sağına ekleme */

/* === EYZED yazısı (logo hizalı, iki satır) === */
.pkp_site_name {
  position: relative;
}

.pkp_site_name::after {
  content: "EYZED";
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 15%; /* Yukarı-aşağı konum: artır veya azalt */
  left: 110px; /* Logodan sağa uzaklık */
}

.pkp_site_name::before {
  content: "Artificial Intelligence in Education";
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #cfcfcf;
  opacity: 0.9;
  position: absolute;
  top: 55%; /* Alt satır konumu — ayarlanabilir */
  left: 110px;
}

/* Responsive uyum */
@media (max-width: 768px) {
  .pkp_site_name::after {
      font-size: 22px;
      left: 95px;
  }
  .pkp_site_name::before {
      font-size: 12px;
      left: 95px;
      top: 52%;
  }
}






