@charset "utf-8";

/* ===========================================================
   RISE 더경북공통교양교육센터 - Metronic 8 Style Theme
   =========================================================== */

/* --- Google Fonts & Pretendard --- */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/AcidCores/S-Core-Dream@main/fonts/S-Core-Dream.css');

/* --- CSS Variables (Design Tokens) --- */
:root {
    /* Primary Colors */
    --kt-primary: #1B84FF;
    --kt-primary-active: #056EE9;
    --kt-primary-light: #EFF6FF;
    --kt-primary-inverse: #ffffff;

    /* Secondary / Accent */
    --kt-success: #17C653;
    --kt-success-light: #DFFFEA;
    --kt-info: #7239EA;
    --kt-info-light: #F8F5FF;
    --kt-warning: #F6B100;
    --kt-warning-light: #FFF8DD;
    --kt-danger: #F8285A;
    --kt-danger-light: #FFF5F8;

    --kt-topbar-bg: #00248a;

    /* Gray Scale */
    --kt-gray-100: #F9F9F9;
    --kt-gray-200: #F1F1F2;
    --kt-gray-300: #DBDFE9;
    --kt-gray-400: #B5B5C3;
    --kt-gray-500: #99A1B7;
    --kt-gray-600: #78829D;
    --kt-gray-700: #4B5675;
    --kt-gray-800: #252F4A;
    --kt-gray-900: #071437;

    /* Typography */
    --kt-font-family: 'Pretendard', sans-serif;
    --kt-font-size-base: 15px;
    --kt-line-height: 1.6;

    /* Spacing */
    --kt-container-max: 1320px;
    --kt-header-height: 80px;
    --kt-topbar-height: 40px;

    /* Shadows */
    --kt-shadow-sm: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, .05);
    --kt-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, .075);
    --kt-shadow-lg: 0 1rem 2rem 1rem rgba(0, 0, 0, .1);

    /* Border Radius */
    --kt-radius: 0.625rem;
    --kt-radius-lg: 1rem;
    --kt-radius-xl: 1.5rem;

    /* Transition */
    --kt-transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--kt-font-size-base);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
}

body {
    font-family: var(--kt-font-family);
    font-weight: 400;
    color: var(--kt-gray-800);
    line-height: var(--kt-line-height);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    margin: 0;
    padding: 0;
}

a {
    color: var(--kt-primary);
    text-decoration: none;
    transition: var(--kt-transition);
}

a:hover {
    color: var(--kt-primary-active);
}

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--kt-gray-900);
    line-height: 1.3;
}

.sound_only {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

/* Hide popup title */
#hd_pop h2 {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}


/* --- Container --- */
.kt-container {
    max-width: var(--kt-container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* --- Top Bar --- */
.kt-topbar {
    background: var(--kt-topbar-bg);
    height: var(--kt-topbar-height);
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #9bb5fd;
    position: relative;
    z-index: 1001;
}

.kt-topbar .kt-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kt-topbar__info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kt-topbar__info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kt-topbar__info svg {
    width: 14px;
    height: 14px;
    stroke: #9bb5fd;
    fill: none;
}

.kt-topbar__icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.kt-topbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kt-topbar__actions a {
    color: #9bb5fd;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    transition: var(--kt-transition);
}

.kt-topbar__actions a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* --- Header / Navigation --- */
.kt-header {
    background: #ffffff;
    height: var(--kt-header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--kt-shadow-sm);
    transition: var(--kt-transition);
}

.kt-header.scrolled {
    box-shadow: var(--kt-shadow);
}

.kt-header .kt-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.kt-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.kt-logo__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--kt-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.kt-logo__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.kt-logo__icon img.invert {
	filter: invert(100%) hue-rotate(180deg);
}

.kt-logo__text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    /* 공백 제거 */
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.kt-logo__text .brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--kt-gray-900);
    letter-spacing: -1.2px;
    /* 자간 축소 */
    margin-right: 4px;
    /* 시각적 분리를 위한 최소한의 여백 */
    background: linear-gradient(135deg, #071437 0%, #1a2b57 50%, #252f4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kt-logo__text .sub {
    font-size: 26px;
    font-weight: 700;
    color: var(--kt-gray-900);
    letter-spacing: -1.2px;
    /* 자간 축소 */
    white-space: nowrap;
    background: linear-gradient(135deg, #071437 0%, #263358 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Dark Mode: 헤더 로고 가시성 --- */
@media (prefers-color-scheme: dark) {
    .kt-header {
        background: #1a1a1a;
    }
    .kt-logo__icon img {
        filter: brightness(0) invert(1);
    }
    .kt-logo__text .brand {
        background: linear-gradient(135deg, #ffffff 0%, #d0d8f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .kt-logo__text .sub {
        background: linear-gradient(135deg, #e0e0e0 0%, #c0c8e0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* GNB Navigation */
.kt-gnb {
    display: flex;
    align-items: center;
    gap: 4px;
}

.kt-gnb__item {
    position: relative;
}

.kt-gnb__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--kt-gray-700);
    border-radius: var(--kt-radius);
    transition: var(--kt-transition);
    white-space: nowrap;
}

.kt-gnb__link:hover,
.kt-gnb__link.active {
    color: var(--kt-primary);
    background: var(--kt-primary-light);
}

.kt-gnb__link svg {
    width: 18px;
    height: 18px;
    opacity: 0.5;
}

/* Submenu */
.kt-gnb__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: var(--kt-radius);
    box-shadow: var(--kt-shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--kt-transition);
    z-index: 100;
}

.kt-gnb__item:hover .kt-gnb__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kt-gnb__sub a {
    display: block;
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--kt-gray-700);
    border-radius: 6px;
    transition: var(--kt-transition);
}

.kt-gnb__sub a:hover {
    background: var(--kt-primary-light);
    color: var(--kt-primary);
}

/* Mobile Menu Button */
.kt-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--kt-radius);
    transition: var(--kt-transition);
}

.kt-mobile-toggle:hover {
    background: var(--kt-gray-100);
}

.kt-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--kt-gray-700);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--kt-transition);
}

/* --- Hero Section --- */
.kt-hero {
    position: relative;
    width: 100%;
    height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #4a6a8a;
}

.kt-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Figma: 1945x1095 (aspect 135/76), left:-15 right:-10 top:-161
   in 1920x620 hero frame */
.kt-hero__bg img {
    position: absolute;
    width: 1945px;
    height: 1095px;
    max-width: none;
    left: -15px;
    top: -300px;
    object-fit: cover;
    background: lightgray 50% / cover no-repeat;
}

