:root {
  /* UOS Identity Colors */
  --uos-blue: #00305b;
  --uos-blue-light: #004a8d;
  --uos-gold: #a68966;
  --uos-gold-light: #d6c6b4;
  --soft-gray: #f4f7fa;
  --text-main: #1a1a1a;
  --bg-light: #f8f9fa;

  /* Theme Map */
  --primary-color: var(--uos-blue);
  --text-dark: var(--text-main);
  --text-gray: #5a5a5a;

  /* Vision Colors */
  --vision-blue: #4472c4;
  --vision-green: #70ad47;
  --vision-orange: #ed7d31;

  --uos-blue-dark: #002342;
  --text-main: #212529;
  --text-sub: #495057;
  --bg-gray: #f8f9fa;


}

/******** 인사말 **************************************/
.dean-section {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
}

.dean-section .dean-quote-wrapper {
  position: relative;
}

.dean-section .quote-icon-bg {
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 8rem;
  color: rgba(0, 48, 91, 0.05);
  font-family: serif;
  z-index: 0;
  line-height: 1;
}

.dean-section .dean-quote-box {
  position: relative;
  z-index: 1;
  border-left: 4px solid var(--primary-color);
  padding-left: 30px;
  margin-bottom: 50px;
}

.dean-section .dean-quote {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}

.dean-section .dean-text {
  position: relative;
  z-index: 1;
}

.dean-section .dean-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
  word-break: keep-all;
}

.dean-section .dean-signature-wrapper {
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.dean-section .dean-signature {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
}

.dean-section .dean-signature strong {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.6rem;
  color: #000;
}

.dean-section .dean-signature span {
  font-size: 1rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 2. Vision Section */
.vision-section {
  padding: 140px 0;
  background-color: var(--soft-gray);
  position: relative;
  overflow: hidden;
}

.vision-section .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 0;
}

.vision-section .vision-container {
  position: relative;
  z-index: 1;
}

.vision-section .vision-header {
  text-align: center;
  margin-bottom: 80px;
}

.vision-section .vision-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 25px;
}

.vision-section .vision-subtitle {
  font-size: 1.2rem;
  color: #666;
  background: #fff;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.vision-section .highlight-text {
  color: var(--primary-color);
  position: relative;
}

/* Platform Cards */
.vision-section .platform-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  padding: 60px 35px;
  text-align: center;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  border-top: 6px solid transparent;
  overflow: hidden;
}

.vision-section .platform-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.vision-section .platform-card.card-blue {
  border-color: var(--vision-blue);
}

.vision-section .platform-card.card-green {
  border-color: var(--vision-green);
}

.vision-section .platform-card.card-orange {
  border-color: var(--vision-orange);
}

.vision-section .icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.vision-section .card-blue .icon-wrapper {
  background: rgba(68, 114, 196, 0.08);
  color: var(--vision-blue);
}

.vision-section .card-green .icon-wrapper {
  background: rgba(112, 173, 71, 0.08);
  color: var(--vision-green);
}

.vision-section .card-orange .icon-wrapper {
  background: rgba(237, 125, 49, 0.08);
  color: var(--vision-orange);
}

.vision-section .platform-card:hover .icon-wrapper {
  color: #fff;
  transform: scale(1.1);
}

.vision-section .card-blue:hover .icon-wrapper {
  background: var(--vision-blue);
}

.vision-section .card-green:hover .icon-wrapper {
  background: var(--vision-green);
}

.vision-section .card-orange:hover .icon-wrapper {
  background: var(--vision-orange);
}

.vision-section .card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.vision-section .card-title-en {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vision-section .card-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  word-break: keep-all;
}

/* Animation class 초기 상태 */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Responsive */
@media (max-width: 991px) {
  .vision-section .vision-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .dean-section {
    padding: 80px 0;
  }

  .dean-section .dean-quote {
    font-size: 1.5rem;
  }

  .vision-section {
    padding: 100px 0;
  }

  .vision-section .platform-card {
    padding: 45px 25px;
  }
}


/******** 교육목표 **************************************/

/* edu-goal */
.edu-goal .deco-bar {
  width: 60px;
  height: 4px;
  background: var(--uos-gold);
  margin: 40px auto 0;
}

.edu-goal .cont-txt {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #000;
}

/* Base styles scoped to .edu-goal */
.edu-goal {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-main);
  background-color: #fff;
  word-break: keep-all;
  line-height: 1.7;
}

/* Typography Utilities */
.edu-goal .font-serif {
  font-family: 'Noto Serif KR', serif;
}

.edu-goal .text-blue {
  color: var(--uos-blue);
}

.edu-goal .text-gold {
  color: var(--uos-gold);
}

/* 1. Simple & Smart Hero Section */
.edu-goal .hero-wrap {
  position: relative;
  padding: 120px 0 80px;
  background-color: #fff;
  text-align: center;
}

.edu-goal .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: rgba(0, 48, 91, 0.05);
  color: var(--uos-blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.edu-goal .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.3;
}

.edu-goal .hero-desc {
  font-size: 1.15rem;
  color: var(--text-sub);
  max-width: 800px;
  margin: 0 auto;
}

/* 2. Z-Pattern Content Section */
.edu-goal .content-section {
  padding: 0px 0 80px;
}

.edu-goal .content-row {
  margin-bottom: 120px;
  align-items: center;
}

.edu-goal .content-row:last-child {
  margin-bottom: 0;
}

.edu-goal .img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.edu-goal .img-frame:hover {
  transform: translateY(-5px);
}

.edu-goal .img-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.edu-goal .text-wrap {
  padding: 20px 0;
}

.edu-goal .step-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 4rem;
  line-height: 1;
  color: #e9ecef;
  font-weight: 700;
  margin-bottom: -20px;
  position: relative;
  z-index: -1;
  display: block;
}

.edu-goal .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--uos-blue);
  margin-bottom: 20px;
  padding-top: 10px;
}

.edu-goal .section-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  text-align: justify;
}

/* 3. Clean Infographic Section */
.edu-goal .process-section {
  background-color: var(--bg-light);
  padding: 100px 0;
  border-top: 1px solid #eee;
}

.edu-goal .process-header {
  text-align: center;
  margin-bottom: 60px;
}

.edu-goal .process-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--uos-blue);
}

.edu-goal .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connecting Line */
.edu-goal .process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.edu-goal .process-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  border: 1px solid transparent;
}

.edu-goal .process-card:hover {
  transform: translateY(-10px);
  border-color: var(--uos-gold);
}

.edu-goal .icon-box {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid var(--uos-blue);
  color: var(--uos-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  position: relative;
}

.edu-goal .process-card:hover .icon-box {
  background: var(--uos-blue);
  color: #fff;
}

.edu-goal .proc-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.edu-goal .proc-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
  .edu-goal .hero-title {
    font-size: 2.2rem;
  }

  .edu-goal .content-row {
    margin-bottom: 80px;
  }

  /* Mobile Image Handling: Make Text come after Image */
  .edu-goal .order-mobile-2 {
    order: 2;
  }

  .edu-goal .order-mobile-1 {
    order: 1;
    margin-bottom: 30px;
  }

  .edu-goal .text-wrap {
    padding: 0;
  }

  .edu-goal .section-title {
    font-size: 1.5rem;
  }

  .edu-goal .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .edu-goal .process-grid::before {
    display: none;
  }

  /* Hide line on tablet/mobile */
}

