* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

ul {
  list-style-type: none;
}

button:focus,
input:focus,
select:focus {
  outline: none;
}

.pageWrap {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f5e5de;
  overflow-x: hidden;
}

h1 {
  color: #d9403e;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 40px;
  letter-spacing: 0.9px;
}

.avatar {
  width: 256px;
  height: 256px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 50%;
}
.avatar img {
  width: 256px;
  height: 256px;
}

.aboutMeBrief__header {
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 3.15px;
  color: #d9403e;
  border-left: 100px solid #d9403e;
  padding-left: 25px;
  margin-top: 40px;
}
.aboutMeBrief__content {
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 1.6px;
  padding-left: 9%;
  padding-right: 9%;
  padding-top: 20px;
}
.aboutMeItem {
  padding-left: 9%;
  padding-right: 9%;
  margin-top: 30px;
}
.aboutMeItem__header {
  position: relative;
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 3.15px;
  color: #d9403e;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #d9403e;
}
.aboutMeItem__header:after {
  content: "";
  display: block;
  background-color: #d9403e;
  width: 33px;
  height: 23px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.aboutMeItem__content {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 1.6px;
  font-weight: 300;
  margin-top: 20px;
}
.aboutMeItem__content ul {
  list-style: disc;
  margin-left: 22px;
}

.consult {
  display: block;
  background-color: #d9403e;
  color: #fff;
  text-decoration: none;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  letter-spacing: 2px;
}

.pageWrap {
	position: relative;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	background-color: #f5e5de;
	overflow-x: hidden;
}

/* ---- About Me: mobile-first 調整 ---- */

/* 整體內距與寬度 */
.pageWrap { padding: 24px 16px 56px; }
@media (min-width: 768px){
  .pageWrap { padding: 40px 24px 72px; }
}

/* 讓圖片在小螢幕不超出 */
.pageWrap img { max-width: 100%; height: auto; display: block; }

/* 頁面主標題（避免用到瀏覽器預設 serif 與大外距） */
h1, .aboutmeTitle {
  font-family: inherit;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  margin: 8px 0 20px;
  text-align: center;
  color: #d64343; /* 可依你主色調調整 */
}
@media (min-width: 768px){
  h1, .aboutmeTitle { font-size: 32px; }
}

/* 人像區塊：置中＋圓形照片 */
.psychologist { text-align: center; margin: 8px auto 20px; }
.psychologist__img {
  width: 260px; height: 260px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}
@media (min-width: 768px){
  .psychologist__img { width: 320px; height: 320px; }
}

/* 內文可讀性（行距與最大寬度） */
.psychologist__article,
.aboutme__intro,
.aboutme__content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
}
.psychologist__p + .psychologist__p { margin-top: 12px; }

/* 章節小標＋分隔線（若有） */
.sectionTitle { 
  font-weight: 700; 
  margin: 28px auto 10px; 
  max-width: 720px;
}
.sectionRule { 
  max-width: 720px; height: 1px; 
  background: #e6d3cc; 
  margin: 12px auto 24px; 
}

/* 桌機兩欄（可選） */
@media (min-width: 1024px){
  .aboutmeGrid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
  }
  .aboutmeGrid .left { text-align: center; }
  .aboutmeGrid .right { max-width: 640px; }
}
