/* Import latest Font Awesome 6 CSS (CSS-only, no JS) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

.obj_article_details .abstract,
.obj_article_details .item > :last-child {
		text-align: justify;
}
.pkp_structure_page {
        margin-top:0px;
		margin-bottom:0px;
	}

/* Hide PKP footer image */
.pkp_brand_footer {
    display: none;
}
.pkp_site_name {
    padding: 20px 0;
}
.pkp_site_name a {
    font-size: 28px;
    font-weight: 700;
}
.pkp_site_description {
    font-size: 15px;
    line-height: 1.6;
}
.obj_article_details .page_title {
    font-size: 30px;
    line-height: 1.3;
}
.item.authors {
    margin-bottom: 25px;
}
.item.abstract {
    font-size: 17px;
    line-height: 1.8;
}
.obj_galley_link {
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 4px;
}
.obj_galley_link.pdf {
    background-color: #1d4ed8;
    color: #ffffff;
}
.cmp_button_wire {
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 4px;
    background-color: #1d4ed8;
    color: #ffffff;
}
.obj_galley_link.html {
    background-color: #e5e7eb;
    color: #111827;
}
	
/* Container styling */
.accordion-container {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

/* Hide the radio buttons */
.accordion-container input[type="radio"] {
  display: none;
}

/* Section labels */
.accordion-container label {
  display: block;
  padding: 15px 20px;
  background: #f2f7fa;
  border-left: 4px solid #6f42c1;
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.accordion-container label:hover {
  background: #e6f0fa;
}

/* Content styling */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f8f9fa;
  padding: 0 20px;
  transition: max-height 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}

/* Show content when radio is checked */
.accordion-container input[type="radio"]:checked + label + .accordion-content {
  max-height: 500px; /* Enough height to fit content */
  padding: 15px 20px;
}

/* Modern PayPal button */
.paypal-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0070ba;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.3s ease;
}

.paypal-btn:hover {
  background: #005ea6;
}

/* Modern sidebar menu */
.sidebarmenu {
  padding-left: 0;
  list-style: none;
  margin: 0;
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #1f2937; /* dark gray */
  border-radius: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Section headers */
.sidebarmenu .sidebar-section {
  font-weight: 700;
  font-size: 16px;
  color: #f12020;
  padding: 10px 12px 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #374151;
  margin-top: 10px;
}

/* Sidebar links */
.sidebarmenu li a {
  display: block;
  padding: 8px 12px;
  font-size: 15px;
  color: #d1d5db; /* light gray */
  text-decoration: none;
  border-radius: 4px;
  margin: 2px 8px;
  transition: all 0.3s ease;
}

/* Font Awesome spacing */
.sidebarmenu li a i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

/* Hover effect */
.sidebarmenu li a:hover {
  background-color: #f12020;
  color: #ffffff;
  padding-left: 18px;
}

/* Active link */
.sidebarmenu li a.active {
  font-weight: 600;
  background-color: #f12020;
  color: #fff;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .sidebarmenu li a {
    font-size: 14px;
    padding: 6px 10px;
  }
  .sidebarmenu .sidebar-section {
    font-size: 14px;
    padding: 8px 10px 4px 10px;
  }
}

.journal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #004d99, #0066cc);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0;
}

.journal-strip span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}

.editorial-board-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.editor-card {
  flex: 1 1 30%;
  max-width: 300px;
  background: #fff;
  border-top: 4px solid #004d99;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.editor-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.editor-card h3 {
  margin: 8px 0;
  color: #004d99;
  font-size: 17px;
}

.editor-card p {
  margin: 5px 0;
  font-size: 14px;
}

.editor-card a {
  color: #004d99;
  text-decoration: none;
}

.editor-card a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .editor-card {
    flex: 1 1 45%;
  }
}

@media screen and (max-width: 600px) {
  .editor-card {
    flex: 1 1 100%;
  }
}