* {
  box-sizing: border-box;
}

.page-wrapper {
  border-left: 40px solid #10066a;
  border-right: 40px solid #10066a;
  min-height: 100vh;
  background: #f9f9f9;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-image: url('https://umontana.edu/_resources/img/missoula-town-narrow-crop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

footer {
  background: #07012e;
  color: #fff;
  padding: 20px;
  text-align: center;
}

#page-layout {
  display: flex;
  padding: 20px;
  gap: 20px;
  align-items: stretch;
}

.bio-photo {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* 📱 Mobile: un-float and center the image */
@media (max-width: 600px) {
  .bio-photo {
    float: none;
    display: block;
    margin: 20px auto;
    max-width: 100%;
    width: 100%;
  }
}


.bio-block::after {
  content: "";
  display: table;
  clear: both;
}

/* New vertical divider between columns */
.column-divider {
  width: 25px;
  background-color: #222;
  min-height: 100%;
}

/* Adjust widths now that there's a divider */
#events-column {
  width: 24%;
  min-width: 220px;
}

#interview-column {
  width: 72%;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #page-layout {
    flex-direction: column;
  }

  .column-divider {
    display: none;
  }

  #interview-column {
    order: 1;
    width: 100%;
  }

  #events-column {
    order: 2;
    width: 100%;
  }
}