@media (max-width: 576px) {
  .edu-goal .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.edu-goal .fade-up {
  opacity: 0;
  transform: translateY(30px);
}


/******** 현황 **************************************/
.status-wrap {
  --text-dark: #212529;
  --text-gray: #6c757d;
  --chart-susi: #5c8cc7;
  /* 수시 컬러 */
  --chart-jeongsi: #1f4e79;
  /* 정시 컬러 (UOS Blue Dark) */
  --chart-human: #a68966;
  /* 인문 컬러 */
  --chart-nature: #6c9a58;
  /* 자연 컬러 */
}

.status-wrap {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  word-break: keep-all;
  overflow-x: hidden;
}

.status-wrap .font-num {
  font-family: 'Montserrat', sans-serif;
}

.status-wrap .font-serif {
  font-family: 'Noto Serif KR', serif;
}

/* Hero Section */
.status-wrap .page-header {
  text-align: center;
  padding: 80px 0 60px;
  background-color: #fff;
}

.status-wrap .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--uos-blue);
  margin-bottom: 15px;
}

.status-wrap .page-desc {
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* 1. Organization Section */
.status-wrap .org-section {
  padding: 80px 0;
}

.status-wrap .section-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--uos-blue);
  border-bottom: 2px solid var(--uos-gold);
  padding-bottom: 5px;
  margin-bottom: 40px;
}

.status-wrap .org-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.status-wrap .org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--uos-blue);
}

.status-wrap .org-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--uos-blue);
  flex-shrink: 0;
}

.status-wrap .org-icon.golds {
  background-color: #fff3e0;
  color: var(--uos-gold);
}

.status-wrap .org-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-gray);
}

.status-wrap .org-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--uos-blue);
  line-height: 1;
}

.status-wrap .org-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-left: 2px;
}

/* 2. Admission Quota Section */
.status-wrap .quota-section {
  background-color: var(--bg-gray);
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.status-wrap .quota-row {
  margin-bottom: 30px;
}

/* Year Card Styling */
.status-wrap .year-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
  border-left: 5px solid transparent;
  transition: transform 0.3s ease;
}

.status-wrap .year-card:hover {
  transform: translateY(-5px);
}

/* Year specific accents */
.status-wrap .year-card[data-year="2024"] {
  border-left-color: #adb5bd;
}

.status-wrap .year-card[data-year="2025"] {
  border-left-color: var(--uos-gold);
}

.status-wrap .year-card[data-year="2026"] {
  border-left-color: var(--uos-blue);
}

.status-wrap .year-label {
  font-size: 2.2rem;
  font-weight: 800;
  color: #dee2e6;
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.status-wrap .year-card[data-year="2026"] .year-label {
  color: rgba(0, 48, 91, 0.1);
}

.status-wrap .total-wrap {
  margin-bottom: 30px;
}

.status-wrap .total-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
  display: block;
  margin-bottom: 5px;
}

.status-wrap .total-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

/* Graph Bars */
.status-wrap .graph-container {
  margin-bottom: 25px;
}

.status-wrap .graph-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.status-wrap .progress-custom {
  height: 24px;
  background-color: #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  margin-bottom: 8px;
}

.status-wrap .bar-susi {
  background-color: var(--chart-susi);
}

.status-wrap .bar-jeongsi {
  background-color: var(--chart-jeongsi);
}

.status-wrap .legend {
  display: flex;
  gap: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
}

.status-wrap .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.status-wrap .dot.susi {
  background: var(--chart-susi);
}

.status-wrap .dot.jeongsi {
  background: var(--chart-jeongsi);
}

/* Divider */
.status-wrap .card-divider {
  height: 1px;
  background-color: #eee;
  margin: 20px 0;
}

/* Type Grid (Humanities/Nature) */
.status-wrap .type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.status-wrap .type-box {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: #f8f9fa;
}

.status-wrap .type-box.human {
  color: var(--chart-human);
  border: 1px solid rgba(166, 137, 102, 0.2);
}

.status-wrap .type-box.nature {
  color: var(--chart-nature);
  border: 1px solid rgba(108, 154, 88, 0.2);
}

.status-wrap .type-box.disabled {
  opacity: 0.4;
  filter: grayscale(100%);
}

.status-wrap .type-name {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.status-wrap .type-val {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Animation */
.status-wrap .fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
  .status-wrap .page-title {
    font-size: 2rem;
  }

  .status-wrap .org-count {
    font-size: 1.8rem;
  }

  .status-wrap .year-card {
    margin-bottom: 20px;
  }
}


/******** 오시는 길 **************************************/
.map-wrap {
  --uos-blue: #00305b;
  --uos-blue-dark: #002342;
  --uos-gold: #a68966;
  --bg-light: #f8f9fa;
  --text-main: #111;
  --text-sub: #555;
  --border-color: #e5e5e5;
}

.map-wrap {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-main);
  background-color: #fff;
  word-break: keep-all;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 120px;
}

.map-wrap .font-mont {
  font-family: 'Montserrat', sans-serif;
}

.map-wrap .font-serif {
  font-family: 'Noto Serif KR', serif;
}

.map-wrap .text-blue {
  color: var(--uos-blue);
}

.map-wrap .text-gold {
  color: var(--uos-gold);
}

/* 1. Header Section (Minimal) */
.map-wrap .page-header {
  padding: 80px 0 50px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 60px;
}

.map-wrap .header-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
}

.map-wrap .header-desc {
  font-size: 1.1rem;
  color: var(--text-sub);
  max-width: 600px;
}

/* 2. Main Grid Layout */
.map-wrap .info-col {
  padding-right: 40px;
}

/* Info Item Styling */
.map-wrap .info-group {
  margin-bottom: 50px;
}

.map-wrap .info-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--uos-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
  border-left: 3px solid var(--uos-gold);
  padding-left: 10px;
}

.map-wrap .addr-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
}

.map-wrap .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-wrap .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--text-sub);
}

.map-wrap .contact-item i {
  width: 30px;
  color: var(--uos-gold);
}

