/* =========================================
   글로벌한국어문화과 준비 중 페이지 스타일
   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_aic_intro.css
   gkc/fa 학과소개 CSS 구조 기반
   ync_aic_ 접두어 적용 (중복 방지)
   색상: 영남이공대 브랜드 컬러 (파란색 / 하늘색)
   ========================================= */

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

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

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

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

.ync_aic_topinfo_img_wrap:hover .ync_aic_topinfo_img {
  transform: scale(1.05);
}

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

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

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

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

/* 전공 태그 목록 */
.ync_aic_topinfo_majors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ync_aic_topinfo_major_tag {
  background-color: rgb(255 255 255 / 0.7);
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
}

/* 슬로건 텍스트 */
.ync_aic_topinfo_slogan {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  line-height: 1.5;
  word-break: keep-all;
}

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

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

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

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

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

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

/* =========================================
   전공별 강점 섹션 (Feature — 전공 탭 구조)
   ========================================= */
.ync_aic_major_wrap {
  margin-bottom: 5rem;
}

/* 전공 헤더 카드 */
.ync_aic_major_block {
  margin-bottom: 3rem;
}

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

.ync_aic_major_header {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-image: linear-gradient(to right, #1d4ed8, #0ea5e9);
  border-radius: 1rem 1rem 0 0;
  padding: 1.25rem 1.75rem;
}

.ync_aic_major_header_num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgb(255 255 255 / 0.2);
  border: 2px solid rgb(255 255 255 / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.ync_aic_major_header_title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

/* 전공별 강점 그리드 */
.ync_aic_major_body {
  background-color: #f8fafc;
  border: 1px solid #dbeafe;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

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

.ync_aic_feature_card {
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.875rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #dbeafe;
  transition: border-color 150ms ease, box-shadow 200ms ease;
}

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

.ync_aic_feature_title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  word-break: keep-all;
}

.ync_aic_feature_title::before {
  content: '▸';
  font-size: 0.75rem;
  flex-shrink: 0;
}

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

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

.ync_aic_feature_item::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  color: #94a3b8;
  font-weight: 700;
}

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

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

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

.ync_aic_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_aic_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_aic_career_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  border-bottom-left-radius: 9999px;
  opacity: 0.5;
  transition: transform 300ms ease;
}

.ync_aic_career_card:hover .ync_aic_career_bg {
  transform: scale(1.1);
}

.ync_aic_career_bg_blue   { background-color: #dbeafe; }
.ync_aic_career_bg_sky    { background-color: #e0f2fe; }
.ync_aic_career_bg_indigo { background-color: #e0e7ff; }

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

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

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

.ync_aic_career_dot_blue   { background-color: #2563eb; }
.ync_aic_career_dot_sky    { background-color: #0ea5e9; }
.ync_aic_career_dot_indigo { background-color: #6366f1; }

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

.ync_aic_career_item {
  padding-left: 0.875rem;
  position: relative;
  word-break: keep-all;
  line-height: 1.5;
}

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

/* =========================================
   Screen Reader Only
   ========================================= */
.ync_aic_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;
}

