/* ============================================================
   Science Act – Minimal Custom Stylesheet for OJS 3.x
   ONLY changes:
     1. "BLOCK TITLE"  →  "Latest Articles"
     2. "Platform & workflow by OJS/PKP"  →  "Science Act Platform"
     3. Cover image placed under Keywords in the sidebar
   Everything else (colors, fonts, spacing, other blocks) stays original.
   ============================================================ */

/* ---------- 1. Change only the "BLOCK TITLE" text ---------- */
.pkp_structure_sidebar .pkp_block:first-of-type .title,
.pkp_structure_sidebar .pkp_block:first-child .title {
  font-size: 0 !important;
  line-height: 0 !important;
}
.pkp_structure_sidebar .pkp_block:first-of-type .title::before,
.pkp_structure_sidebar .pkp_block:first-child .title::before {
  content: "Latest Articles";
  font-size: 1rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: inherit;
  line-height: 1.4 !important;
  display: block;
}

/* ---------- 2. Replace footer branding text ---------- */
.pkp_brand_footer {
  font-size: 0 !important;
  line-height: 0 !important;
  position: relative;
  min-height: 2.2rem;
  text-align: center;
}
.pkp_brand_footer img {
  display: none !important;
}
.pkp_brand_footer a {
  font-size: 0 !important;
}
.pkp_brand_footer::after {
  content: "Science Act Platform";
  font-size: 0.9rem;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.5;
  padding: 0.5rem 0;
}

/* ---------- 3. Cover image under Keywords sidebar ---------- */
.pkp_structure_sidebar .pkp_block:last-of-type::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  background-image: url("https://i.postimg.cc/65xKt0KF/image-(1).jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
