/* 首頁最新消息列表：hover 白色膠囊底 */
.section_news_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
}

.section_news_list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    width: 100%;
    max-width: 100%;
}

.section_news_list li {
    max-width: 100%;
}

.section_news_list a {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.section_news_list a {
    display: flex;
    align-items: start;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.3em 0.95em;
    border-radius: 999px;
    color: #000;
    font-family: "Noto Sans CJK TC", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.55;
    text-decoration: none;
    background-color: transparent;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: background-color 0.2s ease;
}

.section_news_list a::before {
    content: "·";
    margin-right: 0.4em;
    font-weight: 700;
}

.section_news_list a:hover {
    background-color: #fff;
}

/* 首頁藝遊未盡：圓點換行對齊 */
.section_play_list li {
    display: flex;
    align-items: flex-start;
    font-family: "Noto Sans CJK TC", sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.85;
    color: #000;
}

.section_play_list li::before {
    content: "·";
    flex-shrink: 0;
    margin-right: 0.4em;
    font-weight: 700;
}