


/* Hero Section Code  */
/* HERO SECTION */
.journal_hero{
  position:relative;
  min-height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(rgba(23,34,56,.88),rgba(40,89,133,.82)),
    url("/ojs/public/site/images/library-hero.jpg") center/cover;
}

.journal_hero_content{
  position:relative;
  z-index:2;
  max-width:1000px;
  padding:60px 20px;
}

.journal_hero_label{
  color:#eab308;
  font-weight:bold;
  letter-spacing:3px;
}

.journal_hero_title{
  color:#fff !important;
  font-size:58px;
  margin:20px 0;
}

.journal_hero_description{
  color:#d8e0e8;
  font-size:19px;
  line-height:1.7;
  margin-bottom:35px;
}

.journal_hero_buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.hero_submit_button,
.hero_contact_button{
  padding:17px 30px;
  color:#fff !important;
  font-weight:bold;
  text-decoration:none !important;
  border:2px solid #cd9a00;
  border-radius:5px;
}

.hero_submit_button{
  background:#eab308;
}

.hero_contact_button{
  background:#172238;
}

.hero_submit_button:hover,
.hero_contact_button:hover{
  background:#cd9a00;
}

/* MOBILE */
@media(max-width:767px){
  .journal_hero{
    min-height:500px;
  }

  .journal_hero_title{
    font-size:34px;
  }

  .journal_hero_description{
    font-size:16px;
  }

  .journal_hero_buttons{
    flex-direction:column;
  }

  .hero_submit_button,
  .hero_contact_button{
    width:100%;
  }
}











/* ==========================================================================
   Sidebar & Information Widgets Styling
   ========================================================================== */

/* Container styling for sidebar blocks */
.pkp_structure_sidebar .pkp_block,
.cmp_notification_subscribe,
.pkp_block_information {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s ease;
}

.pkp_structure_sidebar .pkp_block:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Block Headers ("Information", "Latest Publications") */
.pkp_structure_sidebar .title,
.pkp_block_information h2,
.pkp_block_information .title {
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid #eab308;
  text-transform: capitalize;
  letter-spacing: -0.3px;
}

/* List Styling for "Information" Links (For Readers, Authors, Librarians) */
.pkp_block_information ul,
.pkp_structure_sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkp_block_information li,
.pkp_structure_sidebar li {
  margin-bottom: 10px;
}

.pkp_block_information li:last-child,
.pkp_structure_sidebar li:last-child {
  margin-bottom: 0;
}

/* Navigation Links within Widgets */
.pkp_block_information a,
.pkp_structure_sidebar a {
  color: #334155 !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.pkp_block_information a:hover,
.pkp_structure_sidebar a:hover {
  color: #eab308 !important;
  background-color: #f1f5f9;
  transform: translateX(4px);
}

/* Add a subtle bullet indicator before sidebar links */
.pkp_block_information ul li a::before {
  content: "â€º";
  color: #eab308;
  font-size: 18px;
  font-weight: bold;
  margin-right: 8px;
  line-height: 1;
}

/* ==========================================================================
   "Latest Publications" Feed Icons (RSS & Atom)
   ========================================================================== */

/* Align feed icons horizontally with nice buttons */
.pkp_block.rss_block ul,
.pkp_block_subscription ul {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

.pkp_block.rss_block li img,
.pkp_block_subscription img {
  height: 24px;
  width: auto;
  border-radius: 4px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.85;
}

.pkp_block.rss_block li img:hover,
.pkp_block_subscription img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* OJS Publisher / Platform Logo Footer Badge */
.pkp_brand_footer,
.pkp_structure_sidebar .pkp_block img {
  max-width: 100%;
  height: auto;
  margin-top: 8px;
  border-radius: 4px;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 767px) {
  .pkp_structure_sidebar .pkp_block,
  .pkp_block_information {
    padding: 16px;
    margin-bottom: 16px;
  }
}

/*=========================
CUSTOM FOOTER
==========================*/

.custom-footer {
  background: #083d77;

  color: #fff;

  padding: 60px 60px 20px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 60px;
}

.footer-column h3 {
  color: #fff;

  font-size: 32px;

  margin-bottom: 15px;
}

.footer-column h4 {
  color: #fff;

  font-size: 20px;

  margin-bottom: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.3);

  padding-bottom: 10px;
}

.footer-column p {
  color: #d4d4d4;

  line-height: 1.9;
}

.footer-column ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #d4d4d4;

  text-decoration: none;

  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;

  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  margin-top: 50px;

  padding-top: 20px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer-links a {
  margin-left: 20px;

  color: #fff;

  text-decoration: none;
}

.footer-links a:hover {
  color: #ffd54f;
}

.pkp_brand_footer {
  display: none;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 20px;
  }
}

/* ==========================================================================
   Footer Width & Alignment Styles
   ========================================================================== */

