/* ========================================
   대경대학교 레저파크골프과 스타일시트
   ======================================== */

/* CSS 변수 정의 */
:root {
    --primary: #1a5f3f;
    --primary-dark: #14492f;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --cream: #fcfbf8;
    --background: #ffffff;
    --card: #ffffff;
    --foreground: #1b1b1b;
    --muted-foreground: #6a7e72;
    --border: #dde5df;
    --accent: #d8ebde;
    --secondary: #f9f9f9;
    
    --transition: 0.3s ease;
    --border-radius: 12px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* 리셋 및 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 컨테이너 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 아이콘 */
.icon {
    width: 16px;
    height: 16px;
}

.hide-mobile {
    display: inline;
}

@media (max-width: 640px) {
    .hide-mobile {
        display: none;
    }
}

/* ========================================
   헤더
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.top-bar {
    background: var(--primary);
    color: var(--cream);
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity var(--transition);
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-link .icon {
    width: 14px;
    height: 14px;
}

.navbar {
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: var(--cream);
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.2;
}

.logo-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.425rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-link {
    color: rgba(27, 27, 27, 0.8);
    font-weight: 500;
    font-size: 1.1625rem;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* ========================================
   서브메뉴 - hover gap 버그 수정
   핵심: margin-top 대신 padding-top 사용
   → .nav-item hover 영역이 끊기지 않음
   ======================================== */

.nav-item {
    position: relative;
}

/* 데스크탑: 링크+화살표 감싸는 wrapper */
.nav-link-wrapper {
    display: flex;
    align-items: center;
}

.nav-link-with-dropdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

/* 모바일 토글 버튼 - 데스크탑에서는 숨김 */
.submenu-toggle {
    display: none;
}

/* 서브메뉴 드롭다운 */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    /* ✅ 핵심 수정: margin-top 제거 → padding-top으로 대체
       margin 을 쓰면 nav-item과 submenu 사이에 틈이 생겨
       마우스 이동 중 hover가 끊기는 버그 발생 */
    padding: 0.5rem 0;
    padding-top: 0.75rem; /* 위쪽 여백을 padding으로 확보 */
    margin-top: 0;        /* margin 제거 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 100;
}

/* ✅ 투명 브릿지: nav-item과 submenu 사이 gap을 채워줌 */
.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.75rem; /* submenu padding-top과 동일하게 */
    background: transparent;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .desktop-chevron {
    transform: rotate(180deg);
}

.submenu-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--foreground);
    font-size: 0.9358rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.submenu-item:hover {
    background: var(--accent);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--foreground);
}

/* ========================================
   모바일
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1003;
        position: relative;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 1rem;
        z-index: 1001;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active .nav-link,
    .nav-menu.active .btn-primary {
        width: 100%;
        text-align: left;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }

    .nav-menu.active .btn-primary {
        background: var(--primary);
        color: var(--cream);
        font-weight: 600;
        justify-content: center;
        border: none;
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
    }

    /* 모바일 nav-item */
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    /* 모바일에서는 브릿지 불필요 */
    .nav-item::after {
        display: none;
    }

    .nav-menu.active .nav-item .nav-link {
        border-bottom: none;
    }

    /* nav-link-wrapper: 링크와 화살표 버튼을 양끝 정렬 */
    .nav-item .nav-link-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* 모바일 토글 버튼 표시 */
    .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .submenu-toggle .chevron-icon {
        transition: transform 0.3s ease;
    }

    /* 열렸을 때 화살표 회전 */
    .submenu-toggle.open .chevron-icon {
        transform: rotate(180deg);
    }

    /* 데스크탑용 chevron은 모바일에서 숨김 */
    .desktop-chevron {
        display: none;
    }

    /* 모바일 서브메뉴 - 기본값 숨김 */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding-top: 0;
        margin-left: 1rem;
        padding: 0;
        background: transparent;
        display: none;
    }

    /* 열린 상태 */
    .submenu.open {
        display: block;
        padding-bottom: 0.5rem;
    }

    .submenu-item {
        padding: 0.75rem 1rem;
        font-size: 14px;
        color: var(--muted-foreground);
    }

    .top-bar-content {
        gap: 1rem;
        font-size: 0.75rem;
    }

    /* ✅ 햄버거 아이콘을 X로 변경 */
    .mobile-menu-btn.active svg line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        transform-origin: center;
    }

    .mobile-menu-btn.active svg line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active svg line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        transform-origin: center;
    }

    .mobile-menu-btn svg line {
        transition: all 0.3s ease;
    }
}