.map-wrap .copy-btn {
  background-color: var(--text-main);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.map-wrap .copy-btn:hover {
  background-color: var(--uos-blue);
}

/* Map Container */
.map-wrap .map-container {
  width: 100%;
  height: 500px;
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Map Overlay */
.map-wrap .map-placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 40px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Animation */
.map-wrap .fade-in {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive */
@media (max-width: 991px) {
  .map-wrap .info-col {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .map-wrap .map-container {
    height: 400px;
  }
}


/******** 전공자율선택제 **************************************/
.major-wrap {
  --uos-blue: #00305b;
  --uos-blue-light: #4dabf7;
  --uos-gold: #FFD43B;
  --text-primary: #111;
  --text-secondary: #444;
  --card-bg: rgba(255, 255, 255, 0.85);
  /* Slightly more opaque for impact */
  --card-border: rgba(255, 255, 255, 0.9);
  --radius-lg: 28px;
  --radius-md: 20px;
}

/* 1. Base Setup */
.major-wrap {
  background-color: #f6fbff;
  overflow: hidden;
  position: relative;
  word-break: keep-all;
  line-height: 1.6;
  padding-bottom: 120px;
}

/* 2. Moving Background Shapes */
.major-wrap .shape-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.major-wrap .floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  transition: transform 0.2s ease-out;
}

.major-wrap .shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(77, 171, 247, 0.4);
  top: -100px;
  left: -100px;
}

.major-wrap .shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 212, 59, 0.35);
  bottom: 10%;
  right: -50px;
}

.major-wrap .shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(0, 48, 91, 0.35);
  top: 40%;
  left: 20%;
}

/* 3. Content Header & Character */
.major-wrap .content-header {
  position: relative;
  z-index: 1;
  padding: 100px 0 60px;
  text-align: center;
}

.major-wrap .mascot-wrap {
  width: 180px;
  margin: 0 auto 20px;
  animation: floatMascot 3s ease-in-out infinite;
}

.major-wrap .mascot-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.major-wrap .sub-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  color: var(--uos-blue);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.major-wrap .main-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.major-wrap .main-title span {
  background: linear-gradient(120deg, var(--uos-blue) 0%, var(--uos-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 4. Bento Grid Layout */
.major-wrap .bento-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common Card Styles */
.major-wrap .bento-item {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Hover Effects */
.major-wrap .bento-item:hover {
  transform: translateY(-8px);
  border-color: #fff;
  box-shadow: 0 20px 50px rgba(0, 48, 91, 0.15);
}

/* Definition Card (Main) */
.major-wrap .bg-brand {
  background: linear-gradient(135deg, var(--uos-blue) 0%, #004a8d 100%);
  color: #fff;
}

.major-wrap .bg-brand .item-title {
  color: #fff;
  opacity: 0.95;
}

.major-wrap .bg-brand .item-title.part-01 {
  font-size: 2rem;
  color: #fff;
}

.major-wrap .bg-brand .item-text {
  opacity: 0.95;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.major-wrap .bg-brand .item-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #FFD43B;
}

.major-wrap .bg-brand .item-icon.part-01 {
  background: rgba(255, 255, 255, 0.2);
  color: #FFD43B;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.major-wrap .bg-brand:hover {
  box-shadow: 0 20px 50px rgba(0, 48, 91, 0.4);
}

/* --- New Impact Card Styles --- */
.major-wrap .impact-card {
  background: #fff;
  /* Solid white for better readability of impact elements */
  justify-content: space-between;border:1px solid #ddd;
}

.major-wrap .impact-card.style1 {
  background: linear-gradient(135deg, #fff 0%, #f1f8ff 100%);
}

.major-wrap .impact-bg-text {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 48, 91, 0.05);
  line-height: 1;
  pointer-events: none;
  font-family: 'Pretendard', sans-serif;
  z-index: 0;
  transition: all 0.3s ease;
}

.major-wrap .impact-card:hover .impact-bg-text {
  color: rgba(0, 48, 91, 0.1);
  transform: scale(1.1) rotate(-5deg);
}

.major-wrap .impact-content {
  position: relative;
  z-index: 1;
}

.major-wrap .impact-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.major-wrap .impact-bg-text.style2 {
  color: rgba(0, 48, 91, 0.03);
}

.major-wrap .impact-icon-box {
  width: 50px;
  height: 50px;
  background: var(--uos-blue);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 48, 91, 0.2);
}

.major-wrap .impact-icon-box.bg-01 {
  background: #22b8cf;
}

.major-wrap .impact-icon-box.bg-02 {
  background: #51cf66;
}

.major-wrap .impact-icon-box.bg-03 {
  background: #fcc419;
}

.major-wrap .impact-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  padding-top: 5px;
}

.major-wrap .impact-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.major-wrap .highlight-box {
  background: #f8f9fa;
  border-left: 4px solid var(--uos-blue);
  padding: 15px;
  margin-top: 20px;
  border-radius: 0 8px 8px 0;
}

/* Specific Impact Designs */
.major-wrap .card-qualify .impact-bg-text {
  right: auto;
  left: -10px;
  top: auto;
  bottom: -30px;
  font-size: 10rem;
}

.major-wrap .big-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--uos-blue);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.major-wrap .big-number span {
  font-size: 2rem;
  font-weight: 500;
}

.major-wrap .tag-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  background: #eff6ff;
  color: var(--uos-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 5px;
}

/* Grid Spans */
.major-wrap .span-12 {
  grid-column: span 12;
}

.major-wrap .span-7 {
  grid-column: span 7;
}

.major-wrap .span-6 {
  grid-column: span 6;
}

.major-wrap .span-5 {
  grid-column: span 5;
}

.major-wrap .span-4 {
  grid-column: span 4;
}

/* Animations */
@keyframes floatMascot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.major-wrap .fade-in {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive */
@media (max-width: 991px) {
  .major-wrap .main-title {
    font-size: 2.2rem;
  }

  .major-wrap .bento-grid {
    display: flex;
    flex-direction: column;
  }

  .major-wrap .bento-item {
    padding: 30px;
  }

  .major-wrap .mascot-wrap {
    width: 140px;
  }

  .major-wrap .impact-bg-text {
    opacity: 0.3;
  }
}

.major-wrap .stxt {
  font-size: 1.15rem;
  color: #444;
}

.major-wrap .part-bg-01 {
  font-size: 12rem;
  opacity: 0.15;
  transform: rotate(15deg);
  color: #fff;
}

.major-wrap .text-danger {
  color: #b20000 !important
}


.under-line {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #ff933b;
}


/******** 전공소개 **************************************/

/* Scoped Variables for .dept-wrap */
.dept-wrap {
  --uos-blue: #00305b;
  --uos-blue-soft: #e3f2fd;
  --uos-gold: #FFD43B;
  --text-primary: #111;
  --text-secondary: #555;
  --bg-page: #f8f9fa;
  --card-radius: 20px;
  /* College Colors (Pastel & Bright) */
  --col-human: #FF8A80;
  /* 인문 - Warm Red */
  --col-biz: #FFB74D;
  /* 경영 - Orange */
  --col-pub: #4DB6AC;
  /* 정경 - Teal */
  --col-nat: #4FC3F7;
  /* 자연 - Light Blue */
  --col-eng: #5C6BC0;
  /* 공학 - Indigo */
  --col-urb: #9CCC65;
  /* 도시 - Green */
  --col-ai: #7E57C2;
  /* AI - Purple */
}

/* 1. Base Setup */
.dept-wrap {
  color: var(--text-primary);
  /*background-color: var(--bg-page);*/
  word-break: keep-all;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* 2. Hero Section (Casual & Fun) */
.dept-wrap .page-header {
  padding: 60px 0 10px;
  text-align: center;
  background: #fff;
  position: relative;
  border-bottom: 0px solid #eee;
}

/* Decorative blobs for fun vibe */
.dept-wrap .deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.6;
}

.dept-wrap .blob-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 212, 59, 0.2);
  top: -100px;
  right: -50px;
}

.dept-wrap .blob-2 {
  width: 250px;
  height: 250px;
  background: rgba(77, 182, 172, 0.2);
  bottom: -50px;
  left: -50px;
}

.dept-wrap .header-content {
  position: relative;
  z-index: 1;
}

.dept-wrap .sub-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--uos-blue-soft);
  color: var(--uos-blue);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.dept-wrap .main-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.dept-wrap .main-title span {
  color: var(--uos-blue);
  position: relative;
  display: inline-block;
}

