/* =========================================
   글로벌한국어문화과 준비 중 페이지 스타일
   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%; }
}

/* =========================================
   글로벌한국어문화과 학과 소개 페이지 스타일
   ync_gkc_intro.css
   socialwork/introduce_tailwind.css 를 기반으로
   ync_gkc_ 접두어를 적용하여 중복 방지
   색상: 영남이공대 브랜드 컬러 (파란색 / 하늘색)
   ========================================= */

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

/* =========================================
   상단 배너 (Top Info)
   ========================================= */
.ync_gkc_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_gkc_topinfo {
    padding: 3rem;
  }
}

.ync_gkc_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_gkc_topinfo_img_wrap {
    aspect-ratio: 1400 / 340;
  }
}

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

.ync_gkc_topinfo_img_wrap:hover .ync_gkc_topinfo_img {
  transform: scale(1.05);
}

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

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

.ync_gkc_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_gkc_topinfo_title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

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

/* 슬로건 텍스트 (배너 내부) */
.ync_gkc_topinfo_slogan {
  font-size: 1.375rem;
  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_gkc_topinfo_slogan {
    font-size: 1.625rem;
  }
}

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

.ync_gkc_topinfo_card {
  background-color: rgb(255 255 255 / 0.65);
  padding: 1.25rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(255 255 255 / 0.5);
}

.ync_gkc_topinfo_card_title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 카드 타이틀 색상 — 파란색 계열 */
.ync_gkc_topinfo_card_title_amber {
  color: #1d4ed8;
}

.ync_gkc_topinfo_card_title_orange {
  color: #0284c7;
}

.ync_gkc_topinfo_card_title_rose {
  color: #0369a1;
}

.ync_gkc_topinfo_card_icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.ync_gkc_topinfo_card_desc {
  color: #475569;
  line-height: 1.625;
  font-size: 15px;
  margin: 0;
  word-break: keep-all;
}

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

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

.ync_gkc_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_gkc_sec_title {
    font-size: 1.875rem;
  }
}

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

/* =========================================
   학과 비전 (슬로건 카드)
   ========================================= */
.ync_gkc_edu_single {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.ync_gkc_edu_single_card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ync_gkc_edu_single_card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.ync_gkc_edu_single_title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  margin-top: 0;
}

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

.ync_gkc_edu_single_subtitle {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
  margin-top: 0;
  word-break: keep-all;
}

