.albumList {
  margin: 0 -20px;
}
.albumList .albumItem {
  cursor: pointer;
  padding: 0 20px;
}
.albumList .albumItem img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.textBox h2 {
  font-size: 20px;
  color: #0f0f0f;
}
.textBox p {
  font-size: 16px;
  color: #555;
}
@media (max-width: 1024px) {
  .albumList {
    margin: 0 -15px;
  }
  .albumList .albumItem {
    padding: 0 15px;
  }
  .textBox h2 {
  /*font-size: 24px;*/
}
.textBox p {
  /*font-size: 15px;*/
  }
}
@media (max-width: 480px) {
  .albumList {
    margin: 0 -8px;
  }
  .albumList .albumItem {
    padding: 0 8px;
  }
    .textBox h2 {
  /*font-size: 21px;*/
}
.textBox p {
  /*font-size: 14px;*/
  }
}


.textEditor .contentBuilder .shelfWrap .shelfList.threeColumns.circle .Img img {
  border-radius: 0px;
}

/*
#photo-gallery{
  column-count: 4;
  column-gap: 10px;
  width:100%; 
  margin:0 auto;
}
#photo-gallery img{
  width: 100%;
  height: auto;
}
*/


#photo-gallery{
  display: flex;
  flex-wrap:wrap;
  padding: 0;
  margin: 0;
  /*height:30px;overflow:hidden;*/
}
#photo-gallery img{
  width: 100%;
}
#photo-gallery .aa{
  width: 25%;
  margin: 0;
  line-height: 30px;
  font-size: 14px;
  text-align:center;
}
#photo-gallery .bb{
  width: 100%;
  margin: 0;
  line-height: 30px;
  font-size: 14px;
  text-align:center;
}
#photo-gallery .cc{
  width: 25%;
  margin: 0;
  line-height: 30px;
  font-size: 14px;
  text-align:center;
}
#photo-gallery .dd{
  width: 25%;
  margin: 0;
  line-height: 30px;
  font-size: 14px;
  text-align:center;
}
#photo-gallery .ee{
  width: 50%;
  margin: 0;
  line-height: 30px;
  font-size: 14px;
  text-align:center;
}
#photo-gallery .ff{
  width: 100%;
  margin: 0;
  line-height: 30px;
  font-size: 14px;
  text-align:center;
}

@media (max-width: 960px) {
  #photo-gallery .aa{
  width: 50%;
  }
  #photo-gallery .bb{
  width: 100%;
  }
  #photo-gallery .cc{
  width: 50%;
  }
  #photo-gallery .dd{
  width: 50%;
  }
  #photo-gallery .ee{
  width: 50%;
  }
  #photo-gallery .ff{
  width: 100%;
  }
}

.textEditor .h3Title {
  font-size: 26px;
  line-height: 1.5;
  margin: initial;
  font-weight: 500;
}


/* 外層容器：桌機與平板都維持兩欄 */
.areaWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

/* 各區塊樣式 */
.areaBox {
  /*background-color: #f8f6e5;*/
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.1);
  line-height: 1.8;
  word-break: break-word;
  /*border: solid 1px #ccc;*/
}


/* 標題 */
.areaBox h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.areaBox h3::before {
  content: "📍";
  margin-right: 6px;
  font-size: 18px;
}

/* 內容文字 */
.areaBox p {
  color: #333;
  font-size: 15px;
  margin: 2px 0;
}

/* 手機版：改為單欄，調整間距與字體大小 */
@media (max-width: 600px) {
  .areaWrap {
    grid-template-columns: 1fr;
  }
  .areaBox {
    padding: 18px;
  }
  .areaBox h3 {
    font-size: 16px;
  }
  .areaBox p {
    font-size: 14px;
    line-height: 1.7;
  }
}