.dept-wrap .main-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 212, 59, 0.4);
  z-index: -1;
  transform: rotate(-2deg);
}

.dept-wrap .main-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* 3. College Grid Section */
.dept-wrap .dept-container {
  padding: 60px 0 100px;
  position: relative;
}

.dept-wrap .college-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.dept-wrap .college-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Top Border Line for categorization */
.dept-wrap .college-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

/* Header in Card */
.dept-wrap .card-header-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dashed #f1f3f5;
}

.dept-wrap .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* College Link Styling */
.dept-wrap .college-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
  display: block;
}

.dept-wrap .college-link:hover .college-name {
  color: var(--uos-blue);
}

.dept-wrap .college-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #333;
  transition: color 0.2s;
}

.dept-wrap .college-eng {
  display: block;
  font-size: 0.8rem;
  color: #999;
  font-weight: 500;
  margin-top: 2px;
}

/* Department List */
.dept-wrap .dept-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dept-wrap .dept-item {
  /* Now handled by the link inside, but kept for layout structure */
  display: inline-block;
}

/* Link Styling for Dept Items */
.dept-wrap .dept-link {
  display: inline-flex;
  align-items: center;
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
  text-decoration: none;
}

.dept-wrap .dept-link i {
  font-size: 0.75rem;
  margin-left: 6px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-5px);
}

.dept-wrap .dept-link:hover {
  background: #fff;
  border-color: currentColor;
  transform: translateY(-2px);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dept-wrap .dept-link:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Color Variations */
.dept-wrap .type-human::before {
  background: var(--col-human);
}

.dept-wrap .type-human .icon-box {
  background: var(--col-human);
}

.dept-wrap .type-human .dept-link:hover {
  color: var(--col-human);
  border-color: var(--col-human);
}

.dept-wrap .type-biz::before {
  background: var(--col-biz);
}

.dept-wrap .type-biz .icon-box {
  background: var(--col-biz);
}

.dept-wrap .type-biz .dept-link:hover {
  color: var(--col-biz);
  border-color: var(--col-biz);
}

.dept-wrap .type-pub::before {
  background: var(--col-pub);
}

.dept-wrap .type-pub .icon-box {
  background: var(--col-pub);
}

.dept-wrap .type-pub .dept-link:hover {
  color: var(--col-pub);
  border-color: var(--col-pub);
}

.dept-wrap .type-nat::before {
  background: var(--col-nat);
}

.dept-wrap .type-nat .icon-box {
  background: var(--col-nat);
}

.dept-wrap .type-nat .dept-link:hover {
  color: var(--col-nat);
  border-color: var(--col-nat);
}

.dept-wrap .type-eng::before {
  background: var(--col-eng);
}

.dept-wrap .type-eng .icon-box {
  background: var(--col-eng);
}

.dept-wrap .type-eng .dept-link:hover {
  color: var(--col-eng);
  border-color: var(--col-eng);
}

.dept-wrap .type-urb::before {
  background: var(--col-urb);
}

.dept-wrap .type-urb .icon-box {
  background: var(--col-urb);
}

.dept-wrap .type-urb .dept-link:hover {
  color: var(--col-urb);
  border-color: var(--col-urb);
}

.dept-wrap .type-ai::before {
  background: var(--col-ai);
}

.dept-wrap .type-ai .icon-box {
  background: var(--col-ai);
}

.dept-wrap .type-ai .dept-link:hover {
  color: var(--col-ai);
  border-color: var(--col-ai);
}

/* 4. Bottom Info Box */
.dept-wrap .info-note-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-top: 50px;
  border-left: 5px solid var(--uos-blue);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
}

.dept-wrap .note-icon {
  font-size: 2rem;
  color: var(--uos-blue);
}

.dept-wrap .note-text {
  font-size: 1rem;
  color: #444;
}

/* Animation */
.dept-wrap .fade-up {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive */
@media (max-width: 768px) {
  .dept-wrap .main-title {
    font-size: 2rem;
  }

  .dept-wrap .college-card {
    padding: 25px;
  }

  .dept-wrap .info-note-box {
    flex-direction: column;
    text-align: center;
  }
}

  .dept-wrap.bg-peach {
  background-color: #FF8A80 !important;
}

  .dept-wrap.bg-indigo {
  background-color: #5C6BC0 !important;
}

  .dept-wrap.bg-lgreen {
  background-color: #9CCC65 !important;
}


/******** 전공자율선택제 **************************************/

/* 전공소개 */
.intro-major {
  --uos-blue: #00305b;
  --text-main: #222;
  --text-eng: #888;
  --card-bg: #fff;
  --card-border: #f0f0f0;
  --card-radius: 16px;
  --bg-page: #ffffff;
  --tag-bg: rgba(0, 48, 91, 0.9);
}

/* Base Setup */
.intro-major {
  color: var(--text-main);
  background-color: var(--bg-page);
  word-break: keep-all;
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 20px;
}

/* 1. Filter Tabs (Sticky & Mobile Optimized) */
.intro-major .filter-container {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 0;
  padding: 15px 0;
  border-bottom: 1px solid #f1f1f1;
}

.intro-major .filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 15px;
}

.intro-major .filter-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.intro-major .filter-btn:hover {
  background: #f8f9fa;
  color: var(--uos-blue);
  border-color: var(--uos-blue);
}

.intro-major .filter-btn.active {
  background: var(--uos-blue);
  color: #fff;
  border-color: var(--uos-blue);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 48, 91, 0.15);
}

/* 2. Gallery Grid */
.intro-major .gallery-container {
  padding-top: 40px;
  padding-bottom: 100px;
}

.intro-major .card-wrapper {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.intro-major .major-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.intro-major .major-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Thumbnail Area */
.intro-major .card-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  background-color: #eee;
}

.intro-major .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-major .major-card:hover .card-thumb img {
  transform: scale(1.05);
}

/* College Badge */
.intro-major .college-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--tag-bg);
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Custom Tag Colors */
.intro-major .tag-human {
  background: #FF8A80;
}

.intro-major .tag-biz {
  background: #FFB74D;
}

.intro-major .tag-eng {
  background: #5C6BC0;
}

