/* Title section with cube icon */
#title-section {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 10vw;
  padding-left: 5vw;
}

#blog-title {
  font-family: "Source Code Pro", monospace;
  font-size: 1.5rem;
  color: #333;
}

/* Blog grid layout */
#blog_grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 blog per row by default */
  gap: 20px; /* Space between blog tiles */
  padding: 20px 10vw;
  justify-content: center;
  padding-left: 10vw;
  padding-right: 10vw;
}

.blog_tile {
  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;
}

.blog_tile: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; /* Space between the title and link */
  flex-wrap: nowrap;
  white-space: nowrap;
}

.blog_title {
  color: #333;
}

.dash_separator {
  padding: 0; /* Keeps the dash clean without additional spacing */
}

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

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

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

.blog_date {
  font-size: 14px;
  color: #888;
}

.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;
}

/* Responsive grid adjustments */
@media (max-width: 800px) {
  #blog_grid {
    grid-template-columns: 1fr; /* Ensure 1 blog per row on smaller screens */
  }
}
@media (max-width: 500px) {
  .blog_tile {
    padding: 15px;
  }
  #blog_grid {
    padding: 10px;
  }
}

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