/* Set the Outer Footer Container Background */
.pkp_structure_footer_wrapper {
  background-color: #0f172a; /* Matches header background color */
  border-top: 3px solid #eab308; /* Matches header top/bottom border */
  padding: 30px 0;
  width: 100%;
}

/* Align Inner Footer Content with Header Width */
.pkp_structure_footer {
  max-width: 1200px; /* Matches header max-width */
  margin: 0 auto;
  padding: 0 20px; /* Matches header horizontal padding */
  box-sizing: border-box;

  /* Flexbox Layout for Side-by-Side Content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Footer Link and Text Styling */
.pkp_structure_footer a,
.pkp_footer_content {
  color: #e2e8f0 !important;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 14px;
}

.pkp_structure_footer a:hover {
  color: #38bdf8 !important;
  text-decoration: underline;
}

/* Brand Logo inside Footer (OJS Platform/Publisher Image) */
.pkp_brand_footer {
  max-height: 50px;
  width: auto;
}

/* ==========================================================================
   Responsive Breakpoints for Mobile & Tablet
   ========================================================================== */

@media (max-width: 767px) {
  .pkp_structure_footer {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }
}

/* ==========================================================================
   MODERN CURRENT ISSUE SECTION
   Clean layout - No article border - No article shadow
   ========================================================================== */

/* Main Current Issue Section */
.current_issue {
  max-width: 1200px;
  margin: 50px auto;
  padding: 10px;

  background: #ffffff;

  box-sizing: border-box;
}

/* ==========================================================================
   CURRENT ISSUE HEADING
   ========================================================================== */

.current_issue > h2 {
  position: relative;

  margin: 0 0 25px;
  padding-bottom: 15px;

  color: #0f172a;

  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;

  border-bottom: 2px solid #e2e8f0;
}

/* Blue underline */
.current_issue > h2::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -2px;

  width: 85px;
  height: 4px;

  background: #eab308;

  border-radius: 5px;
}

/* ==========================================================================
   ISSUE TITLE
   ========================================================================== */

.current_issue_title {
  margin-bottom: 25px;
  padding: 20px 24px;

  color: #ffffff;

  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);

  border-left: 5px solid #38bdf8;
  border-radius: 8px;

  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

/* ==========================================================================
   ISSUE DESCRIPTION
   ========================================================================== */

.current_issue .obj_issue_toc {
  width: 100%;
}

/* Description area */
.current_issue .obj_issue_toc > .heading {
  margin-bottom: 30px;
  padding: 22px 0;

  background: transparent;

  border: none;

  box-shadow: none;
}

/* Description */
.current_issue .description {
  color: #475569;

  font-size: 16px;
  line-height: 1.8;
}

.current_issue .description p {
  margin: 0;
}

/* Hide empty paragraphs */
.current_issue .description p:empty {
  display: none;
}

/* Published date */
.current_issue .published {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 18px;
  padding: 8px 14px;

  color: #075985;

  background: #e0f2fe;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;
}

.current_issue .published .label {
  color: #0369a1;
}

.current_issue .published .value {
  color: #0c4a6e;
}

/* ==========================================================================
   ARTICLES
   ========================================================================== */

.current_issue .sections {
  margin-top: 25px;
}

/* Articles heading */
.current_issue .section > h3 {
  position: relative;

  margin: 0 0 25px;
  padding-bottom: 10px;

  color: #0f172a;

  font-size: 25px;
  font-weight: 700;

  border-bottom: 1px solid #e2e8f0;
}

/* Article list */
.current_issue .cmp_article_list {
  margin: 0;
  padding: 0;

  list-style: none;
}

/* Article item */
.current_issue .cmp_article_list > li {
  margin: 0;
  padding: 28px 0;

  border: none;

  border-bottom: 1px solid #e2e8f0;

  box-shadow: none;
}

/* Last article */
.current_issue .cmp_article_list > li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   ARTICLE LAYOUT
   IMAGE LEFT - CONTENT RIGHT
   ========================================================================== */

.current_issue .obj_article_summary {
  display: grid;

  grid-template-columns: 190px minmax(0, 1fr);

  grid-template-areas:
    "cover title"
    "cover meta"
    "cover galley";

  column-gap: 30px;
  row-gap: 10px;

  align-items: start;

  width: 100%;

  margin: 0;
  padding: 0;

  background: transparent;

  border: none;

  border-radius: 0;

  box-shadow: none;

  box-sizing: border-box;

  transition: none;
}

/* Remove all hover movement and shadow */
.current_issue .obj_article_summary:hover {
  transform: none;

  border: none;

  box-shadow: none;
}

/* ==========================================================================
   ARTICLE IMAGE - LEFT
   ========================================================================== */

.current_issue .obj_article_summary .cover {
  grid-area: cover;

  width: 190px;

  margin: 0;

  overflow: hidden;

  background: #f1f5f9;

  border: none;

  border-radius: 6px;

  box-shadow: none;
}

.current_issue .obj_article_summary .cover a {
  display: block;

  width: 100%;
}

