@charset "UTF-8";

.nav-link-btn {
    height: 100%;
}

@media (max-width: 576px) {
    .nav-link-btn {
        font-size: 16px;
        line-height: 12px;
    }
}

/* 手機解析度下：顯示前 5 篇，其他隱藏 */
#btn_load_more_course {
    display: none; /* 隱藏「載入更多」按鈕 */
}

@media screen and (max-width: 768px) {
    #btn_load_more_course {
        display: block !important; /* 顯示「載入更多」按鈕 */
    }

    .course-list a:nth-child(n+6) {
        display: none !important; /* 隱藏從第6篇開始的內容 */
    }    
}