.title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text1);
  margin-bottom: 20px;
}

.roadmap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: stretch;  /* Added to stretch items to equal height */
}

.roadmap-item {
  text-decoration: none;
  color: var(--text1);
  background-color: var(--card_background);
  border: 1px solid var(--card_border);
  padding: 10px 20px;
  width: 100%;
  max-width: 300px;
  min-height: 65px;     /* Ensures all cards are at least this height */
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadmap-item:hover {
  background-color: var(--background3);
  color: var(--heading1);
}

/* Media query for large screens */
@media (min-width: 768px) {
  .roadmap-item {
    width: calc(50% - 20px);   /* Two columns with space between */
  }
}
