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

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

/* Top Info */
.ync_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_topinfo {
    padding: 3rem;
  }
}

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

.ync_topinfo_img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-duration: 500ms;
}

.ync_topinfo_img_wrap:hover .ync_topinfo_img {
  transform: scale(1.05);
}

.ync_topinfo_overlay {
  position: absolute;
  inset: 0px;
  background-color: rgb(49 46 129 / 0.1);
}

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

.ync_topinfo_badge {
  display: inline-block;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background-color: #e0e7ff;
  color: #4338ca;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  width: max-content;
}

.ync_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_topinfo_title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

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

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

.ync_topinfo_card {
  background-color: rgb(255 255 255 / 0.6);
  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.4);
}

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

.ync_topinfo_card_title_indigo {
  color: #3730a3;
}

.ync_topinfo_card_title_teal {
  color: #0f766e;
}

.ync_topinfo_card_icon {
  width: 1.25rem;
  height: 1.25rem;
}

.ync_topinfo_card_desc {
  color: #475569;
  line-height: 1.625;
  font-size: 15px;
  margin: 0;
}

/* Section Titles */
.ync_sec_wrap {
  margin-bottom: 5rem;
}

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

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

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

/* 교육목표 */
.ync_edu_single {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.ync_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_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_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_edu_single_title {
    font-size: 1.875rem;
  }
}

