/* Base Page Styling */
body {
  font-family: Arial, sans-serif;
  margin: 40px;
  color: #222;
  line-height: 1.5;
}

/* ===============================
   PAGE 1 — PHOTO LAYOUT
================================*/
.page-header {
  position: relative;
  margin-bottom: 20px;
  min-height: 160px;
}

.page-header h1 {
  color: #5b2d90;
  margin-bottom: 15px;
}

.director-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  text-align: center;
}

.director-photo {
  width: 100%;
  border-radius: 4px;
}

.director-caption {
  font-size: 0.75rem;
  color: #444;
  margin-top: 6px;
  text-align: center;
}

.intro-text {
  max-width: 650px;
  margin-bottom: 30px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ===============================
   PAGE 2 — TEXT LAYOUT (FINAL)
================================*/
.text-layout {
  width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}

.text-layout h1 {
  color: #5b2d90;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 18px;
}

.subtext {
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 50px;
}

/* Pull quote floats into left margin */
.pull-quote {
  float: left;
  width: 220px;
  margin-left: -260px;
  margin-top: 40px;
  font-style: italic;
  font-weight: bold;
  color: #5b2d90;
  font-size: 17px;
  line-height: 1.4;
}

/* Two columns of body text */
.two-columns {
  column-count: 2;
  column-gap: 55px;
  width: 650px;
  font-size: 16px;
  line-height: 1.65;
}