/* Figma: exact radial gradient overlay */
.kt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(61.26% 47.45% at 57.34% 48.55%, #FFF 0%, #FFF 28.54%, #719FCA 100%);
    background-blend-mode: multiply;
    mix-blend-mode: multiply;
    z-index: 1;
}

.kt-hero::after {
    display: none;
}

.kt-hero .kt-container {
    position: relative;
    z-index: 2;
}

.kt-hero__content {
    max-width: 720px;
    padding: 60px 0;
}

.kt-hero__badge {
    display: none;
}

.kt-hero__title-en {
    font-family: 'S-Core Dream', 'Pretendard', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.kt-hero__desc {
    font-family: 'S-Core Dream', 'Pretendard', sans-serif;
    font-size: 33px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 45px;
    margin-bottom: 0;
    letter-spacing: -1.32px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.kt-hero__desc-sub {
    font-family: 'S-Core Dream', 'Pretendard', sans-serif;
    font-size: 33px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 45px;
    margin-bottom: 0;
    letter-spacing: -1.32px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.kt-hero__actions {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Buttons --- */
.kt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--kt-font-family);
    border-radius: var(--kt-radius);
    border: none;
    cursor: pointer;
    transition: var(--kt-transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.kt-btn svg {
    width: 18px;
    height: 18px;
}

.kt-btn--primary {
    background: var(--kt-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(27, 132, 255, 0.35);
}

.kt-btn--primary:hover {
    background: var(--kt-primary-active);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 132, 255, 0.4);
}

.kt-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.kt-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.kt-btn--lg {
    padding: 15px 36px;
    font-size: 16px;
}

/* --- Section Common --- */
.kt-section {
    padding: 80px 0;
}

.kt-section--gray {
    background: linear-gradient(180deg, #f4f4f4 0.76%, #ffffff 99.24%);
}

.kt-section__header {
    text-align: center;
    margin-bottom: 50px;
}

/* Figma: label Roboto ExtraBold 16px #4b72a7, tracking 1.6px */
.kt-section__label {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #4b72a7;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
    padding: 0;
    background: none;
    border-radius: 0;
}

.kt-section__title {
    font-size: 33px;
    font-weight: 800;
    color: #222;
    margin-bottom: 16px;
}

.kt-section__subtitle {
    font-size: 18px;
    color: #939393;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Feature Cards --- */
/* Figma: 4-column, 300x250 cards, border-radius 30px, gap ~24px */
.kt-features {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    gap: 24px;
    justify-content: center;
}

.kt-feature-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 24px;
    transition: var(--kt-transition);
    border: 1px solid #F3F3F3;
    box-shadow: 0px 0px 20px 0px #F5F5F5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
}

.kt-feature-card::before {
    display: none;
}

/* Hover: blue border + blue title like Figma active state */
.kt-feature-card:hover {
    border-color: #004097;
    box-shadow: none;
    transform: none;
}

.kt-feature-card:hover .kt-feature-card__icon {
    background: #004097;
}

.kt-feature-card:hover .kt-feature-card__title {
    color: #004097;
}

/* Figma: 60px round icon */
.kt-feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.kt-feature-card__icon--primary {
    background: #cfcfcf;
    color: #ffffff;
}

.kt-feature-card__icon--success {
    background: #cfcfcf;
    color: #ffffff;
}

.kt-feature-card__icon--info {
    background: #cfcfcf;
    color: #ffffff;
}

.kt-feature-card__icon--warning {
    background: #cfcfcf;
    color: #ffffff;
}

.kt-feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}


.kt-feature-card__desc {
    font-size: 16px;
    color: #666;
    line-height: 22px;
    letter-spacing: -0.8px;
}

/* --- Stats Section --- */
.kt-section--stats {
    background: linear-gradient(180deg, #f4f4f4 0.76%, #ffffff 99.24%);
    padding: 80px 0;
}

.kt-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.kt-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-right: 1px solid #e1e9d0;
    transition: var(--kt-transition);
}

.kt-stat-card:last-child {
    border-right: none;
}

.kt-stat-card:hover {
    box-shadow: none;
    transform: none;
}

.kt-stat-card__number {
    font-size: 50px;
    font-weight: 600;
    color: #004097;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    font-family: 'Roboto', var(--kt-font-family);
}

.kt-stat-card__label {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* --- Notice / Board Section --- */
.kt-board-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
}

.kt-board-card {
    background: #f5f5f5;
    border-radius: 0;
    border: none;
    overflow: hidden;
    padding: 50px;
}

.kt-board-card--dark {
    background: #004097;
}

.kt-board-card--dark .kt-board-card__title {
    color: #fff;
}

.kt-board-card--dark .kt-board-card__more {
    background: #0857c4;
}

.kt-board-card--dark .kt-board-card__more::before {
    color: #fff;
}

.kt-board-card--dark .kt-board-card__item a {
    color: #fff;
}

.kt-board-card--dark .kt-board-card__item a:hover {
    color: #e5ecfd;
}

.kt-board-card--dark .kt-board-card__date {
    color: #e5ecfd;
    font-family: 'Roboto', var(--kt-font-family);
}

.kt-board-card--dark .kt-board-card__item {
    border-bottom-color: #0857c4;
}

.kt-board-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 24px;
    border-bottom: none;
}

.kt-board-card__title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kt-board-card__title svg {
    display: none;
}

.kt-board-card__more {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: var(--kt-transition);
}

.kt-board-card__more::before {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: #222;
}

.kt-board-card__more svg {
    display: none;
}

.kt-board-card__more:hover {
    transform: scale(1.1);
}

.kt-board-card__list {
    padding: 0;
}

.kt-board-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e6e6e6;
}

.kt-board-card__item:last-child {
    border-bottom: none;
}

.kt-board-card__item a {
    font-size: 20px;
    font-weight: 400;
    color: #222;
    transition: var(--kt-transition);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 16px;
}

.kt-board-card__item a:hover {
    color: #004097;
}

.kt-board-card__date {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    font-family: 'Roboto', var(--kt-font-family);
    flex-shrink: 0;
}

.kt-board-card__item .badge-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: var(--kt-danger);
    border-radius: 50%;
    margin-left: 6px;
    flex-shrink: 0;
}

/* --- CTA Banner --- */
.kt-cta {
    background: #1b326c;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 220px;
}

.kt-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40%;
    right: 12.5%;
    height: 100%;
    background: url('../img/cta-bg.jpg') center center / cover no-repeat;
    z-index: 0;
    opacity: 0.9;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 15%, rgba(0,0,0,0.6) 35%, black 55%, black 75%, rgba(0,0,0,0.3) 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 15%, rgba(0,0,0,0.6) 35%, black 55%, black 75%, rgba(0,0,0,0.3) 92%, transparent 100%);
}

