.post {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background-color: #f0f8ff; /* 淺藍色紙張背景，清新公告感 */
    border: 3px solid #4169e1; /* 中藍邊框，像現代公告欄 */
    border-radius: 15px; /* 圓角，溫和專業 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* 輕陰影，增加立體但不誇張 */
    font-family: 'Arial', sans-serif; /* 簡單易讀字體 */
}

.post h3 {
    text-align: center;
    color: #000080; /* 深藍標題，穩重 */
    font-size: 2em;
    margin-bottom: 20px;
    text-decoration: underline; /* 底線，像手寫標題 */
    font-weight: bold;
}

.post h4 {
    color: #4169e1; /* 中藍子標題 */
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 10px;
    border-left: 5px solid #4169e1; /* 左側藍線，分隔線 */
    padding-left: 10px;
}

.post p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.post ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.post li {
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
}

.post li::before {
    content: "📌 "; /* 圖釘 emoji，公告風格 */
    font-size: 1.2em;
    margin-right: 5px;
}

.post em {
    color: #666;
    font-style: italic;
    text-align: right;
    display: block;
    margin-top: 20px;
    border-top: 1px dashed #ccc; /* 虛線分隔，簽名感 */
    padding-top: 10px;
}