/* Basic layout for the event detail page */
.concept__profile {
  max-width: 800px; /* Or your preferred max-width */
  margin: 2rem auto; /* Centering content and adding some margin */
  padding: 1rem;
  background-color: #fff; /* Assuming a white background for content area */
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

/* Concept description styling */
#concept-description {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f9f9f9; /* Light grey background for this section */
  border-radius: 4px;
}

#concept-description h2 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5em;
}

#concept-description p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.5rem;
}
