.program_latest {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.latest_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.latest_title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.more_link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.more_link:hover {
    color: var(--primary-color);
}

.latest_list {
    display: flex;
	justify-content:space-between;
}

.latest_list .gallery_li{
	border:1px solid #e8e8e8;
	border-radius:15px;
	overflow:hidden;
}
.program_item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program_thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.program_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.program_item:hover .program_thumbnail img {
    transform: scale(1.05);
}

.program_content {
    padding: 20px;
}

.program_status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.program_status.모집중 {
    background: #e3f2fd;
    color: #1976d2;
}

.program_status.모집완료 {
    background: #f5f5f5;
    color: #757575;
}

.program_status.교육중 {
    background: #e8f5e9;
    color: #2e7d32;
}

.program_status.교육완료 {
    background: #fafafa;
    color: #616161;
}

.program_title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
}

.program_title a {
    color: #333;
    text-decoration: none;
}

.program_title a:hover {
    color: var(--primary-color);
}

.program_info {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
}

.info_row {
    display: flex;
    margin-bottom: 10px;
}

.info_row:last-child {
    margin-bottom: 0;
}

.info_item {
    flex: 1;
    display: flex;
    align-items: center;
}

.info_item .label {
    width: 70px;
    color: #666;
    font-size: 13px;
}

.info_item .value {
    color: #333;
    font-size: 13px;
}

.program_link {
    text-align: center;
}

.btn_detail {
    display: inline-block;
    padding: 8px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.btn_detail:hover {
    background: #003366;
}

.empty_list {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
    color: #666;
    font-size: 15px;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .latest_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .program_latest {
        padding: 20px 0;
    }

    .latest_header {
        margin-bottom: 20px;
    }

    .latest_title {
        font-size: 20px;
    }

    .latest_list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .program_thumbnail {
        height: 180px;
    }

    .program_content {
        padding: 15px;
    }

    .program_title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .program_info {
        padding: 12px;
        margin-bottom: 15px;
    }

    .info_item .label {
        width: 60px;
        font-size: 12px;
    }

    .info_item .value {
        font-size: 12px;
    }

    .btn_detail {
        padding: 6px 20px;
        font-size: 13px;
    }
} 