/* =========================================
   글로벌한국어문화과 준비 중 페이지 스타일
   ync_gkc_coming.css
   ========================================= */

/* =========================================
   전체 래퍼
   ========================================= */
.ync_coming_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  min-height: 420px;
}

/* =========================================
   아이콘 영역
   ========================================= */
.ync_coming_icon_wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.ync_coming_icon_ring {
  position: absolute;
  inset: -1rem;
  border-radius: 9999px;
  border: 2px dashed #bfdbfe;
  animation: ync_coming_spin 12s linear infinite;
}

@keyframes ync_coming_spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ync_coming_icon_bg {
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  background-image: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px #dbeafe,
    0 12px 32px -8px rgba(29, 78, 216, 0.35);
  animation: ync_coming_pulse 3s ease-in-out infinite;
}

@keyframes ync_coming_pulse {
  0%, 100% { box-shadow: 0 0 0 6px #dbeafe, 0 12px 32px -8px rgba(29, 78, 216, 0.35); }
  50%       { box-shadow: 0 0 0 10px #eff6ff, 0 16px 40px -8px rgba(29, 78, 216, 0.4); }
}

.ync_coming_icon_bg svg {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
}

/* =========================================
   뱃지
   ========================================= */
.ync_coming_badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: #dbeafe;
  color: #1e40af;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  border: 1px solid #bfdbfe;
}

.ync_coming_badge_dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 9999px;
  background-color: #3b82f6;
  animation: ync_coming_blink 1.4s ease-in-out infinite;
}

@keyframes ync_coming_blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* =========================================
   텍스트 영역
   ========================================= */
.ync_coming_title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .ync_coming_title {
    font-size: 2.25rem;
  }
}

.ync_coming_desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0 0 2.5rem 0;
  max-width: 36rem;
  word-break: keep-all;
}

/* =========================================
   구분선
   ========================================= */
.ync_coming_divider {
  width: 4rem;
  height: 0.25rem;
  background-image: linear-gradient(to right, #2563eb, #38bdf8);
  border-radius: 9999px;
  margin: 0 auto 2.5rem auto;
}



/* =========================================
   진행 바
   ========================================= */
.ync_coming_progress_wrap {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.ync_coming_progress_label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.ync_coming_progress_track {
  height: 0.5rem;
  background-color: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
}

.ync_coming_progress_bar {
  height: 100%;
  background-image: linear-gradient(to right, #1d4ed8, #38bdf8);
  border-radius: 9999px;
  animation: ync_coming_progress_grow 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  width: 0;
}

@keyframes ync_coming_progress_grow {
  from { width: 0; }
  to   { width: 65%; }
}

/* =========================================
   AI물류자동화과 학과 소개 페이지 스타일
   ync_fa_intro.css
   socialwork/introduce_tailwind.css 구조 기반
   ync_fa_ 접두어 적용 (중복 방지)
   색상: 영남이공대 브랜드 컬러 (파란색 / 하늘색)
   ========================================= */

::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* =========================================
   상단 배너 (Top Info)
   ========================================= */
.ync_fa_topinfo {
  border-radius: 1.5rem;
  overflow: hidden;
  background-image: linear-gradient(to bottom right, #eef2ff, #dbeafe);
  padding: 2rem;
  margin-bottom: 4rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .ync_fa_topinfo {
    padding: 3rem;
  }
}

.ync_fa_topinfo_img_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .ync_fa_topinfo_img_wrap {
    aspect-ratio: 1400 / 340;
  }
}

.ync_fa_topinfo_img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform 500ms ease;
}

.ync_fa_topinfo_img_wrap:hover .ync_fa_topinfo_img {
  transform: scale(1.05);
}

.ync_fa_topinfo_overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(30 64 175 / 0.08);
}

.ync_fa_topinfo_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ync_fa_topinfo_badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background-color: #dbeafe;
  color: #1e40af;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  width: max-content;
}

.ync_fa_topinfo_title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .ync_fa_topinfo_title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

/* 슬로건 텍스트 (배너 내부) */
.ync_fa_topinfo_slogan {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  line-height: 1.4;
  word-break: keep-all;
}

@media (min-width: 768px) {
  .ync_fa_topinfo_slogan {
    font-size: 1.5rem;
  }
}

.ync_fa_topinfo_slogan_eng {
  font-size: 0.9375rem;
  color: #4b5563;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  font-style: italic;
}

/* =========================================
   공통 섹션 헤더
   ========================================= */
.ync_fa_sec_wrap {
  margin-bottom: 5rem;
}