.intro-major .tag-nat {
  background: #4FC3F7;
}

.intro-major .tag-urb {
  background: #9CCC65;
}

.intro-major .tag-ai {
  background: #7E57C2;
}

.intro-major .tag-pub {
  background: #26A69A;
}

/* Content Body */
.intro-major .card-body {
  padding:20px 24px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; 제거: 상단 정렬 위함 */
}

.intro-major .major-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.intro-major .major-eng {
  font-size: 0.8rem;
  color: var(--text-eng);
  font-weight: 400;

  letter-spacing: 0.02em;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Action Icons Footer */
.intro-major .card-footer {
  padding: 16px 24px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-top removed for cleaner look like reference */
}

.intro-major .action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* 완전 원형 */
  color: #ccc;
  font-size: 1.1rem;
  transition: all 0.2s;
  background: #fff;
  text-decoration: none;
  position: relative;
  border: 1px solid transparent;
}

.intro-major .action-btn:hover {
  color: var(--uos-blue);
  background: #f5f7fa;
  transform: translateY(-2px);
}

/* Tooltip */
.intro-major .action-btn::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
  margin-bottom: 8px;
  z-index: 10;
}

.intro-major .action-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

/* Utilities */
.intro-major .fade-up {
  opacity: 0;
  transform: translateY(20px);
}

/*.intro-major .d-none {
  display: none !important;
}
*/
/* Responsive */
@media (max-width: 991px) {
  .intro-major .filter-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .intro-major .filter-nav::-webkit-scrollbar {
    display: none;
  }

  .intro-major .filter-btn {
    flex: 0 0 auto;
  }

  .intro-major .filter-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 1));
    pointer-events: none;
  }
}



/******** 전공선택요건 **************************************/

  /* Scoped Variables */
  .select-major {
    --uos-blue: #00305b;
    --uos-blue-dark: #001a33;
    --uos-blue-light: #eef4fb;
    --uos-gold: #a68966;
    --text-main: #222;
    --text-sub: #555;
    --border-color: #ddd;
    --table-header-bg: #f8f9fa;
    --bg-page: #ffffff;
  }

  /* Base Setup */
  .select-major {
    font-family: 'Pretendard', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-page);
    word-break: keep-all;
    line-height: 1.6;
    padding-bottom: 100px;
  }

  .select-major .top-notice {
    display: inline-flex;
    align-items: center;
    background-color: #fff8f0; /* Soft Warning/Info Background */
    border: 1px solid rgba(166, 137, 102, 0.3); /* UOS Gold Border */
    color: #5a4a42;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    max-width: 90%;
    text-align: left;
  }

  .select-major .top-notice i {
    color: var(--uos-gold);
    font-size: 1.1rem;
    margin-right: 10px;
    flex-shrink: 0;
  }


  .select-major .year-tab-container {
    margin-bottom: 30px;
  }

  .select-major .year-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--uos-blue);
    gap: 5px;
  }

  .select-major .year-btn {
    background: #f1f3f5;
    color: #888;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    top: 1px;
    min-width: 180px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .select-major .year-btn:hover {
    background: #e9ecef;
    color: var(--uos-blue);
  }

  .select-major .year-btn.active {
    background: var(--uos-blue);
    color: #fff;
    border-color: var(--uos-blue);
  }

  .select-major .year-btn i {
    margin-right: 8px;
  }

  /* 3. Level 2 Tab: College Selection (Styled as Pills) */
  .select-major .college-tab-wrapper {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
  }

  /* Override Bootstrap Nav Pills */
  .select-major .nav-pills {
    justify-content: center;
    gap: 10px;
  }

  .select-major .nav-pills .nav-link {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-sub);
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  }

  .select-major .nav-pills .nav-link:hover {
    border-color: var(--uos-blue);
    color: var(--uos-blue);
    transform: translateY(-2px);
  }

  .select-major .nav-pills .nav-link.active {
    background: var(--uos-blue);
    color: #fff;
    border-color: var(--uos-blue);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 48, 91, 0.2);
  }

  /* 4. Content Section */
  .select-major .content-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-left: 5px solid var(--uos-blue);
    padding-left: 15px;
  }

  .select-major .content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uos-blue);
    margin: 0;
  }

  /* Table Styling */
  .select-major .table-container {
    overflow-x: auto;
    border-top: 2px solid var(--uos-blue);
    border-bottom: 1px solid #ddd;
    background: #fff;
  }

  .select-major .req-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
  }

  .select-major .req-table th,
  .select-major .req-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
  }

  .select-major .req-table th {
    background-color: var(--table-header-bg);
    color: var(--text-main);
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    font-size: 1.05rem;
  }

  .select-major .req-table td {
    color: var(--text-sub);
    font-size: 0.95rem;
  }

  .select-major .col-major {
    width: 20%;
    text-align: center;
    font-weight: 700;
    color: var(--text-main);
    background: #fff;
  }

  .select-major .col-req {
    width: 60%;
    text-align: left;
    line-height: 1.7;
  }

  .select-major .col-screen {
    width: 20%;
    text-align: center;
  }

  /* Status Badges */
  .select-major .status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  .select-major .status-none {
    background-color: #f1f3f5;
    color: #868e96;
  }

  .select-major .status-interview {
    background-color: #e3f2fd;
    color: #1976d2;
  }

  .select-major .status-exam {
    background-color: #fff3e0;
    color: #f57c00;
  }

  /* Lists */
  .select-major .req-list {
    padding-left: 20px;
    margin: 0;
  }

  .select-major .req-list li {
    margin-bottom: 4px;
  }

  .select-major .h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--uos-blue);
    margin-bottom: 5px;
  }

  /* Footer Note */
  .select-major .footer-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .select-major .fade-up {
    opacity: 0;
    transform: translateY(20px);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .select-major .year-btn {
      min-width: auto;
      padding: 12px 20px;
      font-size: 1rem;
      flex: 1;
    }

    .select-major .nav-pills {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding: 0 15px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .select-major .nav-pills::-webkit-scrollbar {
      display: none;
    }

    .select-major .nav-pills .nav-link {
      white-space: nowrap;
      flex: 0 0 auto;
    }
    .select-major .top-notice { font-size: 0.9rem; padding: 12px; border-radius: 12px; }
  }




  /******** 로드맵 **************************************/
.edu-roadmap {
  /* Brand Colors (UOS Blue Gradients) */
  --uos-blue-start: #00305b;
  --uos-blue-end: #003cbf;
  --uos-bg-soft: #F0F7FF;
  /* Category Theme Colors */
  --theme-ess-dark: #003cbf;
  --theme-ess-light: #EFF6FF;
  --theme-ext-dark: #059669;
  --theme-ext-light: #ECFDF5;
  --theme-fin-dark: #D97706;
  --theme-fin-light: #FFFBEB;
  /* Typography & Layout */
  --uos-blue: #00305b;
  --text-primary: #00305b;
  --text-secondary: #64748B;
  --bg-body: #fcfcfc;
  --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Noto Sans KR', sans-serif;
  /* Shadows & Depth */
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --shadow-icon: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

/* Reset for the component */
.edu-roadmap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root Wrapper Style */
.edu-roadmap {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  /* Changed to column to stack sections */
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  /* Prevent scroll on animation start */
}

/* Fix: Global body overflow prevention */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Prevents scrollbar from drop-shadows/animations */
}

/* =========================================
      2. Layout & Scoped CSS
      ========================================= */
/* Container Namespace */
.edu-roadmap .container {
  width: 100%;
  max-width: 1400px;
  position: relative;
}

/* Header */
.edu-roadmap .header {
  text-align: center;
  margin-bottom:30px;
  /* GSAP will handle opacity */
  visibility: hidden;
}

.edu-roadmap .main-title {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--uos-blue-start), var(--uos-blue-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.edu-roadmap .sub-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 500;
}

.edu-roadmap .legend {
  display: inline-flex;
  gap: 24px;
  background: white;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
}

.edu-roadmap .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

.edu-roadmap .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Process Bar (Step Arrow) */
.edu-roadmap .process-bar {
  display: flex;
  width: 95%;
  /* Reduced width to reveal arrow tip */
  max-width: 1280px;
  /* Slight constraint */
  margin: 0 auto 50px auto;
  /* Centered */
  filter: drop-shadow(0 10px 20px rgba(0, 64, 148, 0.1));
}

.edu-roadmap .step {
  flex: 1;
  position: relative;
  background: white;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  margin-right: -24px;
  z-index: 1;
  /* Arrow Shape */
  clip-path: polygon(0% 0%,
      calc(100% - 30px) 0%,
      100% 50%,
      calc(100% - 30px) 100%,
      0% 100%,
      30px 50%);
  transition: transform 0.3s ease;
  visibility: hidden;
  /* GSAP will show this */
}

.edu-roadmap .step:nth-child(1) {
  z-index: 4;
}

.edu-roadmap .step:nth-child(2) {
  z-index: 3;
}

.edu-roadmap .step:nth-child(3) {
  z-index: 2;
}

.edu-roadmap .step:nth-child(4) {
  z-index: 1;
}

.edu-roadmap .step:first-child {
  /* Flat Start */
  clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%);
  padding-left: 20px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.edu-roadmap .step:last-child {
  padding-right: 50px;
  margin-right: 0;
  /* No border-radius here to emphasize the clip-path arrow shape */
}

.edu-roadmap .step.active {
  background: linear-gradient(135deg, var(--uos-blue-start) 0%, var(--uos-blue-end) 100%);
}

.edu-roadmap .step:not(.active) {
  background: #FFFFFF;
}

.edu-roadmap .step:not(.active) .step-label {
  color: var(--text-secondary);
  opacity: 0.8;
}

.edu-roadmap .step:not(.active) .step-date {
  color: var(--text-primary);
}

.edu-roadmap .step-label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.edu-roadmap .step-date {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

/* Card Grid */
.edu-roadmap .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  /* Added Size Constraints to match Process Bar */
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
}

.edu-roadmap .column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card Component */
.edu-roadmap .card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  visibility: hidden;
  /* GSAP handle */
}

