/* your styles go here */

.responsive {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.responsive_small {
  width: 60%;
  max-width: 300px;
  height: auto;
}

.video_responsive {
  width: 100%;
  max-width: 700px;
  min-height: 400px;
}

.footer {
  /* right: 0;
  bottom: 0;
  left: 0; */
  padding: 1rem;
  background-color: #efefef;
  text-align: center;
}


.pagination {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin: 10px 0;
}

.pagination a {
  text-decoration: none;
  color: #379392; 
  /* font-weight: bold; */
}

.meta {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0px; /* Adjust spacing as needed */
  margin-bottom: 10px; /* Remove any bottom margin */
  position: static; /* Ensure it follows the normal document flow */
}

.project-card {
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.04);
}

.project-card img {
  border-radius: 0.5rem;
}

.project-card h5 {
  margin-bottom: 0;
  min-height: 3.25rem;
}

.project-card .meta {
  margin-top: auto;
}

.project-grid > [class*='col-'] {
  margin-bottom: 1.5rem;
}


pre code {
  font-size: 0.7rem; /* Slightly larger font size for readability */
  background-color: #f8f9fa; /* Light gray background */
  color: #212529; /* Dark text for readability */
}

pre {
  margin: 1rem;
}

@media (min-width: 768px) {
  #sidebar {
    flex: 0 0 20%;
    max-width: 20%;
  }
  
  .content-column {
    flex: 0 0 80%;
    max-width: 80%;
  }
}

@media (min-width: 992px) {
  #sidebar {
    flex: 0 0 16%;
    max-width: 16%;
  }
  
  .content-column {
    flex: 0 0 84%;
    max-width: 84%;
  }
}
