/* =====================================
   Exec-synopsis page styles (page 2)
   ===================================== */

/* Page container: ensures it starts below the fixed header and menu */
.page-2 {
  margin-top: 165px; /* height of fixed header + menu */
  padding: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background-color: #fff;
}

/* Page title - centered and large */
.page-title-2 {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  color: teal;
  margin: 16px 0 22px 0;
}


/* Headings for each section */
.title-2 {
  color: teal; /* medium green */
  font-size: 1.35em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}

/* =====================================
   Split container (text + image)
   ===================================== */
.container-split-2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;   /* align both columns at the top */
  gap: 20px;
  padding: 10px 5px;
  box-sizing: border-box;
}

.left-2 {
  width: 65%;
  padding: 5px;
  box-sizing: border-box;
}

.right-2 {
  width: 35%;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Right part (image container) */
.right-2 {
  display: flex;
  justify-content: center;   /* center the image horizontally */
  align-items: center;       /* center the image vertically */
}

/* Text alignment and spacing in left column */
.left-2 ul {
  margin-left: 20px;
  padding-left: 0;
  line-height: 1.5em;
}

.outer-2 {
  list-style-type: disc;
}

.inner-dash-2 {
  list-style-type: "- ";
  margin-left: 25px;
}

.inner-asterisk-2 {
  list-style-type: "* ";
  margin-left: 25px;
}

/* Image behavior */
.right-2 img {
  width: auto;               /* image keeps its natural width */
  max-width: 100%;           /* never exceeds its column */
  max-height: 400px;         /* prevents image from being too tall */
  margin-top: 20px;          /* space above image */
  margin-bottom: 20px;       /* space below image */
  object-fit: contain;       /* maintain proportions */
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.right-2 img {
  transform: scale(1.2);      /* makes the image 20% larger */
  transform-origin: center;   /* keeps it centered as it scales */
}

/* =====================================
   Remaining containers (2–8)
   ===================================== */
.container-2 {
  padding: 10px 5px;
  box-sizing: border-box;
}

.container-2 ul {
  margin-left: 20px;
  padding-left: 0;
  line-height: 1.5em;
}

/* Dividing lines between containers */
.divider-2 {
  border: none;
  border-top: 1px solid #d3d3d3;
  margin-top: 0px;   /* Space above the line */
  margin-bottom: 6px; /* Space below the line */
}

/* =====================================
   Responsive layout
   ===================================== */
@media (max-width: 800px) {
  .container-split-2 {
    flex-direction: column;
    align-items: flex-start; /* stack vertically on small screens */
  }

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

  .right-2 img {
    max-width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;  /* centers image horizontally if not full width */
    align-items: center;      /* keeps it vertically centered */
  }
}