/* ========================================
   버튼
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-gold {
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
    box-shadow: var(--shadow-lg);
}

.btn-gold:hover {
    background: var(--gold-dark);
}

.btn-outline {
    border: 1px solid rgba(252, 251, 248, 0.4);
    color: var(--cream);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
}

.btn-outline:hover {
    background: rgba(252, 251, 248, 0.1);
}

.btn-outline-white {
    border: 1px solid rgba(252, 251, 248, 0.4);
    color: var(--cream);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
}

.btn-outline-white:hover {
    background: rgba(252, 251, 248, 0.1);
}

.icon-arrow {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
}

/* ========================================
   히어로 섹션
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 95, 63, 0.85), rgba(20, 73, 47, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    max-width: 48rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.badge .icon {
    color: var(--gold);
}

.badge span {
    color: var(--gold);
    font-size: 1.0625rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: bold;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--gold);
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(252, 251, 248, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.stat {
    text-align: center;
}

@media (min-width: 640px) {
    .stat {
        text-align: left;
    }
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-header {
        justify-content: flex-start;
    }
}

.stat-header .icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.stat-value {
    font-size: clamp(1.5rem, 3vw, 1.985rem);
    font-weight: bold;
    color: var(--cream);
}

.stat-label {
    color: rgba(252, 251, 248, 0.7);
    font-size: 1.0625rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(252, 251, 248, 0.4);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 6px;
    height: 12px;
    background: rgba(252, 251, 248, 0.6);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* 애니메이션 */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   섹션 공통
   ======================================== */

.section {
    padding: 5rem 0;
}

.section-alt {
    background: #fbfbf8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.325rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   학과소개 섹션
   ======================================== */

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 95, 63, 0.3), transparent);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 18rem;
}

@media (max-width: 768px) {
    .about-badge {
        display: none;
    }
}