.ync_gkc_edu_single_line {
  height: 0.25rem;
  width: 4rem;
  background-image: linear-gradient(to right, #2563eb, #38bdf8);
  border-radius: 9999px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.ync_gkc_edu_single_desc {
  color: #334155;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
  word-break: keep-all;
}

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

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

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

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

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

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

.ync_gkc_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_gkc_feature_card:hover {
  border-color: #93c5fd;
  box-shadow: 0 6px 16px -4px rgba(37, 99, 235, 0.15);
}

.ync_gkc_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;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.ync_gkc_feature_num_6 {
  background-image: linear-gradient(to bottom right, #0369a1, #075985);
  box-shadow: 0 4px 6px -1px #bae6fd;
}

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

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

.ync_gkc_feature_num_9 {
  background-image: linear-gradient(to bottom right, #7dd3fc, #38bdf8);
  box-shadow: 0 4px 6px -1px #bae6fd;
}

.ync_gkc_feature_content {}

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

.ync_gkc_feature_desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
}

/* =========================================
   F-2-R 비자 안내 배너 (Info Banner)
   ========================================= */
.ync_gkc_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_gkc_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_gkc_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_gkc_info_banner_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.ync_gkc_info_banner_title {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.ync_gkc_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_gkc_info_banner_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  flex-shrink: 0;
}

.ync_gkc_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_gkc_info_badge_highlight {
  background-color: #38bdf8;
  border-color: #0ea5e9;
  color: #0c1a2e;
}

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

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

.ync_gkc_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_gkc_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_gkc_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_gkc_career_card:hover .ync_gkc_career_bg {
  transform: scale(1.1);
}

/* 취업처 카드 배경색 — 파란색 / 하늘색 계열 */
.ync_gkc_career_bg_amber {
  background-color: #dbeafe;
}

.ync_gkc_career_bg_orange {
  background-color: #e0f2fe;
}

.ync_gkc_career_bg_emerald {
  background-color: #eff6ff;
}

.ync_gkc_career_bg_violet {
  background-color: #e0f2fe;
}

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

.ync_gkc_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_gkc_career_dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  display: inline-block;
  flex-shrink: 0;
}

/* 취업처 카드 도트 색상 — 파란색 / 하늘색 계열 */
.ync_gkc_career_dot_amber {
  background-color: #2563eb;
}

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

.ync_gkc_career_dot_emerald {
  background-color: #3b82f6;
}

.ync_gkc_career_dot_violet {
  background-color: #38bdf8;
}

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

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

.ync_gkc_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_gkc_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;
}

/* =========================================
   교육목표 (Goal Section)
   ========================================= */

/* 핵심 목표 하이라이트 배너 */
.ync_gkc_goal_banner {
  background-image: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #0ea5e9 100%);
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  margin-bottom: 1.75rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ync_gkc_goal_banner::before {
  content: '';
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 9rem;
  height: 9rem;
  background-color: rgb(255 255 255 / 0.07);
  border-radius: 9999px;
}

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

.ync_gkc_goal_banner_label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bae6fd;
  margin: 0 0 0.5rem 0;
  position: relative;
  z-index: 1;
}

.ync_gkc_goal_banner_title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.875rem 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

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

.ync_gkc_goal_banner_desc {
  font-size: 0.9375rem;
  color: rgb(255 255 255 / 0.88);
  line-height: 1.75;
  margin: 0;
  word-break: keep-all;
  position: relative;
  z-index: 1;
}

/* 4대 목표 2×2 그리드 */
.ync_gkc_goal_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

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

/* 목표 카드 */
.ync_gkc_goal_card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #dbeafe;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.ync_gkc_goal_card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 20px -4px rgba(29, 78, 216, 0.14);
  transform: translateY(-2px);
}

/* 번호 + 제목 행 */
.ync_gkc_goal_card_head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

/* 숫자 배지 */
.ync_gkc_goal_num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.ync_gkc_goal_num_1 {
  background-image: linear-gradient(135deg, #1e40af, #1d4ed8);
  box-shadow: 0 3px 8px rgba(29, 78, 216, 0.35);
}

.ync_gkc_goal_num_2 {
  background-image: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 3px 8px rgba(14, 165, 233, 0.35);
}

.ync_gkc_goal_num_3 {
  background-image: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.35);
}

.ync_gkc_goal_num_4 {
  background-image: linear-gradient(135deg, #1e3a8a, #1e40af);
  box-shadow: 0 3px 8px rgba(30, 58, 138, 0.35);
}

/* 목표 제목 */
.ync_gkc_goal_title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  word-break: keep-all;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* 구분선 */
.ync_gkc_goal_divider {
  height: 1px;
  background-color: #e0e7ff;
  border: none;
  margin: 0;
}

/* 목표 설명 */
.ync_gkc_goal_desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  word-break: keep-all;
}

/* =========================================
   글로벌한국어문화과 동아리 페이지 스타일
   ========================================= */

.ync_club_wrap {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.ync_club_card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.ync_club_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

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

.ync_club_img_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f8fafc;
}

@media (min-width: 768px) {
    .ync_club_img_wrap {
        width: 40%;
        aspect-ratio: auto;
        flex-shrink: 0;
    }
}

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

.ync_club_card:hover .ync_club_img {
    transform: scale(1.05);
}

.ync_club_content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

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

.ync_club_header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.ync_club_title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.ync_club_title_eng {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ync_club_desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    word-break: keep-all;
}

.ync_club_desc p {
    margin: 0;
}

.ync_club_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.ync_club_meta_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    background-color: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
}