.kt-cta .kt-container {
    position: relative;
    z-index: 1;
    height: 100%;
    max-width: 1272px;
}

.kt-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

.kt-cta .kt-btn {
    margin-left: auto;
    margin-right: 50px;
}

.kt-cta__text h3 {
    color: #FFF;
    font-family: 'Pretendard', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.kt-cta__text p {
    color: #a9c6ee;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

/* rise4 참조: 버튼 스타일 */
.kt-cta .kt-btn--outline-white {
    background: rgba(7,7,7,0.4);
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 20px 36px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.kt-cta .kt-btn--outline-white:hover {
    background: rgba(7,7,7,0.6);
}

/* --- Footer --- */
/* Hide duplicate footer from server cache */
footer.kt-footer ~ footer.kt-footer { display: none !important; }

.kt-footer {
    background: #363636;
    color: #bdbdbd;
    padding: 80px 0 0;
}

.kt-footer .kt-container {
    max-width: 1272px;
    padding: 0;
}

.kt-footer__grid {
    display: grid;
    grid-template-columns: 1fr 174px 208px 290px;
    gap: 0;
    padding-bottom: 50px;
}

.kt-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.kt-footer__logo-icon {
    height: 42px;
    width: auto;
}

.kt-footer__logo-rise {
    font-size: 27px;
    font-weight: 900;
    color: #bdbdbd;
    letter-spacing: -0.81px;
}

.kt-footer__logo-sub {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
}

.kt-footer__desc {
    font-size: 18px;
    font-weight: 300;
    color: #bdbdbd;
    line-height: 26px;
    margin: 0;
}

.kt-footer__col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.kt-footer__col ul li {
    margin-bottom: 0;
    line-height: 35px;
}

.kt-footer__col ul li,
.kt-footer__col ul li a {
    font-size: 17px;
    font-weight: 300;
    color: #c9c9c9;
    transition: var(--kt-transition);
}

.kt-footer__col ul li a:hover {
    color: #fff;
}

.kt-footer__address {
    line-height: 26px !important;
}

.kt-footer__bottom {
    border-top: 1px solid #505050;
    font-size: 16px;
    font-weight: 300;
    color: #bdbdbd;
}

.kt-footer__bottom-inner {
    max-width: 1272px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.kt-footer__bottom-links {
    display: flex;
    gap: 24px;
}

.kt-footer__bottom a {
    font-size: 16px;
    font-weight: 300;
    color: #bdbdbd;
}

.kt-footer__privacy {
    color: #fff !important;
    font-weight: 400 !important;
}

.kt-footer__admin-lock {
    display: inline-flex;
    align-items: center;
    opacity: 0.35;
    transition: opacity 0.2s;
}
.kt-footer__admin-lock:hover {
    opacity: 1;
}

.kt-footer__bottom a:hover {
    color: #fff;
}

/* --- Scroll to Top --- */
.kt-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--kt-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(162, 131, 45, 0.4);
    transition: var(--kt-transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.kt-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kt-scroll-top:hover {
    background: var(--kt-primary-active);
    transform: translateY(-3px);
}

.kt-scroll-top svg {
    width: 20px;
    height: 20px;
}

/* --- Login Message --- */
#hd_login_msg {
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--kt-gray-900);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--kt-radius);
    font-size: 12px;
    z-index: 9999;
    box-shadow: var(--kt-shadow);
}

#hd_login_msg a {
    color: var(--kt-primary);
    margin-left: 8px;
    font-weight: 600;
}

/* --- Mobile Navigation Overlay --- */
.kt-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}

.kt-mobile-nav.open {
    right: 0;
}

.kt-mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--kt-gray-200);
}

.kt-mobile-nav__close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--kt-radius);
    color: var(--kt-gray-700);
    transition: var(--kt-transition);
}

.kt-mobile-nav__close:hover {
    background: var(--kt-gray-100);
}

.kt-mobile-nav__list {
    padding: 16px;
}

.kt-mobile-nav__list a {
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--kt-gray-700);
    border-radius: var(--kt-radius);
    transition: var(--kt-transition);
}

.kt-mobile-nav__list a:hover,
.kt-mobile-nav__list a.active {
    background: var(--kt-primary-light);
    color: var(--kt-primary);
}