.current_issue .obj_article_summary .cover img {
  display: block;

  width: 100%;
  height: 240px;

  object-fit: cover;

  border: none;

  box-shadow: none;

  transition: transform 0.25s ease;
}

/* Small image zoom only */
.current_issue .obj_article_summary .cover:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   ARTICLE CONTENT - RIGHT
   ========================================================================== */

/* Article title */
.current_issue .obj_article_summary .title {
  grid-area: title;

  margin: 0;

  padding: 0;

  color: #0f172a;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.current_issue .obj_article_summary .title a {
  color: #0f172a;

  text-decoration: none;

  transition: color 0.2s ease;
}

.current_issue .obj_article_summary .title a:hover {
  color: #eab308;

  text-decoration: none;
}

/* Author and page details */
.current_issue .obj_article_summary .meta {
  grid-area: meta;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 10px 18px;

  margin: 0;

  color: #64748b;

  font-size: 15px;
}

/* Author */
.current_issue .obj_article_summary .authors {
  color: #475569;

  font-weight: 600;
}

/* Page number */
.current_issue .obj_article_summary .pages {
  padding: 5px 11px;

  color: #075985;

  background: #e0f2fe;

  border-radius: 20px;

  font-size: 13px;
  font-weight: 700;
}

/* ==========================================================================
   PDF / GALLEY LINKS
   ========================================================================== */

.current_issue .obj_article_summary .galleys_links {
  grid-area: galley;

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin: 5px 0 0;
  padding: 0;

  list-style: none;
}

.current_issue .obj_article_summary .galleys_links a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 90px;

  padding: 9px 16px;

  color: #ffffff !important;

  background: #eab308;

  border: none;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.current_issue .obj_article_summary .galleys_links a:hover {
  color: #ffffff !important;

  background: #0369a1;

  transform: translateY(-1px);
}

/* ==========================================================================
   VIEW ALL ISSUES BUTTON
   ========================================================================== */
.current_issue > .read_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;          
  padding: 8px 16px;         
  color: #ffffff !important;
  background: linear-gradient(135deg, #eab308, #0369a1);
  border: none;
  border-radius: 4px;        
  font-size: 13px;           
  font-weight: 600;          
  text-decoration: none;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.current_issue > .read_more:hover {
  color: #ffffff !important;
  background: #0369a1;
  transform: translateY(-1px); /* Subtle hover lift for smaller size */
  box-shadow: none;
  text-decoration: none;
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media screen and (max-width: 991px) {
  .current_issue {
    margin: 35px 20px;
    padding: 30px;
  }

  .current_issue > h2 {
    font-size: 28px;
  }

  .current_issue_title {
    font-size: 20px;
  }

  .current_issue .obj_article_summary {
    grid-template-columns: 160px minmax(0, 1fr);

    column-gap: 24px;
  }

  .current_issue .obj_article_summary .cover {
    width: 160px;
  }

  .current_issue .obj_article_summary .cover img {
    height: 205px;
  }

  .current_issue .obj_article_summary .title {
    font-size: 21px;
  }
}

/* ==========================================================================
   MOBILE
   IMAGE TOP - CONTENT BELOW
   ========================================================================== */

@media screen and (max-width: 767px) {
  .current_issue {
    margin: 25px 12px;
    padding: 20px;
  }

  .current_issue > h2 {
    font-size: 25px;
  }

  .current_issue_title {
    padding: 17px;

    font-size: 18px;
  }

  .current_issue .obj_issue_toc > .heading {
    padding: 18px 0;
  }

  .current_issue .description {
    font-size: 15px;
    line-height: 1.7;
  }

  .current_issue .cmp_article_list > li {
    padding: 24px 0;
  }

  /* Change to vertical layout */
  .current_issue .obj_article_summary {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }

  /* Image centered on mobile */
  .current_issue .obj_article_summary .cover {
    width: 100%;

    max-width: 230px;

    margin: 0 auto;
  }

  .current_issue .obj_article_summary .cover img {
    width: 100%;

    height: auto;

    max-height: 300px;

    object-fit: cover;
  }

  /* Content below image */
  .current_issue .obj_article_summary .title {
    width: 100%;

    font-size: 20px;
  }

  .current_issue .obj_article_summary .meta {
    width: 100%;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
  }

  .current_issue .obj_article_summary .galleys_links {
    width: 100%;
  }

  .current_issue .obj_article_summary .galleys_links a {
    width: 100%;
  }

  .current_issue > .read_more {
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media screen and (max-width: 420px) {
  .current_issue {
    margin: 18px 8px;
    padding: 15px;
  }

  .current_issue > h2 {
    font-size: 22px;
  }

  .current_issue_title {
    padding: 14px;

    font-size: 16px;
  }

  .current_issue .obj_article_summary .title {
    font-size: 18px;
  }

  .current_issue .obj_article_summary .cover {
    max-width: 200px;
  }
}



/* Pages CSS */
