@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ========== 공통 변수 ========== */
:root {
    --primary-blue: #2563eb;
    --primary-purple: #c547f6;
    --accent-green: #10b981;
    --text-dark: #222;
    --text-gray: #666;
    --text-light-gray: #a4aec0;
    --bg-light: #f9fafb;
    --bg-card: #fdfdfd;
    --border-light: rgba(34, 34, 34, 0.1);
}

/* ========== con01 - 메인 히어로 섹션 (다크 테마) ========== */
.con01 {
    width: 100%;
    padding: 60px 0;
    padding-top: 30px;
    position: relative;
    background: #000;
    overflow: hidden;
    box-sizing: border-box;
}

/* 배경 블러 효과 - 빨간색/핑크 */
.con01::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    left: calc(50% - 500px);
    top: 106px;
    background: rgba(121, 15, 15, 0.08);
    border-radius: 9999px;
    filter: blur(60px);
    pointer-events: none;
}
.con01::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    right: calc(50% - 700px);
    bottom: 72px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 9999px;
    filter: blur(75px);
    pointer-events: none;
}

.con01 .inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 72px;
    position: relative;
    z-index: 1;
}

/* 메인 콘텐츠 */
.con01 .con01-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 36px;
    text-align: center;
}

.con01 .sub-title {
    color: #ececec;
    font-size: 42px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.con01 .main-title {
    text-align: center;
    margin: 0;
}
.con01 .main-title.gradient {
    background: linear-gradient(90deg, #00f3ff 0%, #ff00c8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-size: 82px;
    font-weight: 900;
    line-height: 1.2;
}

.con01 .desc-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
}
.con01 .desc-box .desc1 {
    text-align: center;
    color: #fff;
    font-size: 44px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.con01 .desc-box .desc2 {
    text-align: center;
    color: #aaa;
    font-size: 34px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* 구버전 버튼 */
.con01 .btn-view-all {
    width: 250px;
    padding: 18px 0;
    background: #ef4444;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.con01 .btn-view-all:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* 슬로건 */
.con01 .slogan-box {
    width: 800px;
    max-width: 100%;
    padding-top: 37px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.con01 .slogan-text {
    color: #fff;
    font-size: 52px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}
.con01 .slogan-text span {
    display: block;
}

/* CTA 버튼 바 - 글래스모피즘 */
.con01 .cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 786px;
    max-width: 100%;
    height: 57px;
    padding: 0 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-sizing: border-box;
}
.con01 .cta-bar a {
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.225px;
    text-decoration: none;
    transition: color 0.3s ease;
    flex:1 1 calc(100% / 3);
    text-align: center;
}
.con01 .cta-bar a:hover {
    color: #00f3ff;
}

/* 2depth 퀵메뉴 */
.con01 .quick-menu {
    position: absolute;
    right: 60px;
    top: 0;
    width: 120px;
    padding: 19px;
    background: rgba(34, 34, 34, 0.05);
    border: 1px solid rgba(34, 34, 34, 0.1);
    border-radius: 9px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
}
.con01 .quick-menu a {
    color: #666;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}
.con01 .quick-menu a:first-child {
    text-decoration: underline;
}
.con01 .quick-menu a:hover {
    color: #2563eb;
}

/* 카톡상담 버튼 - 노란색 카카오톡 공식 스타일 */
.con01 .kakao-btn {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 70px;
    height: 70px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 100;
    overflow: visible;
}
.con01 .kakao-btn:hover {
    transform: scale(1.08) translateY(-2px);
}
.con01 .kakao-btn img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* ========== 반응형 - 태블릿 ========== */
@media all and (max-width: 1400px) {
    .con01 .inner {
        gap: 50px;
    }
    .con01 .sub-title {
        font-size: 32px;
    }
    .con01 .main-title.gradient {
        font-size: 60px;
    }
    .con01 .desc-box .desc1 {
        font-size: 32px;
    }
    .con01 .desc-box .desc2 {
        font-size: 24px;
    }
    .con01 .slogan-text {
        font-size: 38px;
    }
    .con01 .slogan-box {
        width: 100%;
    }
    .con01 .cta-bar {
        width: 90%;
    }
}

/* ========== 반응형 - 모바일 ========== */

@media all and (max-width: 768px) {

    .con01 .inner {
        gap: 36px;
    }
    .con01 .sub-title {
        font-size: 20px;
    }
    .con01 .main-title.gradient {
        font-size: 42px;
        line-height: 1.3;
    }
    .con01 .desc-box {
        gap: 6px;
    }
    .con01 .desc-box .desc1 {
        font-size: 20px;
    }
    .con01 .desc-box .desc2 {
        font-size: 14px;
    }
    .con01 .btn-view-all {
        width: 200px;
        padding: 14px 0;
        font-size: 14px;
    }
    .con01 .slogan-text {
        font-size: 18px;
    }
    .con01 .slogan-box {
        padding-top: 24px;
    }
    .con01 .cta-bar {
        width: 100%;
        height: auto;
        padding: 16px 20px;
        gap: 12px;
        border-radius: 16px;
        justify-content: space-around;
    }
    .con01 .cta-bar a {
        font-size: 14px;
    }
    .con01 .kakao-btn {
        width: 56px;
        height: 56px;
    }
    .con01 .kakao-btn img {
        width: 56px;
        height: 56px;
    }
}

/* ========== 공지사항 섹션 ========== */
.con-notice {
    width: 100%;
    padding: 64px 0;
    background: #000;
    box-sizing: border-box;
}
.con-notice .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.con-notice .notice-label {
    color: #ef4444;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}
.con-notice .notice-title {
    color: #e0e0e0;
    font-size: 46px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}
.con-notice .notice-list {
    width: 100%;
    max-width: 1452px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f3f4f6;
}
.con-notice .notice-item {
    border-bottom: 1px solid #f3f4f6;
}
.con-notice .notice-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.con-notice .notice-item a:hover {
    background: rgba(255, 255, 255, 0.02);
}
.con-notice .notice-item .item-left {
    display: flex;
    align-items: center;
    gap: 28px;
}
.con-notice .notice-item .new-icon {
    width: 14px;
    height: 14px;
}
.con-notice .notice-item .num {
    width: 20px;
    color: #d1d5db;
    font-size: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.con-notice .notice-item .badge {
    display: inline-flex;
    padding: 3.5px 8.75px;
    border-radius: 5.25px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 50px;
    justify-content: center;
}
.con-notice .notice-item .badge.red {
    background: #ef4444;
    color: #fff;
}
.con-notice .notice-item .item-title {
    color: #fff;
    font-size: 15.8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    margin: 0;
}
.con-notice .notice-item .dot {
    width: 5.24px;
    height: 5.24px;
    background: #ef4444;
    border-radius: 9999px;
}
.con-notice .notice-item .item-right {
    display: flex;
    align-items: center;
    gap: 42px;
}
.con-notice .notice-item .date {
    color: #9ca3af;
    font-size: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}
.con-notice .notice-item .arrow-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #f3f4f6;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con-notice .notice-item .arrow-btn img {
    width: 18px;
    height: 18px;
}
.con-notice .notice-more {
    margin-top: 0;
}
.con-notice .btn-view-all {
    width: 250px;
    padding: 18px 0;
    background: #ef4444;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.con-notice .btn-view-all:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* 공지사항 반응형 - 태블릿 */
@media all and (max-width: 1400px) {
    .con-notice .notice-title {
        font-size: 36px;
    }
    .con-notice .notice-item .item-left {
        gap: 16px;
    }
    .con-notice .notice-item .item-title {
        font-size: 14px;
    }
}

/* 공지사항 반응형 - 모바일 */
@media all and (max-width: 768px) {
    .con-notice {
        padding: 48px 0;
    }
    .con-notice .inner {
        gap: 24px;
    }
    .con-notice .notice-label {
        font-size: 16px;
    }
    .con-notice .notice-title {
        font-size: 28px;
    }
    .con-notice .notice-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 14px;
    }
    .con-notice .notice-item .item-left {
        flex-wrap: wrap;
        gap: 10px;
    }
    .con-notice .notice-item .num {
        display: none;
    }
    .con-notice .notice-item .item-title {
        font-size: 14px;
        width: 100%;
        display: contents;
    }
    .con-notice .notice-item .item-right {
        width: 100%;
        justify-content: space-between;
    }
    .con-notice .notice-item .arrow-btn {
        width: 28px;
        height: 28px;
    }
    .con-notice .btn-view-all {
        width: 200px;
        padding: 14px 0;
        font-size: 14px;
    }
}

/* ========== con02 - 커리큘럼 섹션 (라이트 테마) ========== */
.con02 {
    width: 100%;
    padding: 144px 0;
    background: #f9fafb;
    overflow: hidden;
    box-sizing: border-box;
}
.con02 .inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 72px;
}

/* 헤더 영역 */
.con02 .con02-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.con02 .con02-title-area {
    max-width: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
}

.con02 .con02-label {
    color: #2563eb;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.con02 .con02-title {
    margin: 0;
    line-height: 1.2;
}
.con02 .con02-title span {
    display: block;
    font-size: 46px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}
.con02 .con02-title .white {
    color: #222;
}
.con02 .con02-title .gray {
    color: #a4aec0;
}

.con02 .con02-desc {
    color: #666;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    text-align: right;
    margin: 0;
}

/* 프로그램 카드 영역 - 3개 카드 */
.con02 .program-cards {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 18px;
}

.con02 .program-card {
    flex: 1 1 0;
    min-height: 300px;
    padding: 36px;
    background: #fdfdfd;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.con02 .program-card:first-child {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}
.con02 .program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

.con02 .card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
}

/* 아이콘 */
.con02 .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con02 .card-icon.blue {
    background: rgba(37, 99, 235, 0.05);
}
.con02 .card-icon.purple {
    background: rgba(197, 71, 246, 0.05);
}
.con02 .card-icon.pink {
    background: rgba(246, 71, 202, 0.05);
}
.con02 .card-icon img {
    width: 32px;
    height: 32px;
}

/* 카드 텍스트 */
.con02 .card-text-area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 9px;
}
.con02 .card-category {
    color: #666;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
}
.con02 .card-title {
    color: #222;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.con02 .card-desc {
    color: #666;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}
.con02 .card-desc ul {
    margin: 0;
    padding-left: 24px;
}

/* 자세히 보기 링크 */
.con02 .card-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.con02 .card-link span {
    color: #2563eb;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.con02 .card-link img {
    width: 13px;
    height: 14px;
    transition: transform 0.3s ease;
}
.con02 .card-link:hover img {
    transform: translateX(5px);
}

/* ========== con02 반응형 ========== */
@media all and (max-width: 1400px) {
    .con02 {
        padding: 100px 0;
    }
    .con02 .inner {
        gap: 50px;
    }
    .con02 .con02-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .con02 .con02-desc {
        text-align: left;
    }
    .con02 .con02-title span {
        font-size: 36px;
    }
    .con02 .program-cards {
        flex-wrap: wrap;
    }
    .con02 .program-card {
        flex: 1 1 calc(50% - 9px);
        min-width: 280px;
    }
}

@media all and (max-width: 768px) {
    .con02 {
        padding: 60px 0;
    }
    .con02 .inner {
        gap: 40px;
    }
    .con02 .con02-header {
        flex-direction: column;
        gap: 20px;
    }
    .con02 .con02-label {
        font-size: 16px;
    }
    .con02 .con02-title span {
        font-size: 24px;
    }
    .con02 .con02-desc {
        font-size: 15px;
    }
    .con02 .con02-desc br {
        display: none;
    }
    .con02 .program-cards {
        gap: 14px;
    }
    .con02 .program-card {
        flex: 1 1 100%;
        padding: 20px;
    }
    .con02 .card-icon {
        width: 48px;
        height: 48px;
    }
    .con02 .card-title {
        font-size: 18px;
    }
    .con02 .card-desc {
        font-size: 14px;
    }
    .con02 .card-link span {
        font-size: 14px;
    }
}

/* ========== con03 - 학생작품 섹션 (다크 테마) ========== */
.con03 {
    width: 100%;
    padding: 144px 0;
    background: linear-gradient(93.94deg, rgba(239, 68, 68, 0.1) 1.6%, rgba(121, 15, 15, 0.1) 50.98%), #000;
    overflow: hidden;
    box-sizing: border-box;
}
.con03 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* 헤더 */
.con03 .con03-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.con03 .con03-label {
    color: #ef4444;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.con03 .con03-title {
    color: #fff;
    font-size: 46px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

/* 슬로건 */
.con03 .con03-slogan {
    color: #fff;
    font-size: 38px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}
.con03 .con03-slogan.top {
    text-align: left;
    align-self: flex-start;
}
.con03 .con03-slogan.bottom {
    text-align: right;
    align-self: flex-end;
}

/* 포트폴리오 무한 캐러셀 */
.con03 .portfolio-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}
.con03 .portfolio-track {
    display: flex;
    gap: 18px;
    animation: portfolioScroll 40s linear infinite;
    width: fit-content;
}
.con03 .portfolio-carousel:hover .portfolio-track {
    animation-play-state: paused;
}
@keyframes portfolioScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 포트폴리오 카드 */
.con03 .portfolio-card {
    flex: 0 0 400px;
    width: 400px;
    height: 300px;
    padding: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 18px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.con03 .portfolio-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%), 
                linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 18px;
    transition: all 0.3s ease;
}
.con03 .portfolio-card:first-child .card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%), 
                linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.con03 .portfolio-card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.con03 .portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 카드 정보 */
.con03 .card-info {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.con03 .card-text {
    display: flex;
    flex-direction: column;
}
.con03 .card-category {
    color: #00f3ff;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
}
.con03 .card-title {
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}
.con03 .card-artist {
    color: #aaa;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-top:9px;
}

/* 재생 버튼 */
.con03 .play-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0;
    background: #fff;
    flex-shrink: 0;
    margin-top: 18px;
}
.con03 .play-btn img {
    width: 20px;
    height: 20px;
}
.con03 .play-btn:hover {
    transform: scale(1.1);
}

/* 갤러리 모자이크 */
.con03 .gallery-mosaic {
    position: relative;
    width: 100%;
    max-width: 1560px;
    aspect-ratio: 1560 / 1100;
    margin: 48px 0;
}
.con03 .mosaic-item {
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
.con03 .mosaic-item:hover {
    transform: scale(1.02);
    z-index: 10;
}
.con03 .mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 모자이크 아이템 위치 (퍼센트 기반 - 반응형 유지) */
.con03 .mosaic-item.item-1 {
    left: 0;
    top: 0;
    width: 42.3%;
    height: 33.5%;
}
.con03 .mosaic-item.item-2 {
    left: 1%;
    top: 54.3%;
    width: 34.8%;
    height: 27.4%;
}
.con03 .mosaic-item.item-3 {
    left: 40.8%;
    top: 36.7%;
    width: 25.5%;
    height: 33.6%;
}
.con03 .mosaic-item.item-4 {
    left: 60%;
    top: 75.6%;
    width: 35.6%;
    height: 22.2%;
}
.con03 .mosaic-item.item-5 {
    right: 0;
    top: 3.6%;
    width: 31.9%;
    height: 26.1%;
}

/* VIEW ALL 버튼 */
.con03 .btn-view-all {
    width: 250px;
    padding: 18px 0;
    background: #ef4444;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.225px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.con03 .btn-view-all:hover {
    background: #dc2626;
    box-shadow: 0px 0px 40px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

/* ========== con03 반응형 ========== */
@media all and (max-width: 1400px) {
    .con03 {
        padding: 100px 0;
    }
    .con03 .con03-title {
        font-size: 36px;
    }
    .con03 .con03-slogan {
        font-size: 28px;
    }
}
@media all and (max-width: 768px) {
    .con03 {
        padding: 60px 0;
    }
    .con03 .inner {
        gap: 32px;
    }
    .con03 .con03-label {
        font-size: 16px;
    }
    .con03 .con03-title {
        font-size: 28px;
    }
    .con03 .con03-slogan {
        font-size: 16px;
    }
    .con03 .con03-slogan.top,
    .con03 .con03-slogan.bottom {
        text-align: center;
        align-self: center;
    }
    .con03 .portfolio-carousel {
        padding: 10px 0;
    }
    .con03 .portfolio-track {
        gap: 12px;
    }
    .con03 .portfolio-card {
        flex: 0 0 320px;
        width: 320px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .con03 .portfolio-track {
        gap: 10px;
    }
    .con03 .portfolio-card {
        flex: 0 0 200px;
        width: 200px;
        height: 150px;
        padding: 12px;
    }
    .con03 .card-category {
        font-size: 10px;
    }
    .con03 .card-title {
        font-size: 14px;
    }
    .con03 .card-artist {
        font-size: 10px;
    }
    .con03 .play-btn {
        width: 32px;
        height: 32px;
    }
    .con03 .card-title {
        font-size: 18px;
    }
    .con03 .card-artist {
        font-size: 14px;
    }
    .con03 .play-btn {
        width: 36px;
        height: 36px;
    }
    .con03 .gallery-mosaic {
        margin: 24px 0;
    }
    .con03 .btn-view-all {
        width: 200px;
        padding: 14px 0;
        font-size: 14px;
    }
    .con04 .btn-view-all{
        width: 200px !important;
        padding: 14px 0 !important;
        font-size: 14px !important;
    }
}

/* ========== con04 - 취업현황 섹션 (다크 테마) ========== */
.con04 {
    width: 100%;
    padding: 144px 0;
    background: #000;
    overflow: hidden;
    box-sizing: border-box;
}
.con04 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 133px;
}

/* 상단 콘텐츠 영역 */
.con04 .con04-content {
    width: 100%;
    display: flex;
    gap: 140px;
    align-items: flex-start;
}

/* 좌측 영역 */
.con04 .con04-left {
    flex: 0 0 651px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.con04 .con04-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.con04 .con04-label {
    color: #ef4444;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.con04 .con04-title {
    color: #fff;
    font-size: 46px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.con04 .con04-desc {
    color: #fff;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* 프로그레스바 리스트 */
.con04 .progress-list {
    width: 603px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.con04 .progress-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.con04 .progress-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.con04 .progress-label {
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
}

.con04 .progress-value {
    color: #fff;
    font-size: 22px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.con04 .progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.con04 .progress-fill {
    height: 100%;
    background: #ef4444;
    border-radius: 9999px;
    transition: width 1.5s ease-out;
}

/* 우측 영역 */
.con04 .con04-right {
    flex: 1;
    max-width: 771px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* 졸업생 리스트 */
.con04 .graduate-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.con04 .graduate-card {
    width: 100%;
    padding: 19px 37px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
}
.con04 .graduate-card.highlight {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}
.con04 .graduate-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.con04 .graduate-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.con04 .graduate-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.con04 .graduate-icon img {
    width: 32px;
    height: 32px;
}

.con04 .graduate-text {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.con04 .graduate-name-row {
    display: flex;
    align-items: center;
    gap: 9px;
}

.con04 .graduate-name {
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.con04 .graduate-role {
    color: #aaa;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.con04 .graduate-company {
    color: #aaa;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.con04 .graduate-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.con04 .status-badge {
    color: #ef4444;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
}

.con04 .status-date {
    color: #aaa;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

/* 전체 취업 현황 보기 버튼 */
.con04 .btn-view-all {
    width: 250px;
    padding: 18px 0;
    background: #ef4444;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.con04 .btn-view-all:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* ========== con04 반응형 ========== */
@media all and (max-width: 1400px) {
    .con04 {
        padding: 100px 0;
    }
    .con04 .inner {
        gap: 80px;
    }
    .con04 .con04-content {
        flex-direction: column;
        gap: 50px;
    }
    .con04 .con04-left {
        flex: none;
        width: 100%;
        gap: 50px;
    }
    .con04 .con04-header {
        gap: 18px;
    }
    .con04 .progress-list {
        width: 100%;
        max-width: 600px;
    }
    .con04 .con04-right {
        max-width: 100%;
        width: 100% !important;
    }
    .con04 .graduate-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .con04 .graduate-card {
        padding: 16px 20px;
    }
    .con04 .con04-title {
        font-size: 36px;
    }
}
@media all and (max-width: 768px) {
    .con04 {
        padding: 60px 0;
    }
    .con04 .inner {
        gap: 50px;
    }
    .con04 .con04-left {
        gap: 36px;
    }
    .con04 .con04-label {
        font-size: 16px;
    }
    .con04 .con04-title {
        font-size: 28px;
    }
    .con04 .con04-desc {
        font-size: 15px;
    }
    .con04 .con04-desc br {
        display: none;
    }
    .con04 .progress-list {
        gap: 20px;
    }
    .con04 .progress-label {
        font-size: 14px;
    }
    .con04 .progress-value {
        font-size: 18px;
    }
    .con04 .graduate-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .con04 .graduate-card {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
    }
    .con04 .graduate-info {
        flex: 1;
    }
    .con04 .graduate-icon {
        width: 40px;
        height: 40px;
    }
    .con04 .graduate-icon img {
        width: 20px;
        height: 20px;
    }
    .con04 .graduate-name {
        font-size: 15px;
    }
    .con04 .graduate-role {
        font-size: 12px;
    }
    .con04 .graduate-company {
        font-size: 13px;
    }
    .con04 .graduate-status {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    .con04 .status-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    .con04 .status-date {
        font-size: 12px;
    }
    .con04 .btn-view-status {
        width: 93.75%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ========== con05 - 공지사항 섹션 (NEW) ========== */
.con05 {
    width: 100%;
    padding: 144px 0;
    background: #f9fafb;
    overflow: hidden;
    box-sizing: border-box;
}
.con05 .inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
}

/* 공지사항 리스트 */
.con05 .notice-list {
    flex: 1 1 0;
    border-top: 1px solid rgba(34, 34, 34, 0.1);
}

.con05 .notice-item {
    padding: 36px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    cursor: pointer;
}
.con05 .notice-item:hover {
    background: rgba(34, 34, 34, 0.02);
}

.con05 .notice-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.con05 .notice-badge {
    width: 100px;
    padding: 9px 18px;
    border-radius: 5.25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}
.con05 .notice-badge.primary {
    background: #2563eb;
    color: #fff;
}
.con05 .notice-badge.default {
    background: transparent;
    border: 1px solid rgba(34, 34, 34, 0.1);
    color: #666;
}

.con05 .notice-title {
    color: #222;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.con05 .notice-meta {
    display: flex;
    align-items: center;
    gap: 18px;
}
.con05 .notice-date {
    color: #666;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}
.con05 .notice-arrow img {
    width: 8px;
    height: 16px;
}

/* 우측 타이틀 영역 */
.con05 .notice-sidebar {
    width: 508px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.con05 .notice-header {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.con05 .notice-title-area {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.con05 .notice-label {
    color: #10b981;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.con05 .notice-main-title {
    margin: 0;
    line-height: 1.2;
}
.con05 .notice-main-title span {
    display: block;
    font-size: 46px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}
.con05 .notice-main-title .white {
    color: #222;
}
.con05 .notice-main-title .gray {
    color: #a4aec0;
}

.con05 .notice-desc {
    color: #666;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.con05 .btn-view-all {
    width: 250px;
    padding: 18px 0;
    background: #fff;
    border-radius: 9999px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.225px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.con05 .btn-view-all:hover {
    background: #f3f4f6;
}

/* ========== con05 반응형 ========== */
@media all and (max-width: 1400px) {
    .con05 {
        padding: 100px 0;
    }
    .con05 .inner {
        flex-direction: column-reverse;
        gap: 50px;
    }
    .con05 .notice-sidebar {
        width: 100%;
        gap: 36px;
    }
    .con05 .notice-header {
        gap: 20px;
    }
    .con05 .notice-list {
        width: 100%;
    }
    .con05 .notice-main-title span {
        font-size: 36px;
    }
}
@media all and (max-width: 768px) {
    .con05 {
        padding: 60px 0;
    }
    .con05 .inner {
        gap: 30px;
    }
    .con05 .notice-sidebar {
        gap: 24px;
    }
    .con05 .notice-header {
        gap: 16px;
    }
    .con05 .notice-label {
        font-size: 14px;
    }
    .con05 .notice-main-title span {
        font-size: 24px;
    }
    .con05 .notice-desc {
        font-size: 14px;
    }
    .con05 .notice-desc br {
        display: none;
    }
    .con05 .notice-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
    }
    .con05 .notice-content {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .con05 .notice-badge {
        width: auto;
        padding: 4px 10px;
        font-size: 11px;
    }
    .con05 .notice-badge.primary {
        padding: 4px 10px;
    }
    .con05 .notice-badge.primary img {
        width: 14px;
        height: 14px;
        margin-right: 6px;
    }
    .con05 .notice-title {
        font-size: 14px;
        line-height: 1.5;
    }
    .con05 .notice-meta {
        width: 100%;
        justify-content: space-between;
    }
    .con05 .notice-date {
        font-size: 12px;
    }
    .con05 .notice-arrow img {
        width: 16px;
        height: 16px;
    }
    .con05 .btn-view-all {
        width: 93.75%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ========== con06 - CTA 섹션 (다크 테마) ========== */
.con06 {
    width: 100%;
    padding: 144px 0;
    background: linear-gradient(113deg, rgba(239, 68, 68, 0.1) 0%, rgba(121, 15, 15, 0.1) 100%), #000;
    overflow: hidden;
    box-sizing: border-box;
}
.con06 .inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA 카드 */
.con06 .cta-card {
    width: 100%;
    padding: 73px 19px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    box-sizing: border-box;
}

.con06 .cta-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.con06 .cta-title {
    color: #fff;
    font-size: 46px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.con06 .cta-desc {
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.con06 .cta-notice {
    color: #aaa;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* CTA 버튼 */
.con06 .btn-view-all {
    width: 250px;
    padding: 18px 0;
    background: #ef4444;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.con06 .btn-view-all:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* ========== con06 반응형 ========== */
@media all and (max-width: 1400px) {
    .con06 {
        padding: 100px 0;
    }
    .con06 .cta-card {
        padding: 50px 18px;
        gap: 50px;
    }
    .con06 .cta-title {
        font-size: 36px;
    }
    .con06 .cta-desc {
        font-size: 18px;
    }
}
@media all and (max-width: 768px) {
    .con06 {
        padding: 60px 0;
    }
    .con06 .cta-card {
        padding: 36px 16px;
        gap: 30px;
    }
    .con06 .cta-title {
        font-size: 22px;
    }
    .con06 .cta-desc {
        font-size: 15px;
    }
    .con06 .cta-desc br {
        display: none;
    }
    .con06 .cta-notice {
        font-size: 13px;
    }
    .con06 .btn-view-all {
        width: 200px;
        padding: 14px 0;
        font-size: 14px;
    }
}