.edu-roadmap .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.edu-roadmap .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Themes */
.edu-roadmap .card.essential::before {
  background: var(--theme-ess-dark);
}

.edu-roadmap .card.essential:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.edu-roadmap .card.extra::before {
  background: var(--theme-ext-dark);
}

.edu-roadmap .card.extra:hover {
  border-color: rgba(5, 150, 105, 0.3);
}

.edu-roadmap .card.final::before {
  background: var(--theme-fin-dark);
}

.edu-roadmap .card.final:hover {
  border-color: rgba(217, 119, 6, 0.3);
}

/* Icon */
.edu-roadmap .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-icon);
}

.edu-roadmap .icon-box svg {
  width: 32px;
  height: 32px;
  z-index: 2;
}

.edu-roadmap .card.essential .icon-box {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.edu-roadmap .card.extra .icon-box {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
}

.edu-roadmap .card.final .icon-box {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}

/* Badge */
.edu-roadmap .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.edu-roadmap .card.essential .badge {
  background: var(--theme-ess-light);
  color: var(--theme-ess-dark);
}

.edu-roadmap .card.extra .badge {
  background: var(--theme-ext-light);
  color: var(--theme-ext-dark);
}

.edu-roadmap .card.final .badge {
  background: var(--theme-fin-light);
  color: var(--theme-fin-dark);
}

.edu-roadmap .card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.edu-roadmap .card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.edu-roadmap .card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.6;
  word-break: keep-all;
}

/* =========================================
      4. NEW SECTION: 4-Step Framework (ELASTIC ACCORDION)
      ========================================= */
.edu-framework {
  width: 100%;
  max-width: 1400px;
  margin-top: 100px;
  padding: 60px 0 80px 0;
  opacity: 0;
  /* GSAP Handle */
  transform: translateY(30px);
  border-top: 1px dotted #aaa;
}

.edu-framework .fw-header {
  text-align: center;
  margin-bottom: 50px;
}

.edu-framework .fw-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.edu-framework .fw-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Accordion Container */
.edu-framework .fw-accordion {
  display: flex;
  width: 95%;
  max-width: 1280px;
  height: 450px;
  margin: 0 auto 40px auto;
  gap: 12px;
}

/* Individual Panel */
.edu-framework .fw-panel {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Gradient Overlay */
.edu-framework .fw-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

/* Active/Hover State */
.edu-framework .fw-panel:hover {
  flex: 3.5;
  /* Grow wide */
}

.edu-framework .fw-panel:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);
}

/* Panel Content */
.edu-framework .fw-content {
  position: relative;
  z-index: 2;
  color: white;
  transition: all 0.4s ease;
}

/* Icon Container (Floating) */
.edu-framework .fw-icon-float {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.edu-framework .fw-icon-float svg {
  width: 28px;
  height: 28px;
  color: white;
}

.edu-framework .fw-panel:hover .fw-icon-float {
  transform: translateY(-10px) scale(1.1) rotate(5deg);
  background: white;
}

.edu-framework .fw-panel:hover .fw-icon-float svg {
  color: var(--uos-blue-end);
}

/* Badge */
.edu-framework .fw-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--uos-blue-end);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.edu-framework .fw-panel-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  white-space: nowrap;
  transition: font-size 0.3s ease;color:#fff;
}

.edu-framework .fw-panel:hover .fw-panel-title {
  font-size: 28px;
  /* Bigger on expand */
}

