.pkp_brand_footer {
  display: none !important;
}
.pkp_navigation_primary_row {
	border-top: 1px solid White;

}

.pkp_page_index .homepage_about h2 {
    margin-top: 0rem !important;
    display: none;
}

.pkp_page_index .homepage_about {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

.obj_issue_toc .sections:not(:first-child) {
    margin-top: 0.286rem;
}


@media (min-width: 992px) {

.pkp_structure_content {
        padding-top: 10px;
    }

    .pkp_head_wrapper {
        padding-top: 2.286rem;
    }

.pkp_site_name {
        padding-bottom: 10px;
    }
}

@media (max-width: 992px) {
.pkp_structure_main .page h1 {
    margin-top: 15px;
}
}

/* Apply text alignment to justify all paragraphs */
p {
    text-align: justify;
}

/* Justify text in articles, abstracts, and other content blocks */
.article-content p, .abstract p, .content p {
    text-align: justify;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
}

th, td {
    border: 1px solid black;
    padding: 0px;
vertical-align: middle;
}

ul, ol {
    text-align: justify; /* Justify the text inside bullet lists */
    list-style-position: inside; /* Ensures bullets align properly */
}

ul li, ol li {
    text-align: justify; /* Justifies each bullet point */
line-height: 1.6;      /* Adjust this value to match your <p> tags */
    margin-bottom: 0.5em;  /* Optional: adds spacing between items */
}


/* Container for the articles with a single column layout */
.cmp_article_list.articles {
  display: grid;
  grid-template-columns: 1fr; /* Single column layout */
  gap: 20px;
  margin: 20px 0;
}

/* Style for each article card */
.article-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Optional adjustments for text elements within the card */
.article-card .article-title {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.article-card .article-authors,
.article-card .article-abstract {
  font-size: 0.9em;
  margin: 5px 0;
  color: #555;
}

.article-card .read-more {
  margin-top: 10px;
  text-decoration: none;
  color: #007BFF;
  font-wei
}

@media only screen and (max-width: 767px) {
  /* Style each menu item in the mobile primary navigation */
  .pkp_navigation_primary_wrapper ul.pkp_navigation_primary li {
    padding: 5px 5px;           /* Add extra space inside each item */
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* Add a divider line */
    margin: 0;
  }
  
  /* Remove the divider on the last menu item */
  .pkp_navigation_primary_wrapper ul.pkp_navigation_primary li:last-child {
    border-bottom: none;
  }


@media (max-width: 768px) {
  nav.cmp_breadcrumbs {
    display: none; !important
  }
}

/* Breadcrumbs container styling */
.cmp_breadcrumbs {
    text-align: left; /* Left-align the breadcrumbs */
    border-bottom: 1px solid #ccc; /* Add a subtle bottom border */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Remove default list styling */
.cmp_breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Breadcrumb list items */
.cmp_breadcrumbs li {
    display: inline;
    font-size: 10px;
    color: #555;
}

/* Styling for breadcrumb links */
.cmp_breadcrumbs li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cmp_breadcrumbs li a:hover {
    color: #0056b3;
}

/* Separator styling between breadcrumb items */
.cmp_breadcrumbs li .separator {
    margin: 0 8px;
    color: #aaa;
}

/* Styling for the current (last) breadcrumb item */
.cmp_breadcrumbs li.current span {
    color: #333;
    font-weight: bold;
}