/* pnuma.css - Corrected for all screen sizes */

/* The main content container and image row */
.main-content {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  gap: 20px !important;
  margin: 20px 0 !important;
}

.profile-image {
  flex: 1 1 33.33% !important;
  max-width: calc(33.33% - 14px) !important;
  box-sizing: border-box !important;
}

.profile-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* All text within the bio-text container is now centered for all screen sizes. */
.bio-text p,
.bio-text blockquote {
  text-align: center !important;
  hyphens: none !important;
}

/* This is a separate rule to make sure the sub tag is also centered. */
.bio-text sub {
  text-align: center !important;
}

/* Media query for mobile devices to stack the images */
@media (max-width: 650px) {
  .main-content {
    flex-direction: column !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .profile-image {
    max-width: 100% !important;
    margin-bottom: 20px;
  }
}

/*
* The rest of the CSS for the page content is below.
*/

.bio-text {
  max-width: 800px;
  margin: 20px auto;
  /* padding: 0 20px; */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.bio-text blockquote {
  font-style: italic;
  border-left: 3px solid #ccc;
  padding-left: 20px;
  margin: 20px 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 20px auto;
  max-width: 960px;
}

.video-container .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
