#project_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns */
  gap: 20px; /* Adjust space between tiles */
  padding: 20px;
  justify-content: center;
}

.project_container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.3s ease;
}

.project_container:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.title_link_container {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px; /* Use gap to evenly space elements */
  flex-wrap: nowrap; /* Prevent line wrapping */
  white-space: nowrap; /* Ensure the content stays on one line */
}

.project_title {
  color: #333;
}

.dash_separator {
  padding: 0; /* Add space around the dash */
}

.pdf_link {
  color: #005bb5;
  text-decoration: none;
  font-weight: normal;
}

.pdf_link:hover {
  text-decoration: underline;
}

.project_description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.tag_container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: var(--accent_color, #0073e6);
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 50px;
}

/* Make the grid responsive */
@media (max-width: 800px) {
  #project_grid {
    grid-template-columns: 1fr; /* 1 project per row on smaller screens */
  }
}

/*# sourceMappingURL=projectGridStylesheet.css.map */
