

.journal-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: auto;
}

.journal-cover img {
  width: 140px;
  height: auto;
  border-radius: 0px;
}

.journal-info {
  flex: 1;
  margin-left: 20px;
  min-width: 200px;
}

.journal-title {
  font-size: 20px;
  font-weight: bold;
  color: #164a75;
  margin-bottom: 5px;
}

.journal-meta {
  color: #666;
  margin-bottom: 10px;
  text-align: justify;
}

.journal-meta a {
  color: #0066cc;
  text-decoration: none;
}

.buttons {
  margin-top: 10px;
}

.btn {
  display: inline-block;
  padding: 8px 14px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: none;
  /* border-radius: 4px; */
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.submit-btn {
  background-color: #2a7ec2;
  color: white;
}

.homepage-btn {
  background-color: #19578a;
  color: white;
}

.submit-btn:hover {
  background-color: #000000;
  color: white;
}

.homepage-btn:hover {
  background-color: #000066;
  color: white;
}

/* Responsive Design */
@media (max-width: 600px) {
  .journal-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .journal-info {
    margin-left: 0;
    margin-top: 15px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 90%;
    max-width: 250px;
  }
}


.grid {
    display: grid;
}


.academic-banner-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background-color: #ffffff;
}

.academic-category {
  background: #ffffff;
  border: 1px solid #1f2937;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.academic-category:hover {
  transform: translateY(-5px);
}

.academic-category h3 {
  margin-top: 0;
  color: #1f2937;
  font-size: 1.3em;
}

.academic-category p {
  margin: 10px 0 0;
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
}


.custom-ojs-sidebar {
  padding: 25px;
  font-family: 'Segoe UI', sans-serif;
}

.sidebar-section {
  margin-bottom: 30px;
}

.sidebar-section h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #1f2937;
  border-bottom: 2px solid #1f2937;
  padding-bottom: 11px;
  text-transform: inherit;
}

.sidebar-btn {
  display: block;
  background-color: #19578a;
  color: white;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.sidebar-btn:hover {
  background-color: #ffffff;
}


.cmp_button_wire, .obj_galley_link {
    display: inline-block;
    padding: 0 1em;
    border-bottom: 1px solid #19578a;
    font-size: .93rem;
    line-height: calc(2.143rem - 2px);
    color: #000000;
    text-transform: uppercase;
}

.obj_article_summary {
    padding: 10px;
    border-bottom: 1px solid #19578a57;
    box-shadow: 0px 0px 20px -13px;
}


.sidebar-btn-outline {
  display: block;
  border: 2px solid #1f2937;
  color: #1f2937;
  text-align: center;
  padding: 9px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.sidebar-btn-outline:hover {
  background-color: #1f2937;
  color: #fff;
}

.contact-box a {
  color: #0077b6;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}


.sidebar-btn1 {
  display: block;
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
  font-weight: bold;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  40% { opacity: 0.1; }
}

.pkp_footer_content {
    padding: 0rem !important;
    text-align: left;
}

.pkp_page_index .additional_content {
    padding: 0rem 0rem 0 0rem;
    border-top: 0px solid #ddd;
}


@media (min-width: 768px) {
    .pkp_structure_main:before, .pkp_structure_main:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 1px;
        background: #dddddd00;
    }
}

.pkp_structure_footer_wrapper {
    background: #1f2937;
}