.kt-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kt-mobile-overlay.show {
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .kt-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .kt-hero__title-en {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    :root {
        --kt-header-height: 70px;
    }

    .kt-gnb {
        display: none;
    }

    .kt-mobile-toggle {
        display: block;
    }

    .kt-mobile-nav {
        display: block;
    }

    .kt-hero {
        min-height: 500px;
    }

    .kt-hero__title-en {
        font-size: 28px;
    }

    .kt-hero__desc {
        font-size: 16px;
    }

    .kt-board-grid {
        grid-template-columns: 1fr;
    }

    .kt-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .kt-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .kt-cta .kt-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .kt-topbar {
        display: none;
    }

    .kt-features {
        grid-template-columns: 1fr;
    }

    .kt-stats {
        grid-template-columns: 1fr 1fr;
    }

    .kt-stat-card {
        border-right: none;
    }

    .kt-board-grid {
        border-radius: 0;
    }

    .kt-board-card {
        padding: 16px 16px 12px;
    }

    .kt-board-card__header {
        padding: 0 0 10px;
    }

    .kt-board-card__title {
        font-size: 18px;
    }

    .kt-board-card__more {
        width: 28px;
        height: 28px;
    }

    .kt-board-card__more::before {
        font-size: 16px;
    }

    .kt-board-card__item {
        padding: 8px 0;
    }

    .kt-board-card__item a {
        font-size: 13px;
        margin-right: 8px;
    }

    .kt-board-card__date {
        font-size: 12px;
    }

    .kt-hero {
        height: 200px;
        min-height: 200px;
    }

    .kt-hero__bg img {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        object-position: center 30%;
    }

    .kt-hero__content {
        padding: 20px 0;
    }

    .kt-hero__title-en {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .kt-hero__desc {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .kt-hero__desc-sub {
        font-size: 11px;
        line-height: 1.3;
        margin-top: 0;
    }

    .kt-hero__badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .kt-section {
        padding: 24px 0;
    }

    .kt-section__title {
        font-size: 20px;
    }

    .kt-section__label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .kt-section__header {
        margin-bottom: 20px;
    }

    .kt-cta {
        height: 140px;
    }

    .kt-cta::before {
        left: 30%;
        right: 0;
    }

    .kt-cta__inner {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

    .kt-cta__text h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .kt-cta__text p {
        font-size: 12px;
    }

    .kt-cta .kt-btn {
        margin: 0 auto;
        margin-right: auto;
    }

    .kt-cta .kt-btn--outline-white {
        padding: 8px 20px;
        font-size: 12px;
        border-radius: 30px;
    }

    .kt-footer {
        padding: 30px 0 0;
    }

    .kt-footer .kt-container {
        padding: 0 16px;
    }

    .kt-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
        padding-bottom: 20px;
    }

    .kt-footer__grid > div:first-child {
        grid-column: 1 / -1;
        margin-bottom: 4px;
    }

    .kt-footer__logo-icon {
        height: 28px;
    }

    .kt-footer__logo-rise {
        font-size: 18px;
    }

    .kt-footer__logo-sub {
        font-size: 15px;
    }

    .kt-footer__logo {
        margin-bottom: 8px;
    }

    .kt-footer__desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .kt-footer__col h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .kt-footer__col ul li {
        line-height: 26px;
    }

    .kt-footer__col ul li,
    .kt-footer__col ul li a {
        font-size: 13px;
    }

    .kt-footer__address {
        line-height: 20px !important;
    }

    .kt-footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 14px 16px;
    }

    .kt-footer__bottom-inner > span:first-child {
        font-size: 11px;
    }

    .kt-footer__bottom-links {
        font-size: 12px;
    }

    .kt-footer__bottom a {
        font-size: 12px;
    }

    .kt-logo {
        gap: 5px;
    }

    .kt-logo__icon {
        width: 28px;
        height: 28px;
    }

    .kt-logo__text .brand {
        font-size: 18px;
        margin-right: 4px;
    }

    .kt-logo__text .sub {
        font-size: 15px;
    }

    .kt-footer__logo {
        gap: 5px;
    }

    /* --- Sub Page Banner --- */
    .kt-page-banner {
        min-height: 0 !important;
        height: 160px !important;
    }

    .kt-page-banner__content {
        padding: 20px 0;
    }

    .kt-page-banner__title {
        font-size: 20px !important;
        text-shadow: 0 1px 10px rgba(0,0,0,.2);
    }

    .kt-breadcrumb {
        font-size: 13px !important;
        padding: 5px 15px !important;
        margin-bottom: 6px;
        gap: 4px;
    }

    .kt-breadcrumb .sep {
        font-size: 13px !important;
    }

    /* --- Intro Page --- */
    .intro-container {
        padding: 0 16px;
    }

    .intro-header {
        padding: 0 !important;
    }

    .intro-header p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        letter-spacing: -0.2px !important;
        margin-bottom: 0 !important;
    }

    .intro-header__title {
        font-size: 14px !important;
        margin-bottom: 2px !important;
        line-height: 1.4 !important;
    }

    .intro-divider {
        margin: 15px 0 !important;
    }

    .intro-section {
        margin-bottom: 0 !important;
    }

    .intro-section__badge {
        height: 28px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
        border-radius: 18px !important;
        margin-bottom: 6px !important;
    }

    .intro-bullet-list li {
        font-size: 15px !important;
        line-height: 1.6 !important;
        padding-left: 12px !important;
    }

    .intro-bullet-list li::before {
        top: 9px;
        width: 4px;
        height: 4px;
    }

    .intro-subsection {
        margin-bottom: 8px;
    }

    .intro-subsection__title {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 2px !important;
    }

    .intro-location {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    .intro-map {
        margin-top: 12px;
    }

    .intro-map img,
    .intro-map iframe {
        height: 250px;
    }

    .root_daum_roughmap {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .root_daum_roughmap .wrap_map {
        max-width: 100% !important;
    }

    .intro-page {
        overflow: hidden;
    }

    /* --- Org Chart Mobile --- */
    .org-container {
        padding: 0 16px;
        overflow: hidden;
    }

    .org-badge {
        width: 90px;
        height: 90px;
        margin: 16px auto 0;
    }

    .org-badge__text {
        font-size: 13px;
    }

    .org-lines {
        display: none !important;
    }

    .org-cards {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px;
        padding: 12px 0;
    }

    .org-card,
    .org-card--pos1,
    .org-card--pos2,
    .org-card--pos3,
    .org-card--pos3b {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 8px;
    }

    .org-uni-row {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        flex-direction: column;
        gap: 8px;
    }

    .org-uni-card {
        width: 100% !important;
        height: auto !important;
        padding: 12px 16px;
        border-radius: 8px;
    }

    .org-uni-card__name {
        font-size: 14px;
    }

    .org-uni-card__divider {
        width: 60%;
        margin: 6px 0;
    }

    .org-uni-card__role {
        font-size: 12px;
    }

    .org-center-btn {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
    }

    .org-bottom-row {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        flex-direction: row;
        gap: 8px;
    }

    .org-bottom-col {
        flex: 1;
        gap: 6px;
    }

    .org-bottom-card {
        width: 100% !important;
        height: auto !important;
        padding: 10px 8px;
        font-size: 11px;
        border-radius: 8px;
    }

    .org-table {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .org-table thead {
        display: none;
    }

    .org-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 8px;
        padding: 12px;
        text-align: left;
    }

    .org-table td {
        padding: 3px 4px;
        font-size: 13px;
        border-bottom: none;
    }

    .org-table td:nth-child(1) {
        font-weight: 700;
    }

    .org-table td:nth-child(2) {
        text-align: right;
        color: #888;
    }

    .org-table td:nth-child(3) {
        font-size: 13px;
    }

    .org-table td:nth-child(4) {
        text-align: right;
        font-size: 13px;
        color: #004097;
    }

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

    /* --- General Sub Page Content --- */
    #container {
        padding: 0 16px;
    }

    #container_title {
        font-size: 20px;
    }

    #bo_list .tbl_head01 th,
    #bo_list .tbl_head01 td {
        font-size: 13px;
        padding: 8px 4px;
    }
}

@media (max-width: 480px) {
    .kt-hero__title-en {
        font-size: 14px;
    }

    .kt-hero__actions {
        flex-direction: column;
    }

    .kt-btn--lg {
        padding: 13px 28px;
        font-size: 14px;
    }

    .kt-stat-card__number {
        font-size: 28px;
    }
}