.ync_fa_sec_header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ync_fa_sec_title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.025em;
  display: inline-block;
  position: relative;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .ync_fa_sec_title {
    font-size: 1.875rem;
  }
}

.ync_fa_sec_title_underline {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 0.25rem;
  background-color: #3b82f6;
  border-radius: 9999px;
}

/* =========================================
   핵심 키워드 배너 (Info Banner)
   ========================================= */
.ync_fa_info_banner {
  background-image: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  margin-bottom: 5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.ync_fa_info_banner::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  background-color: rgb(255 255 255 / 0.06);
  border-radius: 9999px;
}

.ync_fa_info_banner::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  background-color: rgb(255 255 255 / 0.06);
  border-radius: 9999px;
}

.ync_fa_info_banner_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ync_fa_info_banner_inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ync_fa_info_banner_label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bae6fd;
  margin-bottom: 0.5rem;
}

.ync_fa_info_banner_title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.ync_fa_info_banner_desc {
  color: rgb(255 255 255 / 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
}

.ync_fa_info_banner_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  flex-shrink: 0;
}

.ync_fa_info_badge {
  background-color: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.3);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.ync_fa_info_badge_highlight {
  background-color: #38bdf8;
  border-color: #0ea5e9;
  color: #0c1a2e;
}

/* =========================================
   학과 강점 (Feature Grid)
   ========================================= */
.ync_fa_feature_wrap {
  margin-bottom: 5rem;
  background-color: #eff6ff;
  padding: 4rem 1.5rem;
  border-radius: 2.5rem;
}

@media (min-width: 768px) {
  .ync_fa_feature_wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.ync_fa_feature_header {
  text-align: center;
  margin-bottom: 3rem;
}

.ync_fa_feature_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ync_fa_feature_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ync_fa_feature_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ync_fa_feature_card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #dbeafe;
  display: flex;
  gap: 1.25rem;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms ease;
}

.ync_fa_feature_card:hover {
  border-color: #93c5fd;
  box-shadow: 0 6px 16px -4px rgba(37, 99, 235, 0.15);
}

.ync_fa_feature_num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.ync_fa_feature_num_1 {
  background-image: linear-gradient(to bottom right, #1d4ed8, #1e40af);
  box-shadow: 0 4px 6px -1px #bfdbfe;
}

.ync_fa_feature_num_2 {
  background-image: linear-gradient(to bottom right, #2563eb, #1d4ed8);
  box-shadow: 0 4px 6px -1px #bfdbfe;
}

.ync_fa_feature_num_3 {
  background-image: linear-gradient(to bottom right, #0ea5e9, #0284c7);
  box-shadow: 0 4px 6px -1px #bae6fd;
}

.ync_fa_feature_num_4 {
  background-image: linear-gradient(to bottom right, #3b82f6, #2563eb);
  box-shadow: 0 4px 6px -1px #bfdbfe;
}

.ync_fa_feature_content {}

.ync_fa_feature_title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  margin-top: 0;
  word-break: keep-all;
}

.ync_fa_feature_list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ync_fa_feature_item {
  color: #475569;
  font-size: 14px;
  line-height: 1.625;
  padding-left: 0.75rem;
  position: relative;
  word-break: keep-all;
}

.ync_fa_feature_item::before {
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
  color: #64748b;
}

/* =========================================
   주요 취업처 (Career Cards)
   ========================================= */
.ync_fa_career_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ync_fa_career_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ync_fa_career_card {
  position: relative;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ync_fa_career_card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.ync_fa_career_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  border-bottom-left-radius: 9999px;
  opacity: 0.5;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ync_fa_career_card:hover .ync_fa_career_bg {
  transform: scale(1.1);
}

.ync_fa_career_bg_blue {
  background-color: #dbeafe;
}

.ync_fa_career_bg_sky {
  background-color: #e0f2fe;
}

.ync_fa_career_bg_indigo {
  background-color: #e0e7ff;
}

.ync_fa_career_content {
  position: relative;
  z-index: 10;
}

.ync_fa_career_title {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
}

.ync_fa_career_dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  display: inline-block;
  flex-shrink: 0;
}

.ync_fa_career_dot_blue {
  background-color: #2563eb;
}

.ync_fa_career_dot_sky {
  background-color: #0ea5e9;
}

.ync_fa_career_dot_indigo {
  background-color: #6366f1;
}

.ync_fa_career_list {
  font-size: 15px;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ync_fa_career_item {
  padding-left: 1rem;
  position: relative;
  word-break: keep-all;
  line-height: 1.55;
}

.ync_fa_career_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #cbd5e1;
  border-radius: 9999px;
}

/* =========================================
   Screen Reader Only
   ========================================= */
.ync_fa_sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =========================================
   언론 보도 (Press Coverage)
   ========================================= */
.ync_fa_press_wrap {
  padding-top: 1rem;
}

.ync_fa_press_subtitle {
  text-align: center;
  color: #64748b;
  font-size: 0.975rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.ync_fa_press_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ync_fa_press_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 카드 — <a> 태그 */
.ync_fa_press_card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ync_fa_press_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
  border-color: #93c5fd;
}

/* 썸네일 영역 — 16:9 고정 비율 */
.ync_fa_press_thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #e2e8f0;
  overflow: hidden;
}

.ync_fa_press_thumb_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
  display: block;
}

.ync_fa_press_card:hover .ync_fa_press_thumb_img {
  transform: scale(1.04);
}

/* 썸네일 위 살짝 어두운 오버레이 */
.ync_fa_press_thumb_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15, 23, 42, 0.18) 100%);
  pointer-events: none;
}

