.page-about-me .about-wrapper {
  font-family: "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin: 40px auto;
  max-width: 1100px;
  padding: 0 20px;
}

/* fixed-width central container */
.page-about-me .about-container {
  max-width: 960px;     /* adjust 960–1100px */
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.6;
}

/* push About page below header */
.page-about-me #about-page {
  padding-top: var(--header-offset, 80px);
}

/* Two-column layout */
.page-about-me .about-columns {
  display: flex;
  align-items: flex-start;
  gap: 16px;               /* keeps your required spacing */
}

/* LEFT = 40% */
.page-about-me .about-left {
  flex: 0 0 45%;
  max-width: 45%;
  min-width: 0;
}

/* RIGHT = 60% */
.page-about-me .about-right {
  flex: 0 0 55%;
  max-width: 55%;
  min-width: 0;
  text-align: center;
}

.page-about-me .about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.page-about-me .meta {
  font-size: 16px;
  color: #a00;
  margin: 10px 0 20px 0;
}

.page-about-me .yt-button {
  display: inline-block;
  background: #f9f9f9;
  border: 2px solid #aaa;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 22px;
  color: purple;
  text-decoration: none;
  margin: 15px 0 25px 0;
}

.page-about-me .yt-button span {
  display: block;
  font-size: 14px;
  color: #666;
}

/* Below section */
.page-about-me .about-full {
  margin-top: 40px;
}

.page-about-me .about-full h2 {
  color: #333;
  font-size: 26px;
  margin-top: 30px;
}

.page-about-me .about-full ul {
  list-style: square inside;
  margin: 10px 0 20px 0;
  padding-left: 15px;
}

.page-about-me .closing {
  margin-top: 30px;
  font-size: 18px;
  text-align: left;
}

/* 📱 Responsive: stack columns on small screens */
@media (max-width: 900px) {
  .page-about-me .about-columns {
    flex-direction: column;
  }
  .page-about-me .about-left,
  .page-about-me .about-right {
    min-width: 100%;
    text-align: left;
  }
  .page-about-me .about-right {
    margin-top: 20px;
  }
}
