/* 最新消息頁面樣式 */
.news-section {
    padding: 20px 0;
}

.news-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-item {
    display: flex;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.news-date {
    flex: 0 0 120px;
    text-align: center;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-right: 30px;
}

.news-date-day {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.news-date-month {
    font-size: 18px;
    color: #666;
    margin: 5px 0;
}

.news-date-year {
    font-size: 16px;
    color: #999;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.news-info {
    color: #666;
    line-height: 1.6;
}

.news-info p {
    margin-bottom: 15px;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 15px;
        width: 100px;
    }
}