/* --- Board Content Styles (GnuBoard compatibility) --- */
#wrapper {
    margin: 0;
    padding: 0;
}

#container_wr {
    max-width: var(--kt-container-max);
    margin: 0 auto;
    padding: 30px 24px;
}

#container {
    width: 100%;
}

#container_title {
    display: none !important;
}

/* Board skin overrides */
.tbl_head01 {
    width: 100%;
    border-collapse: collapse;
}

.tbl_head01 thead th {
    background: var(--kt-gray-100);
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kt-gray-700);
    border-bottom: 1px solid var(--kt-gray-300);
}

.tbl_head01 tbody td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--kt-gray-200);
}

.tbl_head01 tbody tr:hover {
    background: var(--kt-primary-light);
}

/* Pagination */
.pg_wrap {
    display: block !important;
    float: none !important;
    clear: both;
    padding: 24px 0;
}

.pg_wrap .pg {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 4px;
}

.pg_wrap a,
.pg_wrap strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--kt-radius);
    color: var(--kt-gray-600);
    border: 1px solid var(--kt-gray-200);
    text-decoration: none;
    transition: var(--kt-transition);
}

.pg_wrap a:hover {
    color: var(--kt-primary);
    border-color: var(--kt-primary);
    background: var(--kt-primary-light);
}

.pg_wrap .pg_current,
.pg_wrap strong {
    background: var(--kt-primary);
    color: #fff;
    border-color: var(--kt-primary);
}

/* Latest widget */
.latest_wr,
.latest_top_wr {
    margin: 0;
}

.lt_wr {
    margin: 0;
}

/* --- Animation Classes --- */
.kt-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.kt-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.kt-animate-delay-1 {
    transition-delay: 0.1s;
}

.kt-animate-delay-2 {
    transition-delay: 0.2s;
}

.kt-animate-delay-3 {
    transition-delay: 0.3s;
}

.kt-animate-delay-4 {
    transition-delay: 0.4s;
}

/* --- Gnuboard Wrapper Styles --- */
#wrapper {
    width: 100%;
}

#container_wr {
    width: 100%;
    max-width: var(--kt-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Main page: no max-width restrictions */
body.main #wrapper,
body.main #container_wr {
    max-width: none;
    padding: 0;
}

#container {
    width: 100%;
    padding: 60px 0;
}

/* Main page has no padding inside container */
body.main #container {
    padding: 0;
}


/* #container_title already hidden above */

/* --- Board Styles --- */
.bo_v,
.bo_w,
.bo_list {
    width: 100%;
}

/* Hide table caption and sound_only */
caption,
.sound_only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Board Title and Content Alignment */
.bo_v_tit,
.bo_v_con,
.bo_list,
#bo_list {
    text-align: left;
}

/* Board List Table */
.tbl_head01,
.tbl_head02,
.tbl_wrap table {
    width: 100% !important;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--kt-gray-200);
    background: #fff;
}

.tbl_head01 thead th,
.tbl_head02 thead th {
    background: var(--kt-gray-100);
    color: var(--kt-gray-800);
    font-weight: 600;
    padding: 14px 12px;
    border-bottom: 2px solid var(--kt-gray-300);
}

.tbl_head01 tbody td,
.tbl_head02 tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--kt-gray-200);
    text-align: center;
}

.tbl_head01 tbody tr:hover,
.tbl_head02 tbody tr:hover {
    background: var(--kt-primary-light);
}

/* Board Search */
.bo_sch,
.bo_sch_wrap,
.sch_bar {
    width: 100%;
}

.bo_sch input[type="text"],
.bo_sch select {
    padding: 8px 12px;
    border: 1px solid var(--kt-gray-300);
    border-radius: var(--kt-radius);
}

/* Board Buttons */
.bo_fx,
.btn_bo_user,
.btn_confirm {
    margin: 20px 0;
}

.btn_submit,
.btn_b01,
.btn_b02 {
    padding: 10px 20px;
    background: var(--kt-primary);
    color: #fff;
    border: none;
    border-radius: var(--kt-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--kt-transition);
}

.btn_submit:hover,
.btn_b01:hover {
    background: var(--kt-primary-active);
    transform: translateY(-1px);
}

/* Board list subject link: normal color & weight */
.bo_tit a,
.bo_tit a:link,
.bo_tit a:visited,
.td_subject a,
.td_subject a:link,
.td_subject a:visited,
.tbl_head01 td a,
.tbl_head01 td a:link,
.tbl_head01 td a:visited {
    color: var(--kt-gray-800);
    font-weight: normal;
    text-decoration: none;
}

.bo_tit a:hover,
.td_subject a:hover,
.tbl_head01 td a:hover {
    color: var(--kt-primary);
}

/* Subject column: left align */
.td_subject {
    text-align: left !important;
}

/* Table header link (조회, 날짜): remove blue */
.tbl_head01 thead th a,
.tbl_head01 thead th a:link,
.tbl_head01 thead th a:visited {
    color: var(--kt-gray-800);
    text-decoration: none;
}

/* Date column: no line break */
.td_datetime {
    white-space: nowrap;
}

/* Hide RSS button */
.btn_bo_user li a[title="RSS"],
.btn_bo_user li a[title="RSS"]~*,
a.btn[title="RSS"] {
    display: none !important;
}

.btn_bo_user li:has(a[title="RSS"]) {
    display: none !important;
}

/* ============================================
   Board View (bo_v) Styles
   ============================================ */

/* View wrapper */
#bo_v {
    margin-bottom: 20px;
    background: #fff;
}

/* Title area */
#bo_v_title {
    margin-bottom: 0;
}

#bo_v_title .bo_v_cate {
    display: inline-block;
    line-height: 20px;
    background: var(--kt-primary-light);
    color: var(--kt-primary);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

#bo_v_title .bo_v_tit {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    margin: 8px 0 0;
    word-break: break-all;
    color: var(--kt-gray-900);
}

/* Writer info */
#bo_v_info {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--kt-gray-200);
    color: var(--kt-gray-600);
}

#bo_v_info:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

#bo_v_info h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_v_info .profile_info {
    margin: 0;
    display: inline-block;
    float: left;
}

#bo_v_info .profile_info .pf_img {
    float: left;
    margin-right: 10px;
}

#bo_v_info .profile_info .pf_img img {
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

#bo_v_info .profile_info .profile_info_ct {
    float: left;
    padding: 2px 0;
    line-height: 18px;
}

#bo_v_info strong {
    display: inline-block;
    margin: 0 10px 0 0;
    font-weight: normal;
}