.edu-framework .fw-panel-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.edu-framework .fw-panel:hover .fw-panel-desc {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

/* Flow Bars (Deepening Layers) */
.edu-framework .fw-flow-container {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.edu-framework .fw-flow-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.edu-framework .fw-flow-label {
  width: 80px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: right;
  margin-right: 20px;
}

.edu-framework .fw-flow-track {
  flex: 1;
  height: 10px;
  background: #E2E8F0;
  border-radius: 5px;
  position: relative;
  overflow: visible;
  /* Changed to visible for timeline axis */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edu-framework .fw-flow-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  opacity: 0;
  /* GSAP */
  z-index: 1;
}

/* Timeline Axis Label Style */
.edu-framework .fw-timeline-axis-label {
  font-size: 11px;
  color: #94A3B8;
  font-weight: 600;
  position: relative;
  z-index: 2;
  /* On top of fill */
}

.edu-framework .fw-timeline-axis-center {
  font-size: 11px;
  font-weight: 700;
  color: #3B82F6;
  background: #EFF6FF;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px dashed #BFDBFE;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5px;
  white-space: nowrap;
  z-index: 2;
}

/* Gradients for Flow */
.edu-framework .fw-flow-fill.info {
  left: 0%;
  width: 45%;
  background: linear-gradient(90deg, #60A5FA, #3B82F6);
}

.edu-framework .fw-flow-fill.exp {
  left: 25%;
  width: 40%;
  background: linear-gradient(90deg, #34D399, #10B981);
}

.edu-framework .fw-flow-fill.rel {
  left: 60%;
  width: 40%;
  background: linear-gradient(90deg, #FBBF24, #F59E0B);
}

/* =========================================
      5. Responsive Styles
      ========================================= */
@media (max-width: 1024px) {

  /* Roadmap Mobile */
  .edu-roadmap .process-bar {
    display: none;
  }

  .edu-roadmap .grid-wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    gap: 50px;
    width: 100%;
  }

  .edu-roadmap .grid-wrapper::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: #E2E8F0;
    border-radius: 3px;
  }

  .edu-roadmap .mobile-marker {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    left: -48px;
    top: -35px;
    z-index: 10;
    visibility: hidden;
  }

  .edu-roadmap .marker-dot {
    width: 24px;
    height: 24px;
    background: var(--uos-blue-end);
    border: 4px solid #F8FAFC;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--uos-blue-end);
  }

  .edu-roadmap .mobile-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--uos-blue-end);
  }

  .edu-roadmap .column {
    position: relative;
    margin-top: 20px;
  }

  /* Framework Mobile */
  .edu-framework .fw-accordion {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }

  .edu-framework .fw-panel {
    height: 200px;
    flex: none;
    width: 100%;
  }

  .edu-framework .fw-panel:hover {
    flex: none;
    /* Disable expand on mobile */
  }

  .edu-framework .fw-panel-desc {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
    /* Always show */
  }

  .edu-framework .fw-flow-container {
    display: none;
  }

  /* Hide complex flow bars on mobile */
}

.edu-roadmap .mobile-marker {
  display: none;
}

@media (max-width: 1024px) {
  .edu-roadmap .mobile-marker {
    display: flex;
  }
}


/******** 비교과소개 **************************************/

.extracurricular-wrap {
  /* Brand Colors */
  --uos-blue: #00305b;
  --uos-gold: #a68966;
  --uos-gold-light: #f9f6f0;
  /* Text & Backgrounds */
  --text-dark: #1a1a1a;
  --text-main: #333333;
  --text-sub: #666666;
  --border-color: #e2e6ea;
  --bg-white: #ffffff;
  --bg-offwhite: #fafbfc;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  box-sizing: border-box;
}

.extracurricular-wrap *,
.extracurricular-wrap *::before,
.extracurricular-wrap *::after {
  box-sizing: inherit;
}

.extracurricular-wrap .font-mont {
  font-family: 'Montserrat', sans-serif;
}

.extracurricular-wrap .font-serif {
  font-family: 'Gowun Batang', serif;
}

.extracurricular-wrap .text-gold {
  color: var(--uos-gold);
}

.extracurricular-wrap .text-blue {
  color: var(--uos-blue);
}

.extracurricular-wrap h1,
.extracurricular-wrap h2,
.extracurricular-wrap h3,
.extracurricular-wrap h4,
.extracurricular-wrap h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* SVG Icons Custom Style */
.extracurricular-wrap .svg-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.extracurricular-wrap .gsap-init-hidden {
  visibility: hidden;
  opacity: 0;
}

/* =========================================
      1. Top Hero Section
      ========================================= */
.extracurricular-wrap .hero-sec {
  background-color: transparent;
  padding: 100px 0 100px;
  text-align: center;
}

.extracurricular-wrap .hero-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--uos-gold);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.extracurricular-wrap .hero-title {
  font-size: 2.8rem;
  letter-spacing: -0.03rem;
  color: var(--uos-blue);
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: 'Gowun Batang', serif;
  font-weight: 700;
}

.extracurricular-wrap .hero-content-box {
  /*max-width: 800px;*/
  margin: 0 auto;
  text-align: center;
}

.extracurricular-wrap .hero-text {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
}

.extracurricular-wrap .hero-highlight {
  font-size: 1.25rem;
  color: var(--uos-blue);
  font-weight: 600;
  background: var(--uos-gold-light);
  padding: 40px 40px;
  border-radius: 16px;
  margin-top: 50px;
  border-top: 4px solid var(--uos-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Hero Infographic Flow */
.extracurricular-wrap .hero-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  color: var(--uos-blue);
  font-weight: 700;
  font-size: 1.25rem;
  flex-wrap: wrap;
}

.extracurricular-wrap .hero-flow .flow-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.extracurricular-wrap .hero-flow .flow-item i {
  color: var(--uos-gold);
  font-size: 1.1rem;
}

.extracurricular-wrap .hero-flow .flow-arrow {
  color: rgba(166, 137, 102, 0.6);
  font-size: 1rem;
}

/* =========================================
      2. Differentiators (Horizontal Row Layout)
      ========================================= */
.extracurricular-wrap .diff-sec {
  position: relative;
  padding: 80px 0;
  background: url('/_skin/kor/images/site/extracurricular-bg1.jpg') center/cover fixed;
}

.extracurricular-wrap .diff-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.extracurricular-wrap .diff-container {
  position: relative;
  z-index: 2;

}

.extracurricular-wrap .sec-header {
  text-align: center;
  margin-bottom: 70px;
}

.extracurricular-wrap .sec-title {
  font-size: 2.2rem;
  color: var(--uos-blue);
  font-weight: 700;
}

.extracurricular-wrap .diff-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.extracurricular-wrap .diff-row-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 48, 91, 0.04);
  display: flex;
  align-items: stretch;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.extracurricular-wrap .diff-row-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 48, 91, 0.08);
  border-color: rgba(166, 137, 102, 0.3);
}

.extracurricular-wrap .diff-left {
  flex: 0 0 45%;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.extracurricular-wrap .diff-right {
  flex: 1;
  padding-left: 50px;
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.extracurricular-wrap .diff-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--uos-gold);
  margin-bottom: 15px;
  line-height: 1;
}

.extracurricular-wrap .diff-title {
  font-size: 1.65rem;
  color: var(--uos-blue);
  line-height: 1.4;
  font-weight: 600;
}

.extracurricular-wrap .diff-text {
  font-size: 1.125rem;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.7;
}

.extracurricular-wrap .diff-text:last-child {
  margin-bottom: 0;
}

