@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&family=Roboto:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
    /* Primary Colors (Gold/Brown Theme) */
    --kt-primary: #a2832d;
    --kt-primary-active: #8a6e25;
    --kt-primary-light: #faf6ec;
    --kt-primary-inverse: #ffffff;
    --kt-accent: #af8805;

    /* Secondary / Accent */
    --kt-success: #43A047;
    --kt-success-light: #E8F5E9;
    --kt-info: #a2832d;
    --kt-info-light: #faf6ec;
    --kt-warning: #af8805;
    --kt-warning-light: #faf6ec;
    --kt-danger: #D32F2F;
    --kt-danger-light: #FFEBEE;

    /* Topbar */
    --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: 14px;
    padding: 4px 10px;
    border-radius: 4px;
    transition: var(--kt-transition);
}

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

/* --- 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__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: 27px;
    font-weight: 900;
    color: #00248a;
    letter-spacing: -0.81px;
    margin-right: 6px;
}

.kt-logo__text .sub {
    font-size: 23px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0;
    white-space: nowrap;
}

/* --- Dark Mode: 헤더 로고 가시성 --- */
@media (prefers-color-scheme: dark) {
    .kt-header {
        background: #1a1a1a;
    }
    .kt-logo__icon img {
        filter: brightness(0) invert(1);
    }
    .kt-logo__text .brand {
        color: #ffffff;
    }
    .kt-logo__text .sub {
        color: #e0e0e0;
    }
}

/* 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: #a0abb5;
}

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

/* Figma: image spans left:-708 to right:-38 (2666px wide), top:-131
   in 1920x620 frame. Ratio: 2666/1920 = 139%, left offset: 708/1920 = 37% */
.kt-hero__bg img {
    position: absolute;
    width: 139%;
    height: auto;
    min-height: 100%;
    left: -37%;
    top: -40%;
    max-width: none;
}

/* Figma: radialGradient center at (817,310) in 1920x620 = 42.5% 50%
   transparent center → rgba(198,215,235,0.8) at 72% → rgba(160,171,181,1) at edges */
.kt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 120% at 42.5% 50%, rgba(255,255,255,0) 0%, rgba(198,215,235,0.7) 55%, rgba(160,171,181,0.9) 100%);
    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: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
}

.kt-hero__badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kt-success);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.kt-hero__title {
    font-size: 50px;
    font-weight: 400;
    color: #ffffff;
    line-height: 70px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.kt-hero__title strong {
    font-weight: 800;
}

.kt-hero__title-en {
    display: none;
}

.kt-hero__desc {
    display: none;
}

.kt-hero__desc-sub {
    display: none;
}

.kt-hero__badge {
    display: none;
}

.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(162, 131, 45, 0.35);
}

.kt-btn--primary:hover {
    background: var(--kt-primary-active);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(162, 131, 45, 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: var(--kt-gray-100);
}

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

.kt-section__label {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    color: var(--kt-accent);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
    padding: 0;
    background: none;
    border-radius: 0;
    font-family: 'Roboto', var(--kt-font-family);
}

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

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

/* --- Feature Cards --- */
.kt-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.kt-feature-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px 30px;
    transition: var(--kt-transition);
    border: 1px solid #f3f3f3;
    box-shadow: 0px 0px 20px 0px #f5f5f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.kt-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kt-shadow-lg);
}

.kt-feature-card--highlight {
    border-color: var(--kt-primary);
    box-shadow: none;
}

.kt-feature-card--highlight .kt-feature-card__icon {
    background: var(--kt-primary);
}

.kt-feature-card--highlight .kt-feature-card__icon svg {
    stroke: #fff;
}

.kt-feature-card--highlight .kt-feature-card__title {
    color: var(--kt-accent);
}

.kt-feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: #cfcfcf;
}

.kt-feature-card__icon svg {
    stroke: #fff;
}

.kt-feature-card__icon--primary,
.kt-feature-card__icon--success,
.kt-feature-card__icon--info,
.kt-feature-card__icon--warning {
    background: #cfcfcf;
    color: #fff;
}

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

.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: var(--kt-accent);
    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: var(--kt-primary);
}

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

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

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

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

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

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

.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--dark .kt-board-card__more::before {
    color: #fff;
}

.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: var(--kt-primary);
}

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

.kt-board-card__item .badge-new {
    display: none;
}

