/*
Theme Name: Hello Elementor Child
Theme URI: https://c3032breast-centre.panel.companyregistryhk.com/
Template: hello-elementor
Author: Your Name
Description: Hello Elementor 子主題，用於顯示文章日期
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: hello-elementor-child
*/

/* 繼承父主題的所有樣式 */

/* 文章列表 - 左右並排樣式 */
.archive-template .post-horizontal {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;  /* ✅ 這行原本不完整，已修正 */
}

/* 左邊圖片區域 */
.archive-template .post-thumbnail-wrapper {
    flex-shrink: 0;
    width: 280px;
}

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

/* 右邊內容區域 */
.archive-template .post-content-wrapper {
    flex: 1;
}

/* 標題樣式 - 加大字體 */
.archive-template .entry-title {
    margin: 0 0 8px 0;
    font-size: 24px;
}

.archive-template .entry-title a {
    text-decoration: none;
    color: #333;
}

.archive-template .entry-title a:hover {
    color: #b07bb4;
}

/* 日期樣式 */
.archive-template .post-date {
    font-size: 14px;
    color: #b07bb4;
    margin-bottom: 10px;
}

/* 摘要樣式 */
.archive-template .post-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* 手機版（小螢幕）改成上下排列 */
@media (max-width: 768px) {
    .archive-template .post-horizontal {
        flex-direction: column;
    }
    
    .archive-template .post-thumbnail-wrapper {
        width: 100%;
    }
}