/* Container Scope */
.ProjectsDetails .info_card_box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.ProjectsDetails .card_header_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 24px;
}

.ProjectsDetails .header_left_group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ProjectsDetails .info_circle_icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1e293b;
}

.ProjectsDetails .header_heading_text {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Projects Stack */
.ProjectsDetails .projects_list_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ProjectsDetails .project_item_card {
  border-left: 3px solid #0284c7; /* Cyan/Blue left border */
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}

.ProjectsDetails .project_title_text {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.ProjectsDetails .project_date_text {
  font-size: 13.5px;
  color: #94a3b8;
  font-weight: 400;
  margin-bottom: 8px;
}

.ProjectsDetails .project_description_text {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.ProjectsDetails .view_project_link {
  font-size: 13.5px;
  font-weight: 600;
  color: #0284c7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.ProjectsDetails .view_project_link:hover {
  color: #0369a1;
  text-decoration: underline;
}