/* 카드 본문 */
.ync_fa_press_body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

/* 언론사 + 날짜 태그 */
.ync_fa_press_meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.ync_fa_press_source {
  display: inline-block;
  background-color: #dbeafe;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.ync_fa_press_date {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

/* 기사 제목 */
.ync_fa_press_title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
  word-break: keep-all;
}

/* 리드 문장 */
.ync_fa_press_desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
  flex: 1;
}

/* 기사 보기 링크 */
.ync_fa_press_link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.01em;
  transition: color 0.15s ease, gap 0.15s ease;
}

.ync_fa_press_card:hover .ync_fa_press_link {
  color: #1d4ed8;
  text-decoration: underline;
}


/* =========================================
   AI물류자동화과 교육과정표 스타일
   ync_fa_curriculum.css
   색상: 영남이공대 브랜드 컬러 (파란색 / 하늘색)
   ========================================= */

/* 교육과정표 래퍼 */
.ync_fa_curriculum_wrap {
    margin-bottom: 5rem;
}

/* 섹션 헤더 (공통 스타일과 유사하나 독립적으로 사용 가능) */
.ync_fa_sec_header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ync_fa_sec_title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.025em;
    display: inline-block;
    position: relative;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .ync_fa_sec_title {
        font-size: 1.875rem;
    }
}

.ync_fa_sec_title_underline {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 0.25rem;
    background-color: #0056a6; /* YNC 파란색 */
    border-radius: 9999px;
}

/* 학기별 교육과정표 그리드 */
.ync_fa_curriculum_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; /* 상하 간격을 약간 넓혀줍니다 */
}

/* 학년별 카드 */
.ync_fa_curriculum_year_card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 학년 타이틀 영역 (헤더) */
.ync_fa_curriculum_year_header {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.ync_fa_curriculum_year_header_blue {
    background-color: #0056a6;
    color: #ffffff;
    border-bottom: none;
}

.ync_fa_curriculum_year_header_sky {
    background-color: #00a2e8;
    color: #ffffff;
    border-bottom: none;
}

.ync_fa_curriculum_year_title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
}

/* 학기별 영역 컨테이너 */
.ync_fa_curriculum_semesters {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    flex-grow: 1;
}

@media (min-width: 640px) {
    .ync_fa_curriculum_semesters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 개별 학기 */
.ync_fa_curriculum_semester {
    padding: 1.5rem;
    position: relative;
}

@media (min-width: 640px) {
    .ync_fa_curriculum_semester:first-child {
        border-right: 1px solid #e2e8f0;
    }
}

/* 학기 타이틀 */
.ync_fa_curriculum_sem_title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    text-align: center;
}

/* 테이블 래퍼 (반응형 가로 스크롤) */
.ync_fa_table_wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 테이블 공통 스타일 */
.ync_fa_table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9375rem;
    color: #334155;
}

.ync_fa_table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    padding: 0.75rem 0.5rem;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.ync_fa_table td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

/* 첫 번째 컬럼 좌측/우측 여백 */
.ync_fa_table th:first-child,
.ync_fa_table td:first-child {
    padding-left: 1rem;
}

.ync_fa_table th:last-child,
.ync_fa_table td:last-child {
    padding-right: 1rem;
}

/* 과목명 좌측 정렬 및 배지 가로 배치 */
.ync_fa_table td.col-name {
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    word-break: keep-all;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
    border-bottom: none; /* 플렉스 컨테이너 특성상 테두리 중복 방지, 필요시 조정 */
}

/* 학점 컬럼 포인트 컬러 */
.ync_fa_table td.col-credits {
    font-weight: 700;
    color: #0ea5e9; /* 하늘색 포인트 */
}