/* --- CTA Banner --- */
.kt-cta {
    background: #a68364;
    padding: 0;
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Figma: image 1030x687 at right:102px in 1920px frame
   Mask: radialGradient center(1253,110) scale(431,240) in 1920x220
   = center at 65.3% 50%, radius ~22.4% x ~109%
   Fade: opaque center → transparent edges */
.kt-cta__bg {
    position: absolute;
    right: 5.3%;
    top: 0;
    bottom: 0;
    width: 53.6%;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(ellipse 431px 241px at calc(1253px - 788px) 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 43.6%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse 431px 241px at calc(1253px - 788px) 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 43.6%, rgba(0,0,0,0) 100%);
}

/* Figma: 687px tall image, visible slice y=307~527 (220px)
   With cover on ~1030x220 box, image renders ~1030x687
   Crop offset: 307/(687-220) = 65.9% */
.kt-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65.9%;
    opacity: 0.9;
}

.kt-cta::before {
    display: none;
}

/* Figma: text at left:374, button at left:1297 in 1920 frame
   Container 1272px (324~1596). Button at 973px from content left */
.kt-cta .kt-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.kt-cta__text h3 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.kt-cta__text p {
    font-size: 20px;
    color: #f2d5be;
}

.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 --- */
.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__badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .kt-hero__title {
        font-size: 22px;
        line-height: 1.3;
    }

    .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-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: auto;
        padding: 20px 0;
    }

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

    .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;
    }

    .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 {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .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;
    }

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

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

    .intro-page {
        overflow: hidden;
    }
}

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

    .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 {
    font-size: 24px;
    font-weight: 800;
    color: var(--kt-gray-900);
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--kt-gray-900);
}

/* 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: flex;
    justify-content: center;
    padding: 24px 0;
    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 {
    font-size: 30px;
    font-weight: 800;
    color: var(--kt-gray-900);
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--kt-gray-200);
}

/* --- 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: 0 20px;
    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 at left:-18 top:-345, 1952x1301 in 1920x240 frame
   Green gradient overlay: linear-gradient(180deg, #e6ffcd 4% → #fff 96%) mix-blend-mode: multiply
   + radial vignette overlay */
/* Banner bg image set via inline style in PHP per page */
.kt-page-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 25%; /* default for intro page */
    background-repeat: no-repeat;
}

/* Per-page banner position adjustments */
.kt-page-banner__bg[style*="org"] {
    background-position: center 25%; /* Figma: y=272/1100 = 25% */
}

.kt-page-banner__bg[style*="company"] {
    background-position: center 70%; /* Figma: y=928/1312 = 70% */
}

.kt-page-banner__bg[style*="newsletter"] {
    background-position: center 32%; /* Figma: 350/1099 */
}

.kt-page-banner__bg[style*="notice"] {
    background-position: center 38%; /* Figma: 497/1305 */
}

.kt-page-banner__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(230,255,205,0.6) 4%, rgba(255,255,255,0.7) 96%);
    mix-blend-mode: multiply;
}

.kt-page-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.3) 0%, rgba(100,100,100,0.3) 100%);
    mix-blend-mode: multiply;
}

.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);
}

#container_title {
    display: none !important;
}

#container {
    padding: 60px 0;
}

body.main #container {
    padding: 0;
}

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

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

.intro-header {
    padding: 30px 0 0;  /* #container adds 60px top, total 90px from banner */
}

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

.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 var(--kt-primary);
    border-radius: 40px;
    font-size: 26px;
    font-weight: 700;
    color: var(--kt-accent);
    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: var(--kt-accent);
}

.intro-bullet-list__label {
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
    margin-right: 20px;
}

