.content-wrap {
  width: 1440px;
}

.single h1.entry-title {
  text-align: left;
}

p {
  font-size: 1.2em;
  line-height: 2vw;
}

li {
  line-height: 2vw;
}


/* 立京選單科技感優化 */
#primary-menu li a {
    position: relative;
    transition: color 0.3s ease;
}

/* 滑動底線效果 */
#primary-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #fcb900, #ff6900); /* 科技黃橘流光 */
    box-shadow: 0 0 8px rgba(255, 105, 0, 0.6);
    transition: width 0.3s ease-in-out;
}

#primary-menu li a:hover {
    color: #ff6900 !important; /* 滑過時文字變橘色 */
}

#primary-menu li a:hover::after {
    width: 100%;
}

/* 文章內超連結優化 */
.entry-content a {
    color: #007cba;
    text-decoration: none;
    border-bottom: 1px dashed #abb8c3; /* 平時保持低調的虛線 */
    transition: all 0.2s ease-in-out;
    padding: 0 2px;
}

.entry-content a:hover {
    color: #fff !important;
    background-color: #ff6900; /* 經典科技橘底色 */
    border-bottom: 1px solid #ff6900;
    border-radius: 3px;
    box-shadow: 0 4px 10px rgba(255, 105, 0, 0.3);
    text-decoration: none;
}

/* 立京開發者風格：Scoped H2 樣式 */
.entry-content h2 {
    position: relative;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(255, 105, 0, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 6px solid #ff6900; /* 立京橘主色 */
    border-bottom: 1px solid #eee;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 2.5em;
    margin-bottom: 1.2em;
    letter-spacing: 0.5px;
}

/* 增加一個裝飾性的小方塊，增加未來感 */
.entry-content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    width: 6px;
    height: 15px;
    background-color: #fcb900; /* 科技黃細節 */
}

/* 底部短線裝飾 */
.entry-content h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6900, #fcb900);
}


/* 1. 強化文章卡片背光感 */
article.blogposts-list {
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    margin-bottom: 40px !important;
}

/* 滑過時：極致背光感與橘色邊框 */
article.blogposts-list:hover {
    transform: translateY(-8px);
    border-color: #ff6900;
    /* 增加擴散半徑與顏色飽和度，讓背光更明顯 */
    box-shadow: 0 20px 40px rgba(255, 105, 0, 0.25), 
                0 0 15px rgba(255, 165, 0, 0.1); 
}

/* 2. 重塑「閱讀更多」按鈕 */
.blogpost-button {
    display: inline-block !important; /* 強制顯示 */
    background: #ff6900 !important; /* 立京橘主色 */
    color: #fff !important;
    padding: 10px 25px !important;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* 圓角膠囊設計 */
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 按鈕滑過效果：發光啟動 */
.blogpost-button:hover {
    background: #fcb900 !important; /* 滑過變科技黃 */
    box-shadow: 0 6px 15px rgba(255, 105, 0, 0.4) !important;
    transform: scale(1.05);
}

/* 3. 標題與簡介間距優化 */
.entry-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}