/* ==============================
   BASE WRAPPER & LAYOUT
   ============================== */

.project-wrapper {
  /* width: 100%; */
  flex-grow: 1;
  display: flex;
  justify-content: center;
  margin-top: 6rem;
  box-sizing: border-box;
  /* padding: 0 4rem; */
  padding: 0 1rem;
  height: 92vh;
  overflow-y: auto;
}

.project-header {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}
.project-detail-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* ==============================
   DOCUMENT STYLING (like Google Docs)
   ============================== */
.project-content {
  background: #fff;
  width: 100%;
  /* max-width: 800px; */
  max-width: 950px;
  border-radius: 8px;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;

  margin-bottom: 4rem; /* works normally */
  padding-bottom: 2rem; /* prevents collapse */
}

/* ==============================
   HEADINGS
   ============================== */
.project-main-title {
  font-family: "Onest", sans-serif;
  font-size: 3rem;
  font-weight: 650;
  color: #000000;
  margin: 1rem 0rem;
  /* line-height: 1.2; */
}

.project-content h1,
.project-content h2,
.project-content h3,
.project-content h4 {
  font-weight: 600;
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #202124;
}

.project-content h3 {
  /* font-size: 2rem; */
  font-size: 1.8rem;
  color: #333;
}

.project-content h2 {
  font-size: 2.3rem;
}

.content-paragraph {
  font-size: 1.15rem;
  font-weight: 400;
}

.content-bold {
  /* font-size: 1.3rem; */
  font-size: 1.15rem;
  /* margin: -.5rem 0rem; */
  /* font-size: 1.5rem; */
}

.project-content ul,
.project-content ol {
  padding-left: 2rem;
  margin: 0 0 1rem 0;
}
.project-content li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 400;
}

.bullet-list {
  margin-top: 0;
}

/* ==============================
   TABLES (Notion-like)
   ============================== */
.project-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
}
.project-content th,
.project-content td {
  border: 1px solid #e1e1e1;
  padding: 0.6rem 0.8rem;
  text-align: left;
}
.project-content th {
  background: #f9f9f9;
  font-weight: 600;
}

/* ==============================
   CODE BLOCKS
   ============================== */
.project-content pre {
  background: #f6f6f6;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 14px;
  font-family: "Consolas", monospace;
}
.project-content code {
  background: #f2f2f2;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 14px;
}

/* ==============================
   QUOTES
   ============================== */
.project-content blockquote {
  border-left: 4px solid #d0d0d0;
  padding-left: 1rem;
  color: #555;
  margin: 1.2rem 0;
  font-style: italic;
}

/* ==============================
   LINKS
   ============================== */
.project-content a {
  color: #1967d2;
  text-decoration: none;
}
.project-content a:hover {
  text-decoration: underline;
}


/* Images */
.project-content-image{
  width: 100%;
}


.white-space{
  width: 2rem;
  height: 5rem;
}