#bo_v_info .sv_member,
#bo_v_info .member {
    font-weight: bold;
    color: var(--kt-gray-900);
}

#bo_v_info .if_date {
    margin: 0;
    color: var(--kt-gray-500);
    font-size: 13px;
}

/* Content area */
#bo_v_atc {
    min-height: 200px;
}

#bo_v_atc_title {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_v_img {
    width: 100%;
    overflow: hidden;
}

#bo_v_img img {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

#bo_v_con {
    margin: 20px 0 30px;
    width: 100%;
    line-height: 1.8em;
    min-height: 200px;
    word-break: break-all;
    overflow: hidden;
    font-size: 15px;
}

#bo_v_con a {
    color: var(--kt-primary);
    text-decoration: underline;
}

#bo_v_con img {
    max-width: 100%;
    height: auto;
}

/* File attach */
#bo_v_file h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_v_file ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#bo_v_file li {
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid var(--kt-gray-200);
    border-radius: var(--kt-radius);
}

#bo_v_file li:hover {
    border-color: var(--kt-primary);
}

#bo_v_file a {
    display: block;
    text-decoration: none;
    color: var(--kt-gray-800);
}

#bo_v_file a:hover {
    color: var(--kt-primary);
}

#bo_v_file .bo_v_file_cnt {
    color: var(--kt-gray-500);
    font-size: 13px;
}

/* Link */
#bo_v_link h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_v_link li {
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid var(--kt-gray-200);
    border-radius: var(--kt-radius);
}

#bo_v_link a {
    display: block;
    text-decoration: none;
    color: var(--kt-gray-800);
}

#bo_v_link a:hover {
    color: var(--kt-primary);
}

/* Good/Nogood actions */
#bo_v_act {
    margin-bottom: 30px;
    text-align: center;
}

#bo_v_act a {
    margin-right: 5px;
    vertical-align: middle;
    color: var(--kt-gray-600);
}

#bo_v_act .bo_v_good,
#bo_v_act .bo_v_nogood {
    display: inline-block;
    border: 1px solid var(--kt-gray-300);
    width: 70px;
    line-height: 46px;
    border-radius: 30px;
    transition: var(--kt-transition);
}

#bo_v_act .bo_v_good:hover {
    border-color: var(--kt-primary);
    color: var(--kt-primary);
}

#bo_v_act .bo_v_nogood:hover {
    border-color: var(--kt-danger);
    color: var(--kt-danger);
}

/* Prev/Next navigation */
.bo_v_nb {
    position: relative;
    margin: 20px 0;
    clear: both;
}

.bo_v_nb:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

.bo_v_nb li {
    border-top: 1px solid var(--kt-gray-200);
    padding: 14px 16px;
    list-style: none;
}

.bo_v_nb li:last-child {
    border-bottom: 1px solid var(--kt-gray-200);
}

.bo_v_nb li:hover {
    background: var(--kt-gray-100);
}

.bo_v_nb li .nb_tit {
    display: inline-block;
    padding-right: 20px;
    color: var(--kt-gray-500);
    font-weight: 600;
    font-size: 13px;
}

.bo_v_nb li .nb_date {
    float: right;
    color: var(--kt-gray-500);
    font-size: 13px;
}

.bo_v_nb li a {
    color: var(--kt-gray-800);
    text-decoration: none;
}

.bo_v_nb li a:hover {
    color: var(--kt-primary);
}

/* Top/Bottom button area */
#bo_v_top,
#bo_v_bot {
    zoom: 1;
}

#bo_v_top:after,
#bo_v_bot:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

#bo_v_top h2,
#bo_v_bot h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_v_top ul,
#bo_v_bot ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* View command buttons (목록, 글쓰기 등) */
.bo_v_com {
    margin: 20px 0;
    float: right;
}

.bo_v_com>li {
    position: relative;
    float: left;
    margin-left: 5px;
    list-style: none;
}

/* ============================================
   Comment Styles
   ============================================ */

/* Comment toggle button */
.cmt_btn {
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 2px solid var(--kt-gray-200);
    background: #fff;
    font-weight: bold;
    margin: 30px 0 0;
    padding: 0 0 15px;
    cursor: pointer;
    font-size: 15px;
}

.cmt_btn b {
    font-size: 1.2em;
    color: var(--kt-gray-900);
}

.cmt_btn span.total {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    font-size: 1em;
    color: var(--kt-primary);
}

.cmt_btn span.total:after {
    position: absolute;
    bottom: -17px;
    left: 0;
    display: inline-block;
    background: var(--kt-primary);
    content: "";
    width: 100%;
    height: 2px;
}

.cmt_btn span.cmt_more {
    float: right;
    display: inline-block;
    width: 15px;
    height: 10px;
    margin-top: 5px;
}

/* Comment list */
#bo_vc {}

#bo_vc h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_vc article {
    margin: 16px 0;
    padding: 16px 0;
    position: relative;
    border-bottom: 1px solid var(--kt-gray-200);
}

#bo_vc article:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

#bo_vc article .pf_img {
    float: left;
    margin-right: 10px;
}

#bo_vc article .pf_img img {
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

#bo_vc article .cm_wrap {
    float: left;
    max-width: 90%;
    width: 90%;
}

#bo_vc header {
    position: relative;
    width: 100%;
}

#bo_vc header:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

#bo_vc .member,
#bo_vc .guest,
#bo_vc .sv_member,
#bo_vc .sv_guest {
    font-weight: bold;
    color: var(--kt-gray-900);
}

.bo_vc_hdinfo {
    color: var(--kt-gray-500);
    font-size: 13px;
}

#bo_vc .cmt_contents {
    line-height: 1.8em;
    padding: 8px 0 16px;
    color: var(--kt-gray-800);
}

#bo_vc p a {
    text-decoration: underline;
}

#bo_vc_empty {
    margin: 0;
    padding: 60px 0 !important;
    color: var(--kt-gray-500);
    text-align: center;
    font-size: 14px;
}

#bo_vc .bo_vl_opt {
    position: absolute;
    top: 0;
    right: 0;
}

/* Comment action popup */
.bo_vc_act {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    width: 80px;
    text-align: right;
    border: 1px solid var(--kt-gray-300);
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    z-index: 9999;
    border-radius: var(--kt-radius);
    box-shadow: var(--kt-shadow);
}

.bo_vc_act li {
    border-bottom: 1px solid var(--kt-gray-100);
    padding: 0;
}

.bo_vc_act li:last-child {
    border-bottom: 0;
}

