/* 1) Logo / image'i tamamen gizle */
.pkp_brand_footer img {
  display: none !important;
  visibility: hidden !important;
}

/* 2) Orijinal footer paragraflarÄ±nÄ± gizle (kaydÄ±rma/yer kaplamasÄ±n diye) */
.pkp_footer_content p {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 3) Yeni footer metnini ekle (isteÄŸe gÃ¶re dÃ¼zenle) */
/*    \A yeni satÄ±r demektir. white-space ile satÄ±r sonlarÄ±nÄ± koruyoruz. */
.pkp_footer_content::after {
  content: "Â© 2024 Ripondone Solutions. All Rights Reserved.\AAll content published on this platform is protected by copyright. Unauthorized copying, reproduction, or distribution is strictly prohibited.\APrivacy Policy  |  Terms of Use  |  Contact\AFor any inquiries: journal@ripondone.com";
  white-space: pre-line;
  display: block;
  color: #222;
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0;
}

/* 4) EÄŸer footer'daki markayÄ± (saÄŸdaki blok) tamamen kaldÄ±rmak istersen,
   konteyneri gizle: */
.pkp_brand_footer {
  display: none !important;
}

/* 5) (Opsiyonel) Responsive / gÃ¶rÃ¼nÃ¼m ayarlarÄ± */
@media (max-width: 600px) {
  .pkp_footer_content::after {
    font-size: 12px;
  }
}