/* 전략 과제 - H.O.P.E 테이블 */
.hope-table {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hope-table__row {
    display: flex;
    align-items: center;
    background: #f6f6f6;
    border-radius: 10px;
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
    color: #222;
    letter-spacing: -1px;
}

.hope-table__key {
    min-width: 200px;
    color: #896f26;
    font-weight: 500;
}

.hope-table__key strong {
    font-weight: 700;
}

.hope-table__val {
    font-weight: 400;
}

/* 사업 추진 방향 - 파란 불릿 리스트 */
.intro-direction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

/* 사업단 위치 */
.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 responsive ---- */
@media (max-width: 768px) {
    .intro-header p {
        font-size: 18px;
        line-height: 32px;
    }
    .intro-section__badge {
        font-size: 20px;
        height: 48px;
        padding: 0 20px;
    }
    .intro-bullet-list li,
    .hope-table__row,
    .intro-direction-list li,
    .intro-location {
        font-size: 16px;
    }
    .hope-table__key {
        min-width: 140px;
    }
    .intro-map img {
        height: 300px;
    }
}

/* ============================================
   ORG PAGE (조직도)
   ============================================ */
.org-page {
    background: #fff;
}

.org-container {
    max-width: 1272px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 원형 뱃지 - Figma: top:450, banner ends at 360 → margin-top ~30px (with #container 60px padding) */
.org-badge {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--kt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.org-badge__text {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
}

/* Figma: 연결선 top:670 height:202, 배지 끝 670 → gap 0, 단장 header top:710 → 40px into line */
.org-line-vertical {
    width: 1px;
    height: 40px;
    background: #a7a7a7;
}

/* 단장 카드 */
.org-director {
    width: 335px;
}

.org-director__header {
    background: #fff;
    border: 1px solid #2f4b72;
    border-radius: 15px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #2f4b72;
}

/* Figma: body top:825, header bottom:800 → 25px gap, connected visually */
.org-director__body {
    background: #fff;
    border: 1px solid #a7a7a7;
    border-radius: 15px;
    padding: 30px 40px;
    margin-top: 10px;
}

.org-director__row {
    text-align: center;
    padding: 12px 0;
}

.org-director__role {
    display: block;
    font-size: 20px;
    color: #444;
    letter-spacing: -1px;
}

.org-director__tel {
    display: block;
    font-size: 17px;
    color: #444;
    margin-top: 4px;
}

.org-director__divider {
    border-top: 1px dashed #ccc;
    margin: 8px 0;
}

/* 구성원 테이블 */
.org-table {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    border-collapse: collapse;
    margin-top: 60px;
}

.org-table thead tr {
    border-top: 3px solid #333;
    border-bottom: 1px solid #ddd;
}

.org-table th {
    padding: 16px 10px;
    font-size: 20px;
    font-weight: 600;
    color: #444;
    text-align: center;
}

.org-table td {
    padding: 18px 10px;
    font-size: 20px;
    color: #444;
    text-align: center;
    border-bottom: 1px dashed #ddd;
    line-height: 1.4;
}

.org-table tbody tr:last-child td {
    border-bottom: 1px solid #ddd;
}

/* 반응형 - 조직도 */
@media (max-width: 767px) {
    .org-container {
        padding: 16px 16px 40px !important;
    }
    .org-badge {
        width: 120px;
        height: 120px;
        margin-top: 10px;
    }
    .org-badge__text {
        font-size: 14px;
    }
    .org-line-vertical {
        height: 20px;
    }
    .org-director {
        width: 100%;
    }
    .org-director__header {
        height: 50px;
        font-size: 15px;
        border-radius: 10px;
    }
    .org-director__body {
        padding: 12px 16px;
        border-radius: 10px;
    }
    .org-director__role {
        font-size: 14px;
    }
    .org-director__tel {
        font-size: 13px;
    }
    .org-director__row {
        padding: 8px 0;
    }
    .org-director__divider {
        margin: 4px 0;
    }
    .org-table {
        margin-top: 24px;
        border-top: none;
    }
    .org-table thead {
        display: none;
    }
    .org-table thead tr {
        border: 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;
        height: auto;
    }
    .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: 12px;
        color: var(--kt-primary);
        word-break: break-all;
    }
    .org-table tbody tr:last-child td {
        border-bottom: none;
    }
}

/* ============================================
   COMPANY PAGE (협력기업)
   ============================================ */
.company-page {
    background: #fff;
}

.company-container {
    max-width: 1272px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 24px 80px;
}

/* Figma: 2 cards, 288px each, gap ~33px, centered */
.company-grid {
    display: flex;
    justify-content: center;
    gap: 33px;
    flex-wrap: wrap;
    padding-top: 30px;
}

.company-card {
    width: 288px;
    height: 200px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 15px 40px 15px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--kt-transition);
}

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

.company-card__logo {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-card__logo img {
    max-height: 55px;
    max-width: 200px;
    object-fit: contain;
}

.company-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

/* 반응형 - 협력기업 */
@media (max-width: 767px) {
    .company-container {
        padding: 16px 16px 40px !important;
    }
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 12px;
        padding-top: 16px;
    }
    .company-card {
        width: 100%;
        height: 140px;
        border-radius: 10px 24px 10px 24px;
    }
    .company-card__logo img {
        max-width: 100px;
        max-height: 45px;
    }
    .company-card__name {
        font-size: 13px;
    }
}