@charset "UTF-8";

.course_card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 19.504px;
  padding: 20px 18px;
  margin-bottom: 20px;
  background-color: white;
  min-height: 120px; /* 최소 높이 설정 */
}

.course_card:hover {
  border: 1px solid #2689BE;
  box-shadow: 0 4px 12px rgba(0, 114, 198, 0.2);
}

.course_left {
  flex: 1;
}

.badge_row {
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #999;
  color: #666;
  margin-right: 4px;
}

.type_badge {
  color: #002F6C;
  border-color: #002F6C;
}

.type_expensive {
  border: 1px solid #F58220;
  color: #F58220;
}

.text_block .org_name {
  font-size: 14px;
  color: #2689be;
  font-weight: 600;
  margin-bottom: 4px;
}

.text_block .subject_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.text_block .meta_info {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.course_right {
  width: 150px;
  text-align: center;
  padding-left: 16px;
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.course_right::before {
  content: '';
  position: absolute;
  left: 0;
  top: -20px; /* 부모의 padding 값만큼 위로 */
  bottom: -20px; /* 부모의 padding 값만큼 아래로 */
  width: 1px;
  background-color: #eee;
}


.price_value {
  font-weight: 500;
  font-size: 16px;
  margin-top: 2px;
  margin-bottom: 10px;
  margin-right: 14px;
  text-align: right;
}

.btn_primary,
.btn_secondary {
  max-width: 125px;
  display: block;
  width: 100%;
  padding: 6px 0;
  border-radius: 24px;
  font-size: 13px;
  margin-bottom: 6px;
  background: none;
}

.btn_primary {
  border: 1px solid #2689be;
  color: #2689be;
  cursor: pointer;
}

.btn_height_plus_for_edu {
  height: 38px;
}

.btn_secondary {
  border: 1px solid #ccc;
  color: #666;
  cursor: auto;
}

.exam_loc_item span.exam_area_common_color {
  border: 1px solid #666666;
  color: #666666;
}

/* 기본 상태 라벨 (모집중) */
.status_label {
  width: 125px;
  background-color: #FFCE54;
  padding: 6px 0;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 6px;
  color: #ffffff;
}

/* 모집중 상태 */
.status_label.status_recruiting {
  background-color: #4CAF50; /* 녹색 */
}

/* 모집 예정 상태 */
.status_label.status_upcoming {
  background-color: #2196F3; /* 파란색 */
}

/* 모집마감 상태 */
.status_label.status_closed {
  background-color: #EDEDED; /* 회색 */
  color: #9B9B9B;
}

/* 인증기관/협력기관 라벨 */
.certification_label {
  font-size: 15px;
  color: #666;
  text-align: center;
  font-weight: 500;
  margin-top: 5px;
}
/* 연계교육 리스트 페이지 CSS */

.meta_info_table {
  margin-top: 12px;
}

.meta_row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 14px;
}

.meta_label {
  color: #333;
  font-weight: 500;
  min-width: 60px;
  margin-right: 8px;
}

.meta_value {
  color: #666;
  margin-right: 20px;
  flex: 1;
}