.bo_vc_act li a {
    display: block;
    padding: 10px 15px;
    color: var(--kt-gray-700);
    text-decoration: none;
    font-size: 13px;
}

.bo_vc_act li a:hover {
    color: var(--kt-primary);
    background: var(--kt-primary-light);
}

/* Comment write form */
.bo_vc_w {
    position: relative;
    margin: 20px 0;
    display: block;
}

.bo_vc_w:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

.bo_vc_w h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.bo_vc_w textarea {
    border: 1px solid var(--kt-gray-300);
    background: #fff;
    color: var(--kt-gray-800);
    vertical-align: middle;
    border-radius: var(--kt-radius);
    padding: 12px;
    width: 100%;
    height: 120px;
    font-family: var(--kt-font-family);
    font-size: 14px;
    resize: vertical;
    transition: var(--kt-transition);
}

.bo_vc_w textarea:focus {
    border-color: var(--kt-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 132, 255, 0.15);
}

/* Comment writer info inputs */
.bo_vc_w_info {
    margin: 10px 0;
    float: left;
}

.bo_vc_w_info:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

.bo_vc_w_info .frm_input {
    float: left;
    margin-right: 5px;
    padding: 8px 12px;
    border: 1px solid var(--kt-gray-300);
    border-radius: var(--kt-radius);
    font-size: 14px;
    height: 38px;
}

.bo_vc_w_info .frm_input:focus {
    border-color: var(--kt-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 132, 255, 0.15);
}

.bo_vc_w_info #captcha {
    padding-top: 10px;
    display: block;
    clear: both;
}

/* Comment submit area */
.bo_vc_w .btn_confirm {
    clear: both;
    margin-top: 10px;
}

.bo_vc_w .btn_confirm:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

.bo_vc_w .btn_confirm label {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
}

.bo_vc_w .btn_submit {
    height: 45px;
    padding: 0 24px;
    border-radius: var(--kt-radius);
    font-weight: 700;
    font-size: 15px;
    background: var(--kt-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--kt-transition);
}

.bo_vc_w .btn_submit:hover {
    background: var(--kt-primary-active);
    transform: translateY(-1px);
}

.bo_vc_w .btn_confirm .secret_cm label {
    font-size: 14px !important;
}

.secret_cm {
    display: inline-block;
    float: left;
}

/* ============================================
   Common Board Buttons (.btn)
   ============================================ */

/* General .btn class */
.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--kt-gray-300);
    border-radius: var(--kt-radius);
    background: #fff;
    color: var(--kt-gray-700);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--kt-transition);
    vertical-align: middle;
    line-height: 1.5;
}

.btn:hover {
    border-color: var(--kt-primary);
    color: var(--kt-primary);
    background: var(--kt-primary-light);
}

.btn_b01 {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--kt-gray-300);
    border-radius: var(--kt-radius);
    background: #fff;
    color: var(--kt-gray-700);
    text-decoration: none;
    cursor: pointer;
    transition: var(--kt-transition);
}

.btn_b01:hover {
    border-color: var(--kt-primary);
    color: var(--kt-primary);
    background: var(--kt-primary-light);
}

.btn_b02 {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--kt-gray-300);
    border-radius: var(--kt-radius);
    background: #fff;
    color: var(--kt-gray-700);
    text-decoration: none;
    cursor: pointer;
    transition: var(--kt-transition);
}

/* btn_bo_user (목록 상/하단 버튼 그룹) */
.btn_bo_user {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn_bo_user:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

.btn_bo_user li {
    float: left;
    margin-left: 5px;
    list-style: none;
}

.btn_bo_user>li {
    position: relative;
}

/* Board top info bar */
#bo_btn_top {
    margin: 10px 0;
}

#bo_btn_top:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

#bo_list_total {
    float: left;
    line-height: 34px;
    font-size: 14px;
    color: var(--kt-gray-600);
}

/* bo_fx (하단 버튼 영역) */
.bo_fx {
    margin-bottom: 5px;
    float: right;
}

.bo_fx:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

.bo_fx ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* More options popup */
.more_opt {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background: #fff;
    border: 1px solid var(--kt-gray-300);
    z-index: 999;
    border-radius: var(--kt-radius);
    box-shadow: var(--kt-shadow);
    padding: 4px;
}

.more_opt li {
    border-bottom: 1px solid var(--kt-gray-100);
    padding: 0;
    float: inherit;
    width: auto;
    margin: 0;
    list-style: none;
}

.more_opt li:last-child {
    border-bottom: 0;
}

.more_opt li button,
.more_opt li a {
    display: block;
    width: 100%;
    border: 0;
    background: #fff;
    color: var(--kt-gray-700);
    padding: 8px 12px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
}

.more_opt li:hover button,
.more_opt li:hover a {
    color: var(--kt-primary);
    background: var(--kt-primary-light);
}

/* Notice row */
.bo_notice td {
    background: #fff9fb !important;
}

.bo_notice .notice_icon {
    display: inline-block;
    font-weight: bold;
    color: var(--kt-danger);
    font-size: 13px;
}

/* Form inputs */
.frm_input {
    padding: 8px 12px;
    border: 1px solid var(--kt-gray-300);
    border-radius: var(--kt-radius);
    font-size: 14px;
    font-family: var(--kt-font-family);
}

.frm_input:focus {
    border-color: var(--kt-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 132, 255, 0.15);
}

/* Write form */
#bo_w .write_div {
    margin: 10px 0;
    position: relative;
}

#bo_w .write_div:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

#bo_w .frm_input {
    width: 100%;
}

#bo_w .btn_submit {
    padding: 12px 24px;
    font-size: 15px;
}

#bo_w .btn_cancel {
    padding: 0px 12px;
    font-size: 15px;
    border-radius: var(--kt-radius);
    border: 1px solid var(--kt-gray-300);
    background: #fff;
    color: var(--kt-gray-700);
    cursor: pointer;
}

/* --- Page Banner (Sub Pages) --- */
.kt-page-banner {
    position: relative;
    width: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

/* Figma: image 1939x1237 in 1920x240 frame, position adjustments per page */
.kt-page-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 46%;
    background-repeat: no-repeat;
}

/* Figma: user-provided radial gradient overlay with multiply */
.kt-page-banner__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.50) 0%, rgba(37, 37, 37, 0.50) 100%);
    background-blend-mode: multiply;
    mix-blend-mode: multiply;
}

.kt-page-banner__bg::after {
    display: none;
}

.kt-page-banner .kt-container {
    position: relative;
    z-index: 1;
}