/* Process Flow styling for Diff 1 */
.extracurricular-wrap .diff-process {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.extracurricular-wrap .diff-process span {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 1.125rem;
  color: var(--uos-blue);
  font-weight: 500;
}

.extracurricular-wrap .diff-process i {
  color: var(--uos-gold);
  font-size: 0.9rem;
}

/* Custom Icon List for Diff 2 */
.extracurricular-wrap .custom-icon-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px 0;
  background: var(--bg-offwhite);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.extracurricular-wrap .custom-icon-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
  align-items: center !important;
}

.extracurricular-wrap .custom-icon-list i {
  color: var(--uos-gold);
  font-size: 1.25rem;
  margin-right: 10px;
  margin-top: 2px;
  font-weight: 700;
}

.extracurricular-wrap .diff-highlight-text {
  margin-top: 15px;
  font-weight: 500;
  background: rgba(0, 48, 91, 0.04);
  padding: 20px 25px;
  border-radius: 10px;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* =========================================
      3. Programs Section (Sticky Layout)
      ========================================= */
.extracurricular-wrap .prog-sec {
  padding: 120px 0;
  background-color: var(--bg-offwhite);
}

.extracurricular-wrap .prog-sticky-sidebar {
  position: sticky;
  top: 100px;
  padding-right: 2rem;
}

.extracurricular-wrap .prog-sidebar-title {
  font-family: 'Gowun Batang', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--uos-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.extracurricular-wrap .prog-sidebar-desc {
  font-size: 1.1rem;
  color: var(--text-sub);
  margin-bottom: 3rem;
}

.extracurricular-wrap .v-flow {
  display: flex;
  flex-direction: column;
}

.extracurricular-wrap .v-flow-item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: var(--text-sub);
  margin-bottom: 25px;
  position: relative;
}

.extracurricular-wrap .v-flow-item span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--border-color);
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}

.extracurricular-wrap .v-flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: -25px;
  width: 2px;
  background: var(--border-color);
  z-index: 1;
}

.extracurricular-wrap .v-flow-item.highlight-1 {
  color: var(--uos-blue);
  font-weight: 700;
}

.extracurricular-wrap .v-flow-item.highlight-1 span {
  background: var(--uos-blue);
  color: #fff;
  border-color: var(--uos-blue);
}

.extracurricular-wrap .premium-prog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 48, 91, 0.05);
  margin-bottom: 50px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease;
}

.extracurricular-wrap .premium-prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 48, 91, 0.08);
}

.extracurricular-wrap .card-img-box {
  width: 100%;
  aspect-ratio: 21 / 9;
  position: relative;
  background: #eee;
  overflow: hidden;
}

.extracurricular-wrap .card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.extracurricular-wrap .premium-prog-card:hover .card-img-box img {
  transform: scale(1.03);
}

.extracurricular-wrap .card-text-box {
  padding: 40px;
}

.extracurricular-wrap .prog-card-title {
  font-size: 1.8rem;
  color: var(--uos-blue);
  margin-bottom: 25px;
  font-weight: 700;
}

.extracurricular-wrap .prog-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.extracurricular-wrap .prog-list li {
  position: relative;
  padding-left: 25px;
  margin: 12px 0;
  font-size: 1.1rem;
  color: var(--text-main);
}

.extracurricular-wrap .prog-list li::before {
  content: '✓';
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--uos-gold);
  font-weight: bold;
}

.extracurricular-wrap .prog-quote {
  background: var(--uos-gold-light);
  padding: 25px 30px;
  border-radius: 12px;
  border-left: 4px solid var(--uos-gold);
  font-family: 'Gowun Batang', serif;
  font-size: 1.2rem;
  color: var(--uos-blue);
  font-weight: 700;
}

/* =========================================
      4. Conclusion Section (Image Background)
      ========================================= */
.extracurricular-wrap .conclusion-sec {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background: url('/_skin/kor/images/site/extracurricular-bg2.jpg') top/cover fixed;
}

.extracurricular-wrap .conc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 48, 91, 0.82);
  z-index: 1;
}

.extracurricular-wrap .conc-container {
  position: relative;
  z-index: 2;
  color: white;
}

.extracurricular-wrap .conc-eyebrow {
  font-family: 'Montserrat', sans-serif;
  color: var(--uos-gold);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 25px;
  display: block;
}

.extracurricular-wrap .conc-title {
  font-family: 'Gowun Batang', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.4;
}

.extracurricular-wrap .conc-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  font-weight: 300;
}

/* Conclusion Icons Grid */
.extracurricular-wrap .outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 950px;
  margin: 0 auto 60px;
}

.extracurricular-wrap .outcome-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}

.extracurricular-wrap .outcome-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--uos-gold);
}

/* SVG Icon wrapper for conclusion */
.extracurricular-wrap .outcome-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--uos-gold);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.extracurricular-wrap .outcome-icon svg {
  width: 24px;
  height: 24px;
}

.extracurricular-wrap .outcome-label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.extracurricular-wrap .outcome-value {
  font-family: 'Gowun Batang', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--uos-gold);
}

.extracurricular-wrap .final-cta {
  font-size: 1.6rem;
  font-weight: 400;
}

.extracurricular-wrap .final-cta span {
  font-weight: 700;
  color: var(--uos-gold);
  border-bottom: 2px solid var(--uos-gold);
  padding-bottom: 5px;
}

/* =========================================
      Responsive Layouts
      ========================================= */
@media (max-width: 991px) {
  .extracurricular-wrap .outcome-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .extracurricular-wrap .hero-title {
    font-size: 2.6rem;
  }

  .extracurricular-wrap .custom-icon-list {
    grid-template-columns: 1fr;
  }

  /* Horizontal Diff Card Mobile Adjustment */
  .extracurricular-wrap .diff-row-card {
    flex-direction: column;
    padding: 40px 30px;
  }

  .extracurricular-wrap .diff-left {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .extracurricular-wrap .diff-right {
    padding-left: 0;
    border-left: none;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
  }

  /* Sidebar layout to stacked */
  .extracurricular-wrap .prog-sticky-sidebar {
    position: static;
    margin-bottom: 3rem;
    padding-right: 0;
    text-align: center;
  }

  .extracurricular-wrap .v-flow {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .extracurricular-wrap .v-flow-item {
    margin-bottom: 0;
  }

  .extracurricular-wrap .v-flow-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .extracurricular-wrap .hero-sec {
    padding: 100px 0 60px;
  }

  .extracurricular-wrap .hero-title {
    font-size: 2.2rem;
  }

  .extracurricular-wrap .sec-title,
  .extracurricular-wrap .prog-sidebar-title {
    font-size: 2rem;
  }

  .extracurricular-wrap .conc-title {
    font-size: 1.8rem;
  }

  .extracurricular-wrap .card-text-box {
    padding: 25px;
  }

  .extracurricular-wrap .prog-title {
    font-size: 1.5rem;
  }

  .extracurricular-wrap .hero-highlight {
    padding: 30px 20px;
  }
}

