/* ========================================= */
/* Event Page Styles (單一活動介紹頁面)
/* ========================================= */

.event_section {
    margin-bottom: 50px;
}

/* 資訊卡片區塊 (時間、地點) */
.event_info {
    background-color: #eeeeee; /* 淺灰底色 */
    border-left: 5px solid var(--dark_color, #2c3e50); /* 左側用主色作重點提示 */
    padding: 24px 30px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.info_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info_list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
}

.info_list li:last-child {
    margin-bottom: 0;
}

/* 調整 Material Icons 的對齊與顏色 */
.info_list li i.material-icons {
    color: var(--dark_color, #2c3e50);
    margin-right: 12px;
    font-size: 24px;
}

.info_list li strong {
    margin-right: 8px;
    color: #222222;
    font-weight: 700;
}

/* 下方網編內容區塊樣式微調 */
.event-description h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark_color, #2c3e50);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.event-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
    /* text-align: justify; */
}

/* --- 手機版 RWD 微調 --- */
@media (max-width: 768px) {
    .event_info {
        padding: 20px;
    }
    
    .info_list li {
        align-items: flex-start; /* 避免手機螢幕太窄時，文字換行導致 icon 沒有對齊頂部 */
    }
    
    .info_list li i.material-icons {
        margin-top: 2px; /* 微調對齊高度 */
    }
}