.lecture-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
	margin-bottom: 40px;
}

.lec_header {
    text-align: center;
    margin-bottom: 0px;
	padding-top:40px;
}

.lec_subtitle {
    color: #4db8ff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.lec_title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4¿­ ¹èÄ¡ */
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 20px;
}

.instructor, .course-type {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.course-title-onepass {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 15px 0;
    height: 44px; /* µÎ ÁÙ °íÁ¤ (¸»ÁÙÀÓ Ã³¸® ¿øÇÒ ½Ã Ãß°¡ ¼³Á¤ °¡´É) */
    line-height: 1.4;
}

.price-info {
    font-size: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #bbb;
    margin-right: 5px;
}

.sale-price {
    color: #4db8ff;
    font-weight: bold;
}

.discount {
    color: #ff4d4d;
    font-weight: bold;
    font-size: 14px;
}





        /* ¸ÞÀÎ ·¹ÀÌ¾Æ¿ô ±¸¼º (ÁÂÃø ÄÜÅÙÃ÷ + ¿ìÃø »çÀÌµå¹Ù) */
        .main-container {
            max-width: 1300px;
            margin: 0px auto;
            /* padding: 0 20px; */
            display: flex;
            gap: 30px;
            align-items: flex-start; /* sticky ÀÛµ¿À» À§ÇØ ÇÊ¼ö */
        }

        /* ==========================================
           1. ÁÂÃø ¸ÞÀÎ ÄÜÅÙÃ÷ ¿µ¿ª (Left Content)
        ========================================== */
        .content-area {
            flex: 1;
            min-width: 0; /* flex ÀÚ½Ä ¿ä¼Ò Âî±×·¯Áü ¹æÁö */			
        }

        /* ´ëÇü ¸ÞÀÎ ¹è³Ê ÀÌ¹ÌÁö ¹Ú½º */
        .main-banner {
            width: 100%;
            height: 420px;
            background: linear-gradient(135deg, #1e2022 0%, #2b303b 100%);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            position: relative;
            border-radius: 4px;
            margin-bottom: 30px;
        }
        .main-banner h1 {
            font-size: 38px;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        .main-banner h1 span {
            color: #ffcc00; /* ÇÏÀÌ¶óÀÌÆ® ³ë¶õ»ö */
        }
        .sample-btn {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            border: 1px solid #666;
        }

        /* °úÁ¤ Å¸ÀÌÆ² & ÆòÁ¡ Çì´õ */
        .course-header {
            margin-bottom: 40px;
        }
        .badge-blue {
            background-color: #4baed4;
            color: #fff;
            padding: 3px 8px;
            font-size: 14px;
            border-radius: 2px;
            vertical-align: middle;
            margin-right: 8px;
        }
        .course-title-text {
            font-size: 24px;
            font-weight: bold;
            display: inline-block;
            vertical-align: middle;
        }
        .course-meta {
            margin-top: 10px;
            color: #666;
            font-size: 13px;
        }
        .course-meta span {
            margin-right: 15px;
        }

        /* ÅÇ ¸Þ´º */
        .tab-bar {
            display: flex;
            list-style: none;
            border: 1px solid #ddd;
            background-color: #fff;					
            margin-bottom: 50px;
        }
        .tab-btn {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            color: #666;
            font-size: 17px;
            font-weight: bold;
            cursor: pointer;
            border-right: 1px solid #ddd;
        }
        .tab-btn:last-child {
            border-right: none;
        }
        .tab-btn.active {
            color: #4baed4;
            border-bottom: 3px solid #4baed4;
            margin-bottom: -1px; /* Å×µÎ¸® °ãÄ§ Ã³¸® */
        }

		.tab-btn:hover {
            color: #4baed4;
            border-bottom: 3px solid #4baed4;
            margin-bottom: -1px; /* Å×µÎ¸® °ãÄ§ Ã³¸® */
        }

        /* º»¹® ¼½¼Ç °øÅë */
        .section-box {
            margin-bottom: 50px;
        }
        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #111;
        }
        
        /* °­ÀÇ ¼Ò°³ ½ºÅ¸ÀÏ */
        .intro-text {
            line-height: 1.8;
            color: #555;
            font-size: 14px;
        }
        .link-highlight {
            background-color: #fff200;
            font-weight: bold;
            padding: 2px 5px;
            display: inline-block;
            margin-top: 5px;
            color: #000;
            text-decoration: none;
        }

      
        /* ¼ö°­ÈÄ±â ¹Ú½º */
        .review-box {
            border: 1px solid #ddd;
            padding: 40px;
            text-align: center;
            color: #777;
            background-color: #fff;
        }

        /* ÇÏ´Ü ¸ñ·Ï ¹öÆ° */
        .bottom-actions {					
            text-align: center;
        }
      

        /* ==========================================
           2. ¿ìÃø ½ºÅ©·Ñ °íÁ¤ °áÁ¦ ¹Ú½º (Right Sidebar)
        ========================================== */
        .sidebar-area {
            width: 420px;
            /* ¸¶¿ì½º¸¦ ³»¸± ¶§ È­¸é »ó´Ü(top: 20px)¿¡ °É·Á µû¶ó´Ù´Ï°Ô ¸¸µì´Ï´Ù */
            position: -webkit-sticky;
            position: sticky;
            top: 20px; 
        }


		.sidebar-area-box {
            background: #fff;
            border: 1px solid #e1e1e1;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

		.sidebar-top-box {
			display: flex;
			margin: 0 auto;			
			justify-content: center;
			margin-top:10px;
		}




        /* ¼ö°­ Á¤º¸ ¿ä¾à */
        .summary-info {
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        .summary-row {
            margin-bottom: 8px;
            font-size: 18px;
            color: #666;
        }
        .summary-row strong {
            color: #333;
            font-weight: normal;
            margin-left: 5px;
        }

        /* ±Ý¾× Ç¥½Ã ¿µ¿ª */
        .price-box {
            background-color: #f7f9fc;
            padding: 15px;
            margin-bottom: 20px;
        }
        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 18px;
            color: #555;
        }
        .price-row .red-text {
            color: #d9534f;
            font-weight: bold;
        }
        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #e2e8f0;
            padding-top: 12px;
            margin-top: 12px;
            font-weight: bold;
        }
        .total-row .blue-text {
            color: #4baed4;
            font-size: 18px;
        }

        /* °áÁ¦ ¹öÆ° ¼Â */
        .btn-group {
            display: flex;
            gap: 8px;
        }
        .btn-sidebar {
            padding: 14px 0;
            font-size: 18px;
            font-weight: bold;
            border-radius: 3px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
        }
        .btn-submit {
            flex: 1.3;
            background-color: #4baed4;
            color: #fff;
            border: 1px solid #3ca0c7;
        }
        .btn-cart {
            flex: 1;
            background-color: #fff;
            color: #4baed4;
            border: 1px solid #4baed4;
        }

		.btn-submit:hover {
		    color: #fff;              
		    background-color: #29C8E9;
		}
		.btn-cart:hover {
		    color: #29C8E9;              
			border: 1px solid #29C8E9;
		}

		.btn-list-view {
			padding: 12px 40px;
            background-color: #fff;
            color: #5E5E5E;
            border: 1px solid #2C2C2C;
			cursor: pointer;
            font-size: 18px;
			font-weight: 700;
        }
		.btn-list-view:hover {
		    color: #fff;              
		    background-color: #444444;
			border: 1px solid #444444;
		}






/* °­ÀÇ ´ëºÐ·ù ÀüÃ¼ °¨½Î´Â ¹Ú½º */
        .lec-curri-wrapper {
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }

        /* 1. ´ëºÐ·ù Å¸ÀÌÆ² ¹Ù (±âÃÊ°ú¸ñ, ÀÀ¿ë½Ç±â µî) */
        .lec-curri-header {
            background-color: #f7f9fc;
            padding: 18px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border-bottom: 1px solid #eef2f6;
            transition: background-color 0.2s;
        }
        .lec-curri-wrapper .lec-curri-item:last-child .lec-curri-header {
            border-bottom: none; /* ¸¶Áö¸· Ç×¸ñÀÇ Å×µÎ¸® Á¦°Å */
        }
        /* È°¼ºÈ­(¿­·ÈÀ» ¶§)µÇ¾úÀ» ¶§ ¸¶Áö¸· Å×µÎ¸® º¹±¸ */
        .lec-curri-item.active .lec-curri-header {
            border-bottom: 1px solid #ddd;
        }

        .lec-curri-header:hover {
            background-color: #f1f5f9;
        }

				/* 2. ¼ÒºÐ·ù Â÷½Ã ¸ñ·Ï ¿µ¿ª (±âº»ÀûÀ¸·Î ¼û±è Ã³¸®) */
        .lec-curri-content {
            display: none; 
            background-color: #fff;
            padding: 0 25px;
        }

				/* °¢ Â÷½Ã ÇÑ ÁÙ ½ºÅ¸ÀÏ */
        .lec-curri-sub-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px;
        }
        .lec-curri-sub-item:last-child {
            border-bottom: none;
        }

				/* ¾ÆÀÌÄÜ È¸Àü È¿°ú ±âº»°ª */
        .icon-arrow {
            font-style: normal;
            display: inline-block;
            transition: transform 0.2s ease;
        }
        /* È°¼ºÈ­µÇ¸é È­»ìÇ¥ µÚÁý±â */
        .lec-curri-item.active .icon-arrow {
            transform: rotate(180deg);
        }

				.lec-curri-sub-name {
            color: #333;
        }
        .lec-curri-sub-name .step {
            color: #888;
            margin-right: 10px;
        }



/* Ä«Æ® */
    .cart-wrapper {flex: 1;  max-width: 1300px; margin: 40px auto; font-family: 'Pretendard', sans-serif; }
    
    /* 1. STEP ¿µ¿ª (¼öÆò ¹èÄ¡) */
    .step-list { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; }
    .step-item { color: #ccc; font-weight: bold; text-align: center; }
    .step-item.active { color: #333; }
    .step-item span { display: block; font-size: 0.9em; }

    /* 2. Å×ÀÌºí ½ºÅ¸ÀÏ */
    .cart-table { width: 100%; border-top: 2px solid #333; border-collapse: collapse; margin-bottom: 20px; }
    .cart-table th { background: #f9f9f9; padding: 15px; border-bottom: 1px solid #ddd; }
    .cart-table td { padding: 20px; border-bottom: 1px solid #eee; text-align: center; }
    
    /* 3. °¡°Ý ¿ä¾à ¹Ú½º */
    .summary-box { background: #fdfdfd; border: 1px solid #ddd; padding: 25px; display: flex; justify-content: space-around; align-items: center; border-radius: 8px; }
    .total-price { color: #e74c3c; font-size: 1.5em; font-weight: bold; }

    /* 4. ÇÏ´Ü ¹öÆ° ¿µ¿ª */
    .cart-wrapper .btn-group { display: flex; justify-content: space-between; margin-top: 30px; }
    .cart-wrapper .btn { padding: 12px 25px; border-radius: 5px; cursor: pointer; border: 1px solid #ccc; background: #fff; font-weight: 600; }
	.cart-wrapper .btnsmall { padding: 5px 10px; border-radius: 5px; cursor: pointer; border: 1px solid #ccc; background: #fff; font-size: 0.8em; font-weight: 600; }

	.onepass-btn { padding: 12px 25px; border-radius: 5px; cursor: pointer; border: 1px solid #ccc; background: #fff; font-weight: 600; }
	.onepass-btnsmall { padding: 5px 10px; border-radius: 5px; cursor: pointer; border: 1px solid #ccc; background: #fff; font-size: 0.8em; font-weight: 600; }
	

    .onepass-btn-blue { background: #4baed4; color: #fff;  border: 1px solid #4baed4; }
	.onepass-btn-blue:hover { color: #fff; background-color: #29C8E9;}

	.onepass-btn-red { background: #FF5555; color: #fff;  border: 1px solid #FF5555; }
	.onepass-btn-red:hover { color: #fff; background-color: #DDDDDD;}

	.onepass-btn-gray { background: #BEBEBE; color: #fff;  border: 1px solid #DDDDDD; }
	.onepass-btn-gray:hover { color: #fff; background-color: #979797;}

	.onepass-btn-darkgray { background: #979797; color: #fff;  border: 1px solid #8B8B8B; }
	.onepass-btn-darkgray:hover { color: #fff; background-color: #828282;}

	
	.onepass-btn-fontblue { background: #FFF ; color: #4baed4; border: 1px solid #4baed4; }
	.onepass-btn-fontblue:hover { color: #29C8E9; background-color: #FFF; border: 1px solid #29C8E9;}

	.onepass-btn-fontblack { background: #FFF ; color: #464646; border: 1px solid #464646; }
	.onepass-btn-fontblack:hover { color: #464646; background-color: #FFF; border: 1px solid #464646;}

  /*.cart-wrapper .btn-action { font-size: 0.9em; padding: 5px 10px; cursor: pointer; }*/





/* ÁÖ¹®ÆäÀÌÁö */

    .checkout-wrapper { font-family: 'Pretendard', sans-serif; color: #333; padding-bottom: 50px; }
	.checkout-wrapper {flex: 1;  max-width: 1300px; margin: 40px auto; font-family: 'Pretendard', sans-serif; }
    
    /* Å¸ÀÌÆ² ¹× ½ºÅÜ */
    .page-title { text-align: center; font-size: 2.2em; margin-bottom: 20px; }
    .step-bar { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 50px; }
    .step { display: flex; align-items: center; gap: 10px; color: #bbb; font-weight: bold; font-size: 0.9em; }
    .step.active { color: #3498db; }
    .step-circle { width: 45px; height: 45px; border-radius: 50%; border: 2px solid #eee; display: flex; align-items: center; justify-content: center; background: #f9f9f9; }
    .step.active .step-circle { border-color: #3498db; background: #fff; box-shadow: 0 4px 10px rgba(52, 152, 219, 0.2); }
    .step-arrow { color: #eee; font-size: 1.2em; }


    /* 2. ¿ÞÂÊ ¼½¼Ç (°áÁ¦ »ó¼¼) */
    .checkout-content { flex: 1; min-width: 0; }
    .section-box { border: 1px solid #eee; border-radius: 10px; padding: 30px; background: #fff; margin-bottom: 30px; }
    .section-title { font-size: 1.2em; font-weight: bold; margin-bottom: 20px; border-bottom: 2px solid #333; padding-bottom: 10px; }

    /* °úÁ¤Á¤º¸ Å×ÀÌºí */
    .product-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
    .product-table th { padding: 10px; font-size: 0.9em; color: #666; border-bottom: 1px solid #eee; }
    .product-table td { padding: 20px 10px; border-bottom: 1px solid #f9f9f9; text-align: center; }
    .product-info { display: flex; align-items: center; gap: 15px; text-align: left; }
    .product-info img { width: 100px; height: 60px; object-fit: cover; border-radius: 4px; border: 1px solid #eee; }

    /* Æ÷ÀÎÆ® & °áÁ¦¼ö´Ü */
    .input-group { display: flex; gap: 10px; margin-top: 10px; }
    .input-text { flex: 1; padding: 12px; border: 1px solid #ddd; border-radius: 5px; }
    .btn-small { padding: 0 20px; background: #3498db; color: #fff; border: none; border-radius: 5px; cursor: pointer; }
    
    .pay-methods { display: flex; gap: 10px; }
    .method-btn { flex: 1; padding: 15px; border: 1px solid #ddd; border-radius: 5px; background: #fff; cursor: pointer; font-weight: bold; color: #666; }
    .method-btn.active { border-color: #3498db; color: #3498db; background: #f0f7ff; }

    /* 3. ¿À¸¥ÂÊ ¼½¼Ç (Sticky °áÁ¦Á¤º¸) */
    .checkout-sidebar { width: 380px; position: sticky; top: 20px; }
    .sticky-box { border: 1px solid #ddd; border-radius: 10px; background: #fff; overflow: hidden; }
    .sticky-title { padding: 20px; font-weight: bold; border-bottom: 1px solid #eee; }
    .sticky-body { padding: 25px; background: #f8f9fa; }
    
    .price-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 1em; }
    .price-row.total { margin-top: 20px; padding-top: 20px; border-top: 1px solid #ddd; color: #3498db; font-size: 1.3em; font-weight: bold; }

    .action-group { display: flex; gap: 10px; padding: 20px; background: #fff; }
    .btn-cancel { flex: 1; padding: 15px; border: 1px solid #3498db; color: #3498db; background: #fff; border-radius: 5px; font-weight: bold; cursor: pointer; }
    .btn-pay { flex: 1.5; padding: 15px; background: #3498db; color: #fff; border: none; border-radius: 5px; font-weight: bold; font-size: 1.1em; cursor: pointer; }





/* ¹öÆ° ½ºÅ¸ÀÏ Ãß°¡ */
.webBtnSt {display:inline-block; height:28px; line-height:28px; font-size:12px; border:1px solid #ccc; border-radius:4px; color:#333; width:auto; padding:0 8px}
.webBtnSt01 {background:#fff}
.webBtnSt02 {background:#f2370a; color:#fff !important; border:0}
.webBtnSt03 {background:#0c74b1; color:#fff !important; border:0}
.webBtnSt04 {background:#555; color:#fff !important; border:0}
.webBtnSt05 {background:none; color:#000; border:0; border-bottom:1px dotted #000; padding-bottom:2px; border-radius: 0;}
.webBtnSt06 {background:#E0E0E0; color:#000 !important; border:0; font-weight:500;}
.webBtnSt07 {display: inline-block; padding:0 15px; background:#fff}
.webBtnStFree {display:inline-block;  line-height:18px; font-size:12px; border:1px solid #ccc; border-radius:4px; color:#333; width:auto; padding:4px 8px}


.webBtnSt2026_02 { padding: 5px 17px; background: #f2370a; color: #fff; border-radius: 4px; font-size: 15px; font-weight: 500; text-align: center; letter-spacing: 1.2px;}
.webBtnSt2026_03 { padding: 5px 17px; background: #0c74b1; color: #fff; border-radius: 4px; font-size: 15px; font-weight: 500; text-align: center; letter-spacing: 1.2px;}
.webBtnSt2026_04 { padding: 5px 17px; background: #555; color: #fff; border-radius: 4px; font-size: 15px; font-weight: 500; text-align: center; letter-spacing: 1.2px;}
.webBtnSt2026_05 { padding: 5px 17px; background: none; color: #000; border-radius: 4px; font-size: 15px; font-weight: 500; text-align: center; letter-spacing: 1.2px;}
.webBtnSt2026_06 { padding: 5px 17px; background: #E0E0E0; color: #000; border-radius: 4px; font-size: 15px; font-weight: 500; text-align: center; letter-spacing: 1.2px;}
.webBtnSt2026_07 { padding: 5px 17px; background: #3498DB; color: #fff; border-radius: 4px; font-size: 15px; font-weight: 500; text-align: center; letter-spacing: 1.2px;}




.container {
    max-width: 1300px;
    margin: 0 auto;
}
/*
.page-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #111;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}
*/
.course-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Ä«µå ±âº» ·¹ÀÌ¾Æ¿ô */
.course-card-onepass {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    align-items: center;
    gap: 20px;
}

.course-card-onepass:hover {
    /* transform: translateY(-4px) scale(1.02); */
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #3498db;
}

/* ½æ³×ÀÏ */
.thumbnail-area img {
    width: 180px;
    height: 110px;
    object-fit: cover;
    border: 1px solid #eee;
    display: block;
}

/* Á¤º¸ ¿µ¿ª */
.info-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    background-color: #00bcd4;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: bold;
}

.course-title {
    font-size: 15px;
    color: #222;
    font-weight: bold;
    line-height: 1.4;
}

.meta-info {
    display: flex;
    list-style: none;
    gap: 12px;
    font-size: 12px;
    color: #666;
}

.meta-info span {
    color: #333;
    font-weight: 500;
}

/* ¼¿·ºÆ® ¹Ú½º ½ºÅ¸ÀÏ¸µ */
.price-select {
    width: 100%;
    max-width: 450px;
    padding: 6px 10px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
    background-color: #fafafa;
}

/* ¹öÆ° ¿µ¿ª (¿ìÃø Á¤·Ä ¹× ¼öÁ÷ ¹èÄ¡) */
.action-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 110px;
}

/* °øÅë ¹öÆ° ½ºÅ¸ÀÏ & ·Ñ¿À¹ö Æ®·£Áö¼Ç */
.btn {
    width: 100%;
    padding: 8px 0;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* 1. »ùÇÃº¸±â (°ËÀº»ö Åæ) */
.btn-sample {
    background-color: #2b2e33;
    color: #fff;
}
.btn-sample:hover {
    background-color: #15171a;
}

/* 2. ¼ö°­½ÅÃ» (ÇÏ´Ã»ö/ÆÄ¶õ»ö Åæ) */
.btn-apply {
    background-color: #4bacd2;
    color: #fff;
}
.btn-apply:hover {
    background-color: #2b8cb2;
}

/* 3. Àå¹Ù±¸´Ï (Èò»ö ¹ÙÅÁ¿¡ Å×µÎ¸® ¼±) */
.btn-cart {
    background-color: #fff;
    color: #4bacd2;
    border-color: #4bacd2;
}
.btn-cart:hover {
    background-color: #4bacd2;
    color: #fff;
}


/* »ó´Ü ÇÊÅÍ ¹Ù ½ºÅ¸ÀÏ */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px solid #eee; /* ÇÊ¿ä ½Ã Ãß°¡ */
}

.count-info {
    font-size: 14px;
    color: #666;
}

.count-info .highlight {
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.search-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* µå·Ó´Ù¿î ½ºÅ¸ÀÏ */
.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    background-color: #fff;
    cursor: pointer;
    min-width: 80px;
}

.filter-select.size-small {
    min-width: 60px;
}

/* °Ë»öÃ¢ ½ºÅ¸ÀÏ */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 220px;
    padding: 8px 35px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.btn-search {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* ÆäÀÌÂ¡ ½ºÅ¸ÀÏ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.page-btn {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.page-btn:hover {
    border-color: #4bacd2;
    color: #4bacd2;
}




/* ¹ÝÀÀÇü ´ëÀÀ: ¸ð¹ÙÀÏ¿¡¼­ ¿ä¼Ò°¡ ¸¹À» °æ¿ì ÁÙ¹Ù²Þ */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .search-controls {
        width: 100%;
        flex-wrap: wrap;
    }
    .search-input-wrapper {
        width: 100%;
    }
    .search-input {
        width: 100%;
    }
}


/* ¹ÝÀÀÇü Ã³¸®: È­¸éÀÌ ÀÛ¾ÆÁö¸é ¼¼·Î·Î ¹èÄ¡ */
@media (max-width: 768px) {
    .course-card-onepass {
        flex-direction: column;
        align-items: flex-start;
    }
    .thumbnail-area img {
        width: 100%;
        height: auto;
    }
    .action-area {
        flex-direction: row;
        width: 100%;
    }
    .btn {
        flex: 1;
    }
}

/* ¹ÝÀÀÇü: È­¸éÀÌ ÀÛ¾ÆÁö¸é 2¿­·Î º¯°æ */
@media (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ¹ÝÀÀÇü: ¸ð¹ÙÀÏ¿¡¼­´Â 1¿­·Î º¯°æ */
@media (max-width: 600px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}