/* 코스안내 페이지 전용 스타일 */
.course_page .course_sec {
    margin-bottom: 100px;
}

.course_page .course_label {
    background: #0062B0;
    color: #fff;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    margin-bottom: 25px;
    position: relative;
}

.course_page .course_img_wrap {
    text-align: center;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
}

.course_page .course_img_wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.course_page .course_notice {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 400;
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .course_page .course_label {
        font-size: 16px;
        padding-left: 40px;
    }

    .course_page .course_sec {
        margin-bottom: 60px;
    }
}