/* 합계 줄 스타일 */
.ync_fa_table tfoot tr {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1e293b;
}

.ync_fa_table tfoot td {
    border-top: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
    padding: 0.8rem 0.5rem;
}


/* 배지 (식별표) 스타일 */
.ync_fa_badge {
    display: inline-block;
    padding: 0.15rem 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    line-height: 1;
    white-space: nowrap;
}

.ync_fa_badge_core {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.ync_fa_badge_comp {
    background-color: #e0e7ff;
    color: #4338ca;
    border: 1px solid #c7d2fe;
}

.ync_fa_badge_rise {
    background-color: #fef08a;
    color: #854d0e;
    border: 1px solid #fde047;
}

.ync_fa_badge_eval {
    background-color: #d1fae5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

/* 마이크로디그리 과정 (자격증 카드 활용) */
.ync_fa_micro_wrap {
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.ync_fa_micro_grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .ync_fa_micro_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ync_fa_micro_card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.ync_fa_micro_header {
    padding: 1.25rem 1.5rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ync_fa_micro_header_blue {
    background-color: #0056a6;
    color: #ffffff;
    border-bottom: none;
}

.ync_fa_micro_header_sky {
    background-color: #00a2e8;
    color: #ffffff;
    border-bottom: none;
}

.ync_fa_micro_title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.ync_fa_micro_credits {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

.ync_fa_micro_body {
    padding: 1.5rem;
}

.ync_fa_micro_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .ync_fa_micro_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ync_fa_micro_item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    color: #334155;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ync_fa_micro_item_term {
    font-size: 0.75rem;
    color: #64748b;
    background-color: #e2e8f0;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
}

/* 범례 (Legend) */
.ync_fa_legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.ync_fa_legend_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}

.ync_fa_course_hours {
    font-size: 0.8125rem;
    color: #475569;
    background-color: #f1f5f9;
    padding: 0.1rem 0.5rem;
    border-radius: 9999px;
    margin-left: auto;
    white-space: nowrap;
    font-weight: 500;
}

.ync_fa_badge_md {
    background-color: #f3e8ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}

.ync_fa_table td.col-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.4rem;
}

/* =========================================
   AI물류자동화과 협력업체 소개 스타일
   ync_fa_partner.css
   ========================================= */

.ync_fa_partner_wrap {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

/* 상단 헤더 영역 (타이틀 + 로고) */
.ync_fa_partner_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1e293b;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.ync_fa_partner_title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
    letter-spacing: -0.025em;
}

.ync_fa_partner_logo img {
    height: 40px; /* 로고 높이 */
    width: auto;
    object-fit: contain;
}

/* 섹션 공통 */
.ync_fa_section {
    margin-bottom: 5rem;
}

.ync_fa_section_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #0056a6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ync_fa_section_desc {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 2rem;
    word-break: keep-all;
}

/* Section 1: 고용 기업 차트 & 유통 혁신 */
.ync_fa_emp_chart {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.ync_fa_chart_row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

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

.ync_fa_chart_bar_wrap {
    flex-grow: 1;
    background: #e2e8f0;
    height: 2.5rem;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.ync_fa_chart_bar {
    height: 100%;
    border-radius: 0.5rem;
}

.ync_fa_chart_bar.bg-blue {
    background-color: #0056a6;
}

.ync_fa_chart_bar.bg-gray {
    background-color: #cbd5e1;
}

.ync_fa_chart_label {
    width: 100px;
    font-weight: 700;
    color: #334155;
    text-align: right;
}

.ync_fa_flow_comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ync_fa_flow_item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #334155;
}

.ync_fa_flow_img_wrap {
    width: 100%;
    text-align: left;
}

.ync_fa_flow_img_wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Section 2: 물류 인프라 3단 그리드 */
.ync_fa_infra_grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ync_fa_infra_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ync_fa_infra_card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ync_fa_infra_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ync_fa_infra_img {
    width: 100%;
    aspect-ratio: 3/2;
    background-color: #f1f5f9;
    display: block;
}

.ync_fa_infra_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ync_fa_infra_body {
    padding: 1.5rem;
}

.ync_fa_infra_title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #1e293b;
}

.ync_fa_infra_text {
    font-size: 0.9375rem;
    color: #475569;
    margin: 0;
    word-break: keep-all;
}

/* Section 3: 직무 안내 (Automation Maintenance) */
.ync_fa_role_wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .ync_fa_role_wrap {
        flex-direction: row;
    }
}

.ync_fa_role_img {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #e2e8f0;
}

@media (min-width: 1024px) {
    .ync_fa_role_img {
        width: 45%;
        aspect-ratio: auto;
    }
}

.ync_fa_role_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ync_fa_role_content {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .ync_fa_role_content {
        width: 55%;
    }
}

.ync_fa_role_box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.ync_fa_role_box_title {
    display: inline-block;
    background: #334155;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ync_fa_role_box_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ync_fa_role_box_list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
}

.ync_fa_role_box_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #0056a6;
}