.ync_club_meta_icon {
    width: 1rem;
    height: 1rem;
    color: #4f46e5;
}

/* =========================================
   글로벌한국어문화과 교육과정 페이지 스타일
   ync_gkc_curriculum.css
   socialwork/교육과정.css 와 동일한 구조,
   접두어 ync_gkc_curriculum_ / ync_gkc_cert_ 적용
   색상: 영남이공대 브랜드 컬러 (파란색 / 하늘색)
   ========================================= */

/* ── 학기별 교육과정표 ──────────────────── */
.ync_gkc_curriculum_wrap {
    margin-bottom: 5rem;
}

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

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

.ync_gkc_curriculum_year_card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.ync_gkc_curriculum_year_header {
    padding: 1.5rem;
    text-align: center;
}

/* 1학년 — YNC 딥블루 */
.ync_gkc_curriculum_year_header_blue {
    background-image: linear-gradient(to right, #1e3a8a, #1e40af);
}

/* 2학년 — YNC 하늘색 */
.ync_gkc_curriculum_year_header_sky {
    background-image: linear-gradient(to right, #0284c7, #0369a1);
}

.ync_gkc_curriculum_year_title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.08em;
}

.ync_gkc_curriculum_semesters {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    flex-grow: 1;
}

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

.ync_gkc_curriculum_semester {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.ync_gkc_curriculum_semester:first-child {
    border-bottom: 1px solid #e2e8f0;
}

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

.ync_gkc_curriculum_sem_title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.ync_gkc_curriculum_sem_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 0.25rem;
    background-color: #bfdbfe;
    border-radius: 9999px;
}

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

.ync_gkc_curriculum_item {
    color: #334155;
    font-size: 1rem;
    font-weight: 600;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.45;
    word-break: keep-all;
}

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

.ync_gkc_curriculum_item:hover {
    color: #1e293b;
    font-weight: 700;
}

.ync_gkc_curriculum_item:hover::before {
    background-color: #2563eb;
    transform: scale(1.5);
    transition: all 200ms ease;
}

/* ── 자격증 관련 교육과정 ────────────────── */
.ync_gkc_cert_wrap {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.ync_gkc_cert_card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
}

.ync_gkc_cert_header {
    padding: 1.5rem;
    text-align: center;
}

.ync_gkc_cert_header_blue {
    background-image: linear-gradient(to right, #1e3a8a, #1e40af);
}

.ync_gkc_cert_header_sky {
    background-image: linear-gradient(to right, #0284c7, #0369a1);
}

.ync_gkc_cert_title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ync_gkc_cert_title_sub {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.ync_gkc_cert_body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ync_gkc_cert_group {
    margin: 0;
}

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

.ync_gkc_cert_group_badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: #dbeafe;
    color: #1d4ed8;
}

.ync_gkc_cert_group_badge_outline {
    background-color: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

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

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

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

@media (min-width: 1280px) {
    .ync_gkc_cert_list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.ync_gkc_cert_item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: all 200ms ease;
    word-break: keep-all;
}

.ync_gkc_cert_item:hover {
    background-color: #ffffff;
    border-color: #2563eb;
    color: #1d4ed8;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1), 0 2px 4px -2px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

/* ── 교육목표 배너 (교육과정 페이지 상단) ── */
.ync_gkc_curriculum_goal_banner {
    background-image: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #38bdf8 100%);
    border-radius: 1.25rem;
    padding: 1.75rem 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ync_gkc_curriculum_goal_banner::before {
    content: '';
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background-color: rgb(255 255 255 / 0.07);
    border-radius: 9999px;
}

.ync_gkc_curriculum_goal_label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bae6fd;
    margin: 0 0 1rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* 2x2 교육목표 그리드 */
.ync_gkc_curriculum_goal_grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

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

.ync_gkc_curriculum_goal_item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    word-break: keep-all;
    letter-spacing: -0.01em;
}

.ync_gkc_curriculum_goal_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: rgb(255 255 255 / 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid rgb(255 255 255 / 0.4);
}
