/* My Mobile Homepage Styles - v1.4 (With In-List Feature Box) */

#mobile-home-container {
    max-width: 100%;
    box-sizing: border-box;
}


/* =================================
   Featured Post Styles
   ================================= */
.featured-post-container {
    margin-bottom: 20px;
    position: relative;
    display: block;
}

/* <<< 新增區塊：為插入列表中的特色文章增加上下邊距 >>> */
.in-list-featured-post {
    margin-top: 25px;
    margin-bottom: 25px;
}

.featured-post-link {
    display: block;
    text-decoration: none;
}

.featured-post-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60vh;
    object-fit: cover;
}

.featured-post-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.featured-post-title {
    color: #ffffff;
    font-size: 18pt;
    line-height: 1.3;
    margin: 0;
}


/* =================================
   Post List Styles
   ================================= */
.post-list {
    padding: 0 15px;
}

.post-list .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
    text-decoration: none;
    color: #ffffff !important;
}

.post-list .post-item:last-child {
    border-bottom: none;
}

.post-list .post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.post-list .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.post-list .post-content {
    flex-grow: 1;
}

.post-list .post-title {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}