/* ===========================
   PAGE WRAPPER
=========================== */

.project-page {
  background-color: var(--bg-black);
  padding: 90px 10% 90px;
  color: var(--white);
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* ===========================
   TITLE + UNDERLINE
=========================== */

.project-title {
  font-size: 70px;
  font-weight: 700;
  color: var(--white);
  margin-left: 0;
  margin-bottom: 10px;
}

.project-title-underline {
  width: 925px;
  height: 5px;
  background-color: var(--highlight);
  margin-left: 0;
  margin-bottom: 50px;
}

/* ===========================
   TWO-COLUMN LAYOUT
=========================== */

.two-column-page {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-top: 20px;
}

.left-column,
.right-column {
  flex: 0 0 48%;
  max-width: 48%;
}

/* ===========================
   TEXT SECTION (hero style)
=========================== */

.text-section .hero-description {
  font-size: 22px;
  color: var(--text-gray);
  font-weight: 200;
  max-width: 600px;
  margin-bottom: 0px;
  text-indent: 40px;
}

.text-section .hero-description strong {
  color: var(--offwhite);
  font-weight: 400;
}

/* ===========================
   IMAGE SECTION
=========================== */

.image-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-section img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.report-button-group {
  display: flex;
  gap: 12px; /* adjust if you want them even closer */
}

/* ===========================
   REPORT VIEWER SECTION
=========================== */
.report-wrapper {
  width: 100%;
  background-color: var(--bg-secondary); /* your lighter blueish color */
  padding: 60px 10% 100px;
  margin-top: 100px;
}

.report-section {
  width: 100%;
  max-width: 1200px; /* aligns with resume viewer + your column widths */
  margin-top: 80px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--highlight-opaque);
  padding: 40px 50px;
  border-radius: 0px;
  box-shadow: 0 0 12px rgba(0,0,0,0.45);
}

.report-frame {
  width: 100%;
  height: 1400px; /* large, readable */
  border: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.45);
  border: 4px solid var(--highlight);
}

.report-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.report-title {
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.report-download-btn {
  font-size: 20px;
  padding: 14px 28px;
}

/* ===========================
   DOWNLOAD BUTTON
=========================== */

.report-download {
  margin-top: 40px;
  text-align: left; /* matches your page alignment */
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {

  .project-title {
    font-size: 36px;
  }

  .two-column-page {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    max-width: 100%;
  }
}