.badge-number {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.badge-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

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

.feature-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(26, 95, 63, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.5rem;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(26, 95, 63, 0.1);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-title {
    color: var(--foreground);
    font-weight: bold;
    font-size: 1.6025rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
    font-size: 0.9775rem;
    line-height: 1.3;
}

/* ========================================
   교육과정 섹션
   ======================================== */

.curriculum-feature {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 20rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .curriculum-feature {
        height: 20rem;
    }
}

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

.curriculum-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 95, 63, 0.7), rgba(20, 73, 47, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.curriculum-feature-content {
    text-align: center;
    color: var(--cream);
    padding: 1rem;
}

.feature-icon-large {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin: 0 auto 1rem;
}

.curriculum-feature-content h3 {
    font-size: clamp(1.5rem, 3vw, 1.995rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.curriculum-feature-content p {
    color: rgba(252, 251, 248, 0.8);
	font-size:1.0625rem;
}

.curriculum-points {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

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

.curriculum-point {
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    transition: box-shadow var(--transition);
}

.curriculum-point:hover {
    box-shadow: var(--shadow-lg);
}

.point-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.curriculum-point h3 {
    color: var(--foreground);
    font-weight: bold;
    font-size: 1.225rem;
    margin-bottom: 0.25rem;
}

.curriculum-point p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.facilities-box {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 4rem;
}

.facilities-box h3 {
    color: var(--foreground);
    font-weight: bold;
    font-size: 1.6025rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

@media (min-width: 1024px) {
    .facilities-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.facility-item {
    background: #ecf6ef;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border);
    color: var(--foreground);
    font-weight: 500;
    font-size: 1.0225rem;
}

.certificates-box {
    background: var(--primary);
    border-radius: 1rem;
    padding: 2rem;
}

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

.certificates-box h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--cream);
    text-align: center;
    margin-bottom: 0.75rem;
}

.certificates-note {
    color: rgba(252, 251, 248, 0.7);
    text-align: center;
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.certificates-grid {
    display: grid;
    gap: 1rem;
}

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

@media (min-width: 1024px) {
    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.certificate-card {
    background: rgba(252, 251, 248, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(252, 251, 248, 0.2);
}

.certificate-card svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin: 0 auto 0.25rem;
}

.certificate-card h4 {
    color: var(--cream);
    font-weight: bold;
    font-size: 1.225rem;
    margin-bottom: 0.25rem;
}

.certificate-level {
    color: var(--gold);
    font-size: 1.0625rem;
    font-weight: 500;
}

/* ========================================
   교수진 섹션
   ======================================== */

.faculty-grid {
    display: grid;
    gap: 2rem;
}

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

.professor-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    cursor: pointer;
}

.professor-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.professor-image {
    height: 16rem;
    overflow: hidden;
}

.professor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.professor-card:hover .professor-image img {
    transform: scale(1.05);
}

.professor-info {
    padding: 1.5rem;
}

.professor-header {
    text-align: center;
    margin-bottom: 1rem;
}

.professor-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.professor-position {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.professor-specialty {
    margin-bottom: 1rem;
}

.professor-specialty > p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.professor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.professor-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--accent);
    color: var(--foreground);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    margin: 0;
}

.professor-badges .badge svg {
    width: 12px;
    height: 12px;
}

.professor-contact {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.professor-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.professor-contact a:hover {
    color: var(--primary);
}

.professor-contact svg {
    width: 16px;
    height: 16px;
}

.professor-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(102, 102, 102, 0.6);
    margin-top: 1rem;
}

/* ========================================
   입학안내 섹션
   ======================================== */

.admission-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.admission-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.admission-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.admission-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.admission-icon-gold {
    background: rgba(212, 175, 55, 0.2);
}

.admission-icon-gold svg {
    color: var(--gold);
}

.admission-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

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

.admission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(27, 27, 27, 0.8);
	font-size:1.0925rem;
}

.admission-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.325rem;
}

.bullet-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.325rem;
}

.bullet-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.career-box,
.schedule-box,
.contact-box {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}

.career-header,
.schedule-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.career-icon,
.schedule-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-icon svg,
.schedule-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.career-header h3,
.schedule-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
}

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

@media (min-width: 768px) {
    .career-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.career-item {
    background: #ecf6ef;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border);
    color: var(--foreground);
    font-weight: 500;
}

.schedule-grid {
    display: grid;
    gap: 1.5rem;
}

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

.schedule-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(245, 245, 245, 0.5);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.schedule-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.schedule-date {
    color: var(--foreground);
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.schedule-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.contact-box {
    background: var(--primary);
    text-align: center;
    padding: 3rem 2rem;
}

.contact-box h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: bold;
    color: var(--cream);
    margin-bottom: 1rem;
}

.contact-desc {
    color: rgba(252, 251, 248, 0.8);
    margin-bottom: 1.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-numbers {
        flex-direction: row;
    }
}

.contact-number-card {
    background: rgba(252, 251, 248, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(252, 251, 248, 0.2);
}

.contact-label {
    color: rgba(252, 251, 248, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-number {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-number svg {
    width: 16px;
    height: 16px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

/* ========================================
   오시는길 섹션
   ======================================== */

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.map-container {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px;
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: box-shadow var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: rgba(26, 95, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.info-icon-gold {
    background: rgba(212, 175, 55, 0.2);
}

.info-icon-gold svg {
    color: var(--gold);
}

.info-card h3 {
    color: var(--foreground);
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--muted-foreground);
}

.info-card a {
    display: block;
    color: var(--foreground);
    font-weight: 600;
    transition: color var(--transition);
}

.info-card a:hover {
    color: var(--primary);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary) !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.map-link:hover {
    text-decoration: underline;
}

.map-link svg {
    width: 14px;
    height: 14px;
}

.note {
    font-size: 0.875rem;
    color: rgba(102, 102, 102, 0.7);
}

.contact-details-grid {
    display: grid;
    gap: 1.5rem;
}

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

.transport-box {
    background: rgba(245, 245, 245, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.transport-box h3 {
    color: var(--foreground);
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.transport-box p {
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.transport-box p:last-child {
    margin-bottom: 0;
}

.transport-box strong {
    color: var(--foreground);
    font-weight: 600;
}

/* ========================================
   푸터
   ======================================== */

.footer {
    background: #14492f;
    color: var(--cream);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-logo .logo-icon {
    background: rgba(252, 251, 248, 0.1);
}

.footer-logo-title {
    color: var(--cream);
}

.footer-logo-subtitle {
    color: var(--gold);
    font-size: 1.0625rem;
	font-weight:700;
}

.footer-description {
    color: rgba(252, 251, 248, 0.7);
    font-size: 0.9358rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--cream);
    font-weight: bold;
    margin-bottom: 1rem;
	font-size:1.1258rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(252, 251, 248, 0.7);
    font-size: 1.0625rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.contact-type {
    color: rgba(252, 251, 248, 0.5);
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 1.0625rem;
    font-weight: 600;
}

.footer-phone svg {
    width: 16px;
    height: 16px;
}

.footer-phone-alt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(252, 251, 248, 0.7);
    font-size: 1.0625rem;
}

.footer-phone-alt svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(252, 251, 248, 0.7);
    font-size: 1.0625rem;
    padding-top: 0.5rem;
}

.footer-address svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(252, 251, 248, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(252, 251, 248, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(252, 251, 248, 0.5);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--cream);
}

/* ========================================
   반응형 추가 조정
   ======================================== */

@media (max-width: 640px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero {
        padding-top: 10rem;
    }
}

/* ========================================
   서브페이지 헤더
   ======================================== */

.page-header {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .page-header {
        min-height: 400px;
    }
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 95, 63, 0.85), rgba(20, 73, 47, 0.9));
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
	margin:70px 0 20px;
}

.page-header-tag {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.page-header-tag svg {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}

.page-header-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(252, 251, 248, 0.9);
    max-width: 600px;
    margin: 0 auto;
}


    /* ── 하이라이트 배너 ── */
    .highlight-bar {
      background: linear-gradient(to right, rgba(224,244,244,0.5), rgba(245,250,250,0.3));
      padding: 1.75rem 0;
      border-bottom: 1px solid var(--border);
    }

    .highlight-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem;
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 0.875rem;
    }

    .highlight-icon {
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 0.75rem;
      background: rgba(74,177,182,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .highlight-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
    }

    .highlight-label {
      font-weight: 700;
      color: var(--fg);
      font-size: 1.0625rem;
      margin-bottom: 0.15rem;
    }

    .highlight-sub {
      font-size: 0.9375rem;
      color: var(--fg-muted);
    }

    /* ── 입학조건 & 제출서류 ── */
    .adm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .adm-section-title {
      font-size: 2.375rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .adm-title-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.625rem;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .adm-title-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: #fff;
    }

    /* 입학조건 카드 */
    .condition-list {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
    }

    .condition-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.25rem;
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .condition-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .condition-num {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: var(--accent);
      color: var(--primary);
      font-weight: 700;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .condition-body strong {
      display: block;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.1rem;
	  font-size:1.0625rem;
    }

    .condition-body span {
      font-size: 1.0625rem;
      color: var(--fg-muted);
    }

    /* 제출서류 카드 */
    .docs-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .docs-card-bar {
      height: 0.375rem;
      background: linear-gradient(to right, var(--primary), rgba(74,177,182,0.55));
    }

    .docs-card-body {
      padding: 1.75rem;
    }

    .docs-list {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .docs-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .docs-check {
      width: 1.8rem;
      height: 1.8rem;
      border-radius: 50%;
      background: rgba(74,177,182,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .docs-check svg {
      width: 1rem;
      height: 1rem;
      color: var(--primary);
    }

    .docs-item span {
      color: var(--fg);
      line-height: 1.5;
	  font-size:1.0625rem;
    }

    /* ── 전형 일정 ── */
    .steps-wrap {
      max-width: 100%;
      margin: 0 auto;
    }

    /* 데스크탑 스텝 */
    .steps-desktop {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .steps-desktop::before {
      content: '';
      position: absolute;
      top: 2.5rem;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(to right, rgba(74,177,182,0.3), var(--primary), rgba(74,177,182,0.3));
      z-index: 0;
    }

    .step-item {
      text-align: center;
      padding: 0 1rem;
      position: relative;
    }

    .step-icon {
      width: 5rem;
      height: 5rem;
      border-radius: 1rem;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      box-shadow: 0 8px 20px rgba(74,177,182,0.3);
      position: relative;
      z-index: 1;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .step-icon:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 28px rgba(74,177,182,0.4);
    }

    .step-icon svg {
      width: 2rem;
      height: 2rem;
      color: #fff;
    }

    .step-label {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.08em;
      margin-bottom: 0.35rem;
    }

    .step-title {
      font-weight: 700;
      color: var(--fg);
      font-size: 1.375rem;
      margin-bottom: 0.3rem;
    }

    .step-desc {
      font-size: 1.0625rem;
      color: var(--fg-muted);
    }

    /* 모바일 스텝 */
    .steps-mobile {
      display: none;
      flex-direction: column;
      gap: 0.875rem;
    }

    .step-card-mobile {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.25rem;
      box-shadow: var(--shadow-sm);
    }

    .step-icon-sm {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 0.75rem;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(74,177,182,0.25);
    }

    .step-icon-sm svg {
      width: 1.5rem;
      height: 1.5rem;
      color: #fff;
    }

    /* ── 등록금 & 장학혜택 ── */
    .scholarship-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    .scholarship-card {
      background: #fff;
      border: 1px solid rgba(74,177,182,0.25);
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--transition);
    }

    .scholarship-card:hover {
      box-shadow: var(--shadow-md);
    }

    .scholarship-card-bar {
      height: 0.375rem;
      background: linear-gradient(to right, #f6b93b, var(--primary), #1abc9c);
    }

    .scholarship-card-inner {
      padding: 2.25rem 2.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .scholarship-icon {
      width: 4rem;
      height: 4rem;
      border-radius: 1rem;
      background: linear-gradient(135deg, #f6b93b 0%, #f0a11a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(246,185,59,0.35);
    }

    .scholarship-icon svg {
      width: 2rem;
      height: 2rem;
      color: #fff;
    }

    .scholarship-content h3 {
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 1rem;
    }

    .scholarship-highlight {
      background: rgba(74,177,182,0.08);
      border: 1px solid var(--border);
      border-radius: 0.625rem;
      padding: 1.1rem 1.25rem;
    }

    .scholarship-highlight p:first-child {
      font-size: 1.625rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .scholarship-highlight p:last-child {
      font-size: 1.0625rem;
      color: var(--fg-muted);
      line-height: 1.7;
    }



/* =============================================
	 about.css — 학과개요 서브페이지 전용 스타일
	 ============================================= */

.sub-hero {
	position: relative;
	padding: 4.5rem 0 3.5rem;
	background: url('/img/img00.jpg') center 30% / cover no-repeat;
    min-height: 300px;
    padding-top: 8rem;
    padding-bottom: 4rem;
    margin-bottom: 0;
}

.sub-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(26, 95, 63, 0.85), rgba(20, 73, 47, 0.9));
}
	
.sub-hero-content {
	position: relative;
	z-index: 10;
}

/* 브레드크럼 */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1.25rem;
	font-size: 0.925rem;
	color: rgba(255,255,255,0.8);
}

.breadcrumb a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color var(--transition);
}

.breadcrumb a:hover {
	color: #fff;
}

.breadcrumb svg {
	width: 0.9rem;
	height: 0.9rem;
	flex-shrink: 0;
}

.breadcrumb .current {
	color: #fff;
	font-weight: 600;
}

.sub-hero-title {
	font-size: 3.625rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.sub-hero-desc {
	font-size: 1.625rem;
	color: rgba(255,255,255,0.85);
}

/* =============================================
	 서브 탭 네비게이션
	 ============================================= */
.sub-tab-nav {
	background: #fff;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: var(--header-height);
	z-index: 40;
}

.sub-tabs {
	display: flex;
	gap: 0;
	list-style: none;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.sub-tabs::-webkit-scrollbar {
	display: none;
}

.sub-tabs li a {
	display: block;
	padding: 1rem 1.5rem;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--fg-muted);
	white-space: nowrap;
	border-bottom: 2.5px solid transparent;
	transition: color var(--transition), border-color var(--transition);
	text-decoration: none;
}

.sub-tabs li a:hover {
	color: var(--primary);
}

.sub-tabs li a.active {
	color: var(--primary);
	font-weight: 700;
	border-bottom-color: var(--primary);
}

/* =============================================
	 반응형
	 ============================================= */
@media (max-width: 768px) {
	.sub-hero {
		padding: 3rem 0 2.5rem;
	}

	.sub-hero-title {
		font-size: 2rem;
	}

	.sub-hero-desc {
		font-size: 1rem;
	}

	.sub-tabs li a {
		padding: 0.875rem 1rem;
		font-size: 0.875rem;
	}

	.info-cards {
		grid-template-columns: 1fr;
	}

	.goal-item {
		padding: 1.25rem 1.25rem;
	}

	.goal-item:hover {
		transform: none;
	}

	.vision-quote {
		font-size: 1.2rem;
	}

	.greeting-quote {
		font-size: 1.4rem;
	}

	.greeting-body p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.sub-hero-title {
		font-size: 1.75rem;
	}

	.breadcrumb {
		font-size: 0.78rem;
	}

	.goal-item {
		gap: 1rem;
	}

	.goal-num {
		width: 2.1rem;
		height: 2.1rem;
		font-size: 0.8rem;
	}

	.greeting-icon {
		width: 4rem;
		height: 4rem;
	}

	.greeting-icon svg {
		width: 2rem;
		height: 2rem;
	}

	.greeting-quote {
		font-size: 1.1rem;
	}

	.signature-name {
		font-size: 1.125rem;
	}
}

@media (min-width: 768px) {
    .sub-hero {
        min-height: 400px;
    }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-title {
  font-size: 2.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.02em;
}

.cta-desc {
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}