.img-fluid, .img-thumbnail {
  max-width: 300px !important;
}

.PlumX-Summary {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  overflow: hidden;
  margin-left: 25px;
}

.obj_article_details .entry_details img {
  width: 50%;
  height: auto;
}

.breadcrumbs-container {
  margin-left: 125px; /* Adjust the value as needed */
}

@media screen and (max-width: 768px) {
.breadcrumbs-container {
  margin-left: 15px; /* Adjust the value as needed */
}
}

@media screen and (max-width: 768px) {
  .obj_issue_summary .cover img {
    display: block;
    width: 40% !important;
    max-height: 250px;
  }
}

.obj_issue_summary .cover img {
  display: block;
  width: 100%;
  max-height: 250px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 100px;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
}


#header.header-scrolled {
  background-image: linear-gradient(to bottom left, #125691, #234377, #306e9f);
  height: 60px;
}

.hero-section, .hero-section > .container > .row {
  min-height: 500px;
}

.hero-section.inner-page .hero-text {
   margin-top: 70px;
  }

footer {
    color: white !important;
  }
  
.footer {
    text-align: center;
    background-image: linear-gradient(to bottom left, #125691, #234377, #306e9f);
  }

.footer a {
    color: coral;
    text-decoration: underline;
  }

@media screen and (max-width: 992px) {
  .hero-section, .hero-section > .container > .row {
    min-height: 300px;
  }
}

@media screen and (min-width: 992px) {
.obj_issue_toc .cover {
  margin-right: 0.143rem;
  margin-bottom: 1.43rem;
}
}
  
.page-container {
    display: flex;
    flex-wrap: wrap; /* Allow the columns to wrap on smaller screens */
  }
  
.page-container .column {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px; /* Adjust the gap between columns as needed */
    margin-bottom: 10px; /* Add bottom margin to create spacing between rows */
  }

.page-container .column:last-child {
    margin-right: 0;
    margin-bottom: 10px;
  }

.page-container .single-column {
    flex: 100%; /* Make the single-column span the full width */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 0;
    margin-bottom: 10px; /* Add bottom margin to create spacing between rows */
  }

.payment-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1376cd;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
  }
  
.payment-button:hover {
    background-color: #2c3b38;
    color: #ffffff;
  }

.payment-button:active {
    background-color: #2c3b38;
    color: #ffffff;
  }

.editor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
.editor-container .row {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
.editor-container .column {
    flex: 1;
    padding: 20px;
    border: 1px solid #04080F;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #ffffff;
    color: #125691;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
  }
  
.editor-container .column:hover {
    background: linear-gradient(to bottom left, #125691, #234377, #306e9f);
    color: white;
    font-weight: bold;
  }
  
.editor-container .column h2 {
    margin-top: 0;
  }
  
.editor-container .column p {
    margin-bottom: 0;
  }
  
.editor-container .column:last-child {
    margin-right: 0;
  }
  
.editor-container .column:hover {
    border: 2px solid #125691;
  }

.editor-container .column:hover h2,
.editor-container .column:hover p {
    color: white;
  }
  
@media screen and (max-width: 768px) {
    .editor-container .row {
      flex-wrap: wrap;
      justify-content: flex-start; /* Adjusted */
      margin-left: -10px; /* Added */
      margin-right: -10px; /* Added */
    }

@media screen and (max-width: 768px) {    
    .editor-container .column {
      flex-basis: calc(50% - 10px);
      margin-bottom: 20px;
      margin-left: 10px; /* Added */
      margin-right: 10px; /* Added */
    }

@media screen and (max-width: 768px) {    
    .editor-container .column:nth-child(odd) {
      flex-basis: calc(66.6667% - 10px);
    }
  }