.ync_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_edu_single_line {
  height: 0.25rem;
  width: 4rem;
  background-image: linear-gradient(to right, #6366f1, #14b8a6);
  border-radius: 9999px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

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

/* 학과특색 */
.ync_feature_wrap {
  margin-bottom: 5rem;
  background-color: #f8fafc;
  padding: 4rem 1.5rem;
  border-radius: 2.5rem;
}

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

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

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

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

.ync_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 #f1f5f9;
  display: flex;
  gap: 1.25rem;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ync_feature_card:hover {
  border-color: #e0e7ff;
}

.ync_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), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.ync_feature_num_1 {
  background-image: linear-gradient(to bottom right, #4f46e5, #4338ca);
  box-shadow: 0 4px 6px -1px #c7d2fe;
}

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

.ync_feature_num_3 {
  background-image: linear-gradient(to bottom right, #0f766e, #115e59);
  box-shadow: 0 4px 6px -1px #99f6e4;
}

.ync_feature_num_4 {
  background-image: linear-gradient(to bottom right, #9333ea, #7e22ce);
  box-shadow: 0 4px 6px -1px #e9d5ff;
}

.ync_feature_content {}

.ync_feature_title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

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

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

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

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

/* 졸업 후 진로 */
.ync_career_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

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

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

.ync_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_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_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_career_card:hover .ync_career_bg {
  transform: scale(1.1);
}

.ync_career_bg_rose {
  background-color: #fff1f2;
}

.ync_career_bg_blue {
  background-color: #eff6ff;
}

.ync_career_bg_emerald {
  background-color: #ecfdf5;
}

.ync_career_bg_purple {
  background-color: #faf5ff;
}

.ync_edu_icon_indigo {
  background-color: #eef2ff;
  color: #4f46e5;
}

.ync_edu_card:hover .ync_edu_icon_indigo {
  background-color: #4f46e5;
  color: #ffffff;
}

.ync_edu_icon_teal {
  background-color: #f0fdfa;
  color: #0f766e;
}

.ync_edu_card:hover .ync_edu_icon_teal {
  background-color: #0f766e;
  color: #ffffff;
}

.ync_edu_icon_rose {
  background-color: #fff1f2;
  color: #e11d48;
}

.ync_edu_card:hover .ync_edu_icon_rose {
  background-color: #e11d48;
  color: #ffffff;
}

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

.ync_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_career_dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  display: inline-block;
}

.ync_career_dot_rose {
  background-color: #fb7185;
}

.ync_career_dot_blue {
  background-color: #60a5fa;
}

.ync_career_dot_emerald {
  background-color: #34d399;
}

.ync_career_dot_purple {
  background-color: #c084fc;
}

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

.ync_career_item {
  padding-left: 1rem;
  position: relative;
}

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

/* 비디오 */
.ync_video_wrap {
  margin-bottom: 2.5rem;
}

.ync_video_container {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.ync_video_card {
  background-color: #ffffff;
  padding: 0.75rem;
  border-radius: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

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

.ync_video_ratio {
  position: relative;
  padding-top: 56.25%;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #0f172a;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.ync_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 캠퍼스 내 학과 위치 */
.ync_map_wrap {
  margin-bottom: 5rem;
}

.ync_map_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ync_map_main_img_wrap {
  width: 100%;
  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;
}

.ync_map_main_img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.ync_building_card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.ync_building_img_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ync_building_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ync_building_card:hover .ync_building_img {
  transform: scale(1.05);
}

.ync_building_content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ync_building_title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.ync_floor_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ync_floor_item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ync_floor_num {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
  min-width: 3.5rem;
  text-align: center;
}

.ync_floor_num_indigo {
  background-color: #e0e7ff;
  color: #4338ca;
}

.ync_floor_num_teal {
  background-color: #ccfbf1;
  color: #0f766e;
}

.ync_floor_desc {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
  word-break: keep-all;
}

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

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

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

.ync_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_curriculum_year_header {
  padding: 1.5rem;
  text-align: center;
}

.ync_curriculum_year_header_indigo {
  background-image: linear-gradient(to right, #4f46e5, #4338ca);
}

.ync_curriculum_year_header_teal {
  background-image: linear-gradient(to right, #0f766e, #115e59);
}

.ync_curriculum_year_title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.05em;
}

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

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

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

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

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

.ync_curriculum_sem_title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #334155;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

.ync_curriculum_item {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
  word-break: keep-all;
}

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

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

.ync_curriculum_item:hover::before {
  background-color: #6366f1;
  transform: scale(1.5);
  transition: all 200ms ease;
}

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

.ync_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_cert_header {
  padding: 1.5rem;
  text-align: center;
}

.ync_cert_header_indigo {
  background-image: linear-gradient(to right, #4f46e5, #4338ca);
}

.ync_cert_header_teal {
  background-image: linear-gradient(to right, #0f766e, #115e59);
}

.ync_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_cert_title_sub {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

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

.ync_cert_group {
  margin: 0;
}

.ync_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_cert_group_badge {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #e0e7ff;
  color: #4338ca;
}

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

.ync_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_cert_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

.ync_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_cert_item:hover {
  background-color: #ffffff;
  border-color: #6366f1;
  color: #4f46e5;
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1), 0 2px 4px -2px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

/* 취업률 */
.ync_employment_wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.ync_employment_container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.ync_employment_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;
  padding: 2rem;
}

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

.ync_employment_table_wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.ync_employment_table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  white-space: nowrap;
}

.ync_employment_table th {
  background-color: #f8fafc;
  color: #334155;
  font-weight: 700;
  padding: 1.25rem 1rem;
  border-bottom: 2px solid #e2e8f0;
  font-size: 1rem;
}

.ync_employment_table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
}

.ync_employment_table tbody tr:last-child td {
  border-bottom: none;
}

.ync_employment_table tbody tr:hover {
  background-color: #f8fafc;
}

.ync_employment_rate {
  font-weight: 800;
  color: #4f46e5;
  font-size: 1.125rem;
  background-color: #e0e7ff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.ync_employment_info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.875rem;
  justify-content: center;
}

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

.ync_employment_info p {
  margin: 0;
}

/* 동아리 (Club) */
.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 AI Human Lab Redesign Styles */
.ync-ai-wrap {
    font-family: 'Pretendard', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* Accessibility (A11y) */
.ync-ai-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;
}

/* Bento Flex Layout */
.ync-ai-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .ync-ai-grid {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Hero / Info Card */
.ync-ai-info-card {
    width: 100%;
    margin: 0;
    /* Reset CMS margins */
    background: linear-gradient(135deg, #0f2043 0%, #081126 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(15, 32, 67, 0.3);
}

@media (min-width: 1024px) {
    .ync-ai-info-card {
        width: 360px;
        flex-shrink: 0;
    }
}

.ync-ai-info-card::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ync-ai-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.ync-ai-info-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.ync-ai-info-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.ync-ai-info-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.ync-ai-vr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0259a4;
    color: #fff !important;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ync-ai-vr-btn:hover {
    background-color: #004b8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 89, 164, 0.4);
}

.ync-ai-vr-btn .ync-ai-icon-arr {
    margin-left: 0.5rem;
    font-size: 1.4rem;
    line-height: 1;
}

/* Gallery Slider Card (Pure CSS Scroll Snap) */
.ync-ai-gallery-card {
    flex: 1;
    margin: 0;
    /* Reset CMS margins */
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    min-width: 0;
}

.ync-ai-gallery-inner {
    border-radius: 12px;
    position: relative;
    background-color: #f1f5f9;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    /* Let the block level naturally fill and contain */
}

/* -------------------------------------
   Premium Static CSS Grid Gallery (Bento Layout)
------------------------------------- */
.ync-ai-static-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
    height: 100%;
    width: 100%;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background-color: #0f172a;
    /* Dark background so un-loaded images look intentional */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Sophisticated subtle shadow */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Elegant Premium Overlays (Gradients & Text) */
.gallery-overlay {
    position: absolute;
    inset: 0;
    /* Shorthand for top 0, right 0, bottom 0, left 0 */
    background: linear-gradient(to top, rgba(15, 32, 67, 0.85) 0%, rgba(15, 32, 67, 0.1) 40%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-text h4 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gallery-text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Premium Hover Micro-Interactions */
.gallery-item:hover img,
.gallery-item:focus-within img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(2, 89, 164, 0.9) 0%, rgba(15, 32, 67, 0.2) 50%, transparent 100%);
    /* Slight color shift on hover */
}

.gallery-item:hover .gallery-text,
.gallery-item:focus-within .gallery-text {
    transform: translateY(0);
    opacity: 1;
}

/* Bento Item Grid Positioning (Desktop) */
.gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Bento Item Grid Positioning (3 Items Variation) */
.ync-ai-static-gallery.grid-3-items {
    grid-template-columns: 1.5fr 1fr;
}

.ync-ai-static-gallery.grid-3-items .gallery-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.ync-ai-static-gallery.grid-3-items .gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Responsive Premium Layout */
@media (max-width: 820px) {
    .ync-ai-static-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .gallery-item {
        border-radius: 12px;
    }

    /* Constantly show text on mobile since hover doesn't exist reliably */
    .gallery-text {
        opacity: 1;
        transform: translateY(0);
        padding: 1rem;
    }

    .gallery-overlay {
        opacity: 0.85;
    }

    .gallery-text h4 {
        font-size: 1.05rem;
    }

    .gallery-text p {
        font-size: 0.85rem;
    }

    .gallery-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 16 / 9;
    }

    .gallery-item:nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        aspect-ratio: 21 / 9;
    }

    .gallery-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        aspect-ratio: 4 / 3;
    }

    .gallery-item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        aspect-ratio: 4 / 3;
    }

    /* Responsive for 3 Items Variation */
    .ync-ai-static-gallery.grid-3-items {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .ync-ai-static-gallery.grid-3-items .gallery-item:nth-child(1) {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
        /* spans full width */
    }

    .ync-ai-static-gallery.grid-3-items .gallery-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        aspect-ratio: 4 / 3;
    }

    .ync-ai-static-gallery.grid-3-items .gallery-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        aspect-ratio: 4 / 3;
    }
}

/* ==============================================
   Pure CSS Lightbox (No JS required)
   ============================================== */

/* The hidden lightbox container */
.ync-ai-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.95);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    /* Make it unclickable while hidden */
    transition: opacity 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

/* THE MAGIC: Show the lightbox when its ID is targeted in the URL */
.ync-ai-lightbox:target {
    opacity: 1;
    pointer-events: auto;
}

/* The transparent background that acts as a close button */
.lightbox-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
    z-index: 1;
}

/* Visual Close 'X' Button on top right */
.lightbox-close::after {
    content: "×";
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover::after {
    color: #fff;
}

/* Image Wrapper */
.lightbox-content {
    position: relative;
    z-index: 2;
    /* Sit above the close background */
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    /* initial scale for popping animation */
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Animate the image popping in when targeted */
.ync-ai-lightbox:target .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
    display: block;
}

/* Navigation Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    transition: all 0.2s;
    /* Move outside the image slightly */
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Adjust arrows on small screens */
@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
        background-color: rgba(0, 0, 0, 0.5);
    }
}