body {
    line-height: 1.6;
}

#aside-content .card-info .author-info-description {
    line-height: 1.3;
    margin-top: 0;
}


#post>#post-info .post-title {
    line-height: 1.1;
    padding-bottom: 16px;
    -webkit-line-clamp: none;
}

/* 共用基礎樣式 */
.video-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

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

/* --- 1. 一般影片 (16:9) --- */
.video-16-9 {
  padding-bottom: 56.25%; /* 9/16 */
}

/* --- 2. 直向 Shorts (9:16) --- */
.video-9-16 {
  /* 手機版：滿版寬度，比例 9:16 */
  width: 100%;
  padding-bottom: 177.77%; /* 16/9 */
}

/* 桌機版微調：當螢幕大於 768px 時 */
@media (min-width: 768px) {
  .video-9-16 {
    /* 限制 Shorts 在桌機上的大小，不要讓它無限延伸 */
    max-width: 350px;       /* 限制寬度 */
    padding-bottom: 622px;  /* 固定高度 (350 * 1.777) */
    height: 0;
  }
}