.kt-page-banner__content {
    text-align: center;
    padding: 50px 0;
}

.kt-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
}

.kt-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--kt-transition);
}

.kt-breadcrumb a:hover {
    color: #ffffff;
}

.kt-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

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

.kt-page-banner__title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* ===========================================================
   Intro Page (사업단 소개)
   =========================================================== */
.intro-page {
    background: #fff;
}

.intro-container {
    max-width: 1272px;
    padding: 0;
}

.intro-header {
    padding: 30px 0 0;
}

.intro-header p {
    font-size: 25px;
    font-weight: 400;
    color: #222;
    line-height: 45px;
    letter-spacing: -0.25px;
    margin: 0;
}

.intro-header__title {
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.intro-divider {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 60px 0;
}

.intro-section {
    margin-bottom: 0;
}

.intro-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 30px;
    border: 1px solid #004097;
    border-radius: 40px;
    font-size: 26px;
    font-weight: 700;
    color: #004097;
    background: #fff;
    margin-bottom: 30px;
}

.intro-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-bullet-list li {
    position: relative;
    font-size: 20px;
    color: #222;
    line-height: 33px;
    letter-spacing: -1px;
    padding-left: 15px;
}

.intro-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #004097;
}

.intro-subsection {
    margin-bottom: 30px;
}

.intro-subsection__title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 33px;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.text-primary {
    color: #004097;
    font-weight: 400;
}

.intro-location {
    font-size: 20px;
    color: #222;
    line-height: 33px;
    letter-spacing: -1px;
}

.intro-map {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}

.intro-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.intro-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* ===========================================================
   Org Chart (조직도) - rise2
   =========================================================== */
.org-page { background: #fff; }
.org-container { max-width: 1272px; padding: 0; text-align: center; }

/* Per-page banner: org page image at top:-625 (48.5%) */
.kt-page-banner__bg[style*="org"] {
    background-position: center 60%;
}

/* Badge */
.org-badge {
    width: 220px; height: 220px; border-radius: 50%;
    background: #004097; display: flex; align-items: center;
    justify-content: center; margin: 30px auto 0;
}
.org-badge__text {
    color: #fff; font-size: 25px; font-weight: 700; line-height: 1.3;
}

/* SVG connector lines */
.org-lines {
    position: relative; width: 938px; height: 1042px;
    margin: 0 auto; margin-top: -5px; z-index: 0;
}
.org-lines img { width: 100%; height: 100%; }

/* Cards overlay on lines */
.org-cards {
    position: relative; width: 938px; margin: -1042px auto 0;
    height: 1120px; z-index: 1;
}

/* Individual positioned cards */
.org-card {
    position: absolute; width: 335px; height: 90px;
    border-radius: 15px; border: 1px solid #a7a7a7; background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; color: #363636;
}
.org-card--green {
    background: #66ac5c; border-color: #58964f; color: #fff;
}
.org-card--gray {
    background: #f5f5f5; border-color: #dbdbdb; font-weight: 500;
}

/* Figma positions relative to 938px SVG container
   SVG starts at x=492 in 1920 page, container center = 960
   offset = (960 - 492 - 469) = -1, basically centered */
.org-card--pos1 { left: -118px; top: 10px; }
.org-card--pos2 { left: 301px; top: 110px; }
.org-card--pos3 { left: 720px; top: 210px; }
.org-card--pos3b { left: 720px; top: 325px; }

/* University row */
.org-uni-row {
    position: absolute; left: -168px; top: 505px;
    display: flex; gap: 0; width: 1273px;
}
.org-uni-card {
    width: 335px; height: 146px; border-radius: 15px;
    border: 1px solid #a7a7a7; background: #fff;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; margin: 0 auto;
}
.org-uni-card--main { border-color: #000; }
.org-uni-card__name { font-size: 20px; font-weight: 700; color: #000; }
.org-uni-card--main .org-uni-card__name { font-weight: 800; }
.org-uni-card__divider {
    width: 255px; height: 1px; background: #c5c5c5; margin: 12px 0;
}
.org-uni-card__role { font-size: 20px; color: #444; }

/* Center button */
.org-center-btn {
    position: absolute; left: 301px; top: 711px;
    width: 335px; height: 80px; border-radius: 15px;
    background: #004097; border: 1px solid #002a62;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; font-weight: 600;
}

/* Bottom committees */
.org-bottom-row {
    position: absolute; left: 90px; top: 862px;
    display: flex; gap: 155px;
}
.org-bottom-col {
    display: flex; flex-direction: column; gap: 20px;
}
.org-bottom-card {
    width: 301px; height: 70px; border-radius: 15px;
    border: 1px solid #a7a7a7; background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 500; color: #444;
}
.org-bottom-card--blue {
    background: #ebf3fe; border-color: #a5bfe3;
    color: #3f5a80;
}

/* Staff table */
.org-table {
    width: 100%; border-collapse: collapse;
    margin-top: 80px; margin-bottom: 80px; text-align: center;
}
.org-table thead tr {
    border-top: 3px solid #222; border-bottom: 1px solid #ccc;
}
.org-table th {
    padding: 18px 10px; font-size: 20px; font-weight: 600; color: #444;
}
.org-table td {
    padding: 18px 10px; font-size: 20px; color: #444;
    border-bottom: 1px dashed #ddd;
}
.org-table tbody tr:last-child td { border-bottom: 1px solid #ccc; }

/* ===========================================================
   Company Page (협력기업) - rise2
   =========================================================== */
.company-page { background: #fff; }
.company-container { max-width: 1272px; padding: 0 0 80px; }

.company-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding-top: 30px;
}

.company-card {
    height: 200px;
    border: 1px solid #e5e5e5;
    border-radius: 15px 40px 15px 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.company-card:hover {
    border-color: #004097;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.company-card__logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px 10px;
}
.company-card__logo img {
    max-width: 183px;
    max-height: 70px;
    object-fit: contain;
}
.company-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center;
    padding: 0 10px 24px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .company-container { padding: 0 20px 60px; }
    .company-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .company-card { height: 180px; }
}

@media (max-width: 767px) {
    .company-container { padding: 0 16px 40px !important; }
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-top: 20px;
    }
    .company-card {
        height: 140px;
        border-radius: 10px 24px 10px 24px;
    }
    .company-card__name {
        font-size: 13px;
        white-space: normal;
        line-height: 1.3;
        padding: 0 8px 12px;
    }
    .company-card__logo { padding: 12px 12px 6px; }
    .company-card__logo img {
        max-width: 100px;
        max-height: 45px;
    }
}