.ync_fa_role_box_list li:last-child {
    margin-bottom: 0;
}

/* Section 4: Outreach Track 테이블 & 프로세스 */
.ync_fa_outreach_table_wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.ync_fa_outreach_table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    text-align: center;
}

/* 헤더 열 너비 */
.ync_fa_outreach_table .col-year    { width: 12%; }
.ync_fa_outreach_table .col-general { width: 26%; }
.ync_fa_outreach_table .col-tc      { width: 31%; background-color: #1e4a8a; border-top: 4px solid #facc15 !important; border-left: 4px solid #facc15 !important; }
.ync_fa_outreach_table .col-auto    { width: 31%; background-color: #166534; border-top: 4px solid #facc15 !important; border-right: 4px solid #facc15 !important; }

.ync_fa_outreach_table th {
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem;
    border: 1px solid #334155;
}

.ync_fa_outreach_table td {
    padding: 1rem;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
    vertical-align: middle;
}

/* 연차 열 */
.ync_fa_outreach_table .col-bg-gray {
    background-color: #f1f5f9;
    font-weight: 700;
    color: #334155;
}

/* 일반 입사 열 */
.ync_fa_outreach_table .td-general {
    background-color: #ffffff;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.5;
}

/* Outreach 합산 셀 (L2, L4) — 어두운 남색 배경 */
.ync_fa_outreach_table .td-outreach-merge {
    background-color: #1e293b;
    color: #ffffff;
    font-weight: 600;
    padding: 1.5rem 1rem;
}

/* TC 열 (파란색) */
.ync_fa_outreach_table .td-tc {
    background-color: #0369a1;
    color: #ffffff;
    font-weight: 600;
    padding: 1.5rem 1rem;
}

/* Automation 열 (초록색) */
.ync_fa_outreach_table .td-auto {
    background-color: #15803d;
    color: #ffffff;
    font-weight: 600;
    padding: 1.5rem 1rem;
}

/* 노란 테두리 — Outreach 영역 상단/하단/좌우 강조 */
.ync_fa_outreach_table .td-border-yellow-top    { border-top: 4px solid #facc15 !important; }
.ync_fa_outreach_table .td-border-yellow-bottom { border-bottom: 4px solid #facc15 !important; }
.ync_fa_outreach_table .td-border-yellow-right  { border-right: 4px solid #facc15 !important; }
.ync_fa_outreach_table .td-border-yellow-left   { border-left: 4px solid #facc15 !important; }

/* 빨간 점선 — L1→L2, L3→L4 경계 */
.ync_fa_outreach_table .td-border-red-bottom { border-bottom: 3px dashed #ef4444 !important; }

/* 텍스트 헬퍼 클래스 */
.ync_fa_outreach_table .td-level    { font-size: 1.1rem; font-weight: 700; display: inline-block; margin-bottom: 0.25rem; }
.ync_fa_outreach_table .td-level-sm { font-size: 0.95rem; font-weight: 700; display: inline-block; margin-bottom: 0.25rem; }
.ync_fa_outreach_table .td-sub      { font-size: 0.85rem; color: #cbd5e1; display: inline-block; line-height: 1.4; }
.ync_fa_outreach_table .td-sub-dark { font-size: 0.85rem; color: #64748b; }

.ync_fa_outreach_table .highlight-yellow {
    color: #eab308;
    font-weight: 700;
}

.ync_fa_outreach_table .highlight-blue {
    color: #0ea5e9;
    font-weight: 700;
}

.ync_fa_outreach_process {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ync_fa_outreach_process {
        flex-direction: row;
        align-items: stretch;
    }
}

.ync_fa_process_step {
    flex: 1;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .ync_fa_process_step:not(:last-child)::after {
        content: '➔';
        position: absolute;
        right: -1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #94a3b8;
        z-index: 10;
    }
}

.ync_fa_process_title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #15803d; /* 초록색 포인트 */
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px dashed #e2e8f0;
}

.ync_fa_process_list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #334155;
}

.ync_fa_process_list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    word-break: keep-all;
}

.ync_fa_process_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0ea5e9;
    font-weight: 800;
}

.ync_fa_process_list li:last-child {
    margin-bottom: 0;
}
