@media (max-width: 1440px) {
    /* ================= HEADER ================= */
    .hc-wrap .header .inner {
        max-width: 1100px;
    }

    .hc-wrap .logo-img {
        height: 40px;
    }

    .hc-wrap .menu > li {
        width: 140px;
    }

    .hc-wrap .menu > li > a {
        font-size: 17px;
        color: #222;
    }

    .hc-wrap .submenu-wrap::before {
        width: calc((100% - 1100px) / 2 + 600px);
    }

    .hc-wrap .submenu-inner {
        max-width: 1100px;
    }

    .hc-wrap .submenu-left {
        padding-left: 200px;
    }

    .hc-wrap .submenu-left h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hc-wrap .submenu-left p {
        font-size: 16px;
    }

    .hc-wrap .submenu-right {
        grid-template-columns: repeat(3, 140px);
    }

    .hc-wrap .submenu-col ul {
        gap: 16px;
    }

    .hc-wrap .submenu-col a {
        font-size: 15px;
    }

    /* ================= MAIN BANNER ================= */
    :root {
        --container-padding: 140px;
    }

    .hc-wrap .banner-ui {
        bottom: 70px;
    }

    .hc-wrap .banner-text {
        margin-bottom: 30px;
    }

    .hc-wrap .banner-text h2 {
        font-size: 40px;
    }

    .hc-wrap .banner-control {
        width: 140px;
        height: 36px;
    }

    .hc-wrap .ctrl-btn {
        width: 30px;
        height: 30px;
    }

    .hc-wrap .ctrl-btn svg {
        width: 16px;
        height: 16px;
    }

    .hc-wrap .banner-card {
        width: 280px;
    }

    .hc-wrap .card-inner {
        padding: 20px;
        gap: 16px;
    }

    .hc-wrap .card-image {
        height: 200px;
    }

    .hc-wrap .card-buttons {
        gap: 12px;
    }

    .hc-wrap .card-buttons .btn-primary,
    .hc-wrap .card-buttons .btn-secondary {
        height: 48px;
        font-size: 18px;
    }

    .hc-wrap .banner-slide {
        min-height: 520px;
    }

    /* ================= MAIN BOARD ================= */
    .hc-wrap .main-board {
        padding: 80px 0;
    }

    .hc-wrap .board-inner {
        max-width: 1100px;
        gap: 80px;
    }

    .hc-wrap .section-header {
        margin-bottom: 26px;
    }

    .hc-wrap .section-header h2 {
        font-size: 26px;
    }

    /* ================= 공지사항 ================= */
    .hc-wrap .notice-list a {
        padding: 16px;
        font-size: 16px;
    }

    .hc-wrap .notice-list .date {
        width: 90px;
    }

    /* ================= 일자리 정보 ================= */
    .hc-wrap .job-grid {
        gap: 30px;
    }

    .hc-wrap .job-card {
        height: 232px;
        padding: 20px 10px;
    }

    .hc-wrap .job-title {
        font-size: 16px;
    }

    /* ================= PHOTO GALLERY ================= */
    .hc-wrap .main-gallery {
        padding: 0 0 40px 0;
    }

    .hc-wrap .gallery-inner {
        max-width: 1100px;
    }

    .hc-wrap .gallery-grid {
        gap: 30px;
    }

    .hc-wrap .gallery-img {
        height: 180px;
    }

    .hc-wrap .gallery-title {
        font-size: 16px;
    }

    /* ================= SERVICE SECTION ================= */
    .hc-wrap .main-service {
        padding: 80px 0;
    }

    .hc-wrap .service-inner {
        max-width: 1100px;
    }

    .hc-wrap .service-grid {
        gap: 30px;
    }

    .hc-wrap .service-card {
        padding: 24px 20px;
        min-height: 200px;
        background-size: 200px;
    }

    .hc-wrap .service-text h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hc-wrap .service-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* ================= PARTNER SLIDER ================= */
    .hc-wrap .main-partner {
        padding: 30px 0;
    }

    .hc-wrap .partner-item {
        width: 200px;
    }

    .hc-wrap .partner-item img {
        max-width: 140px;
    }

    /* ================= FOOTER ================= */
    .hc-wrap .footer {
        padding: 50px 0;
    }

    .hc-wrap .footer-inner {
        max-width: 1100px;
    }

    .hc-wrap .footer-logo {
        height: 36px;
    }

    .hc-wrap .footer-info {
        font-size: 17px;
    }

    .hc-wrap .footer-right {
        gap: 30px;
    }

    .hc-wrap .footer-right a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    /* ================= HEADER ================= */
    .hc-wrap .header .inner {
        height: 70px;
        padding: 0 20px;
    }

    /* 로고 */
    .hc-wrap .logo-img {
        height: 34px;
    }

    /* PC 메뉴 숨김 */
    .hc-wrap .pc-gnb {
        display: none;
    }

    .hc-wrap .submenu-wrap {
        display: none;
    }

    .hc-wrap .menu-toggle {
        width: 24px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .hc-wrap .menu-toggle span {
        width: 100%;
        height: 3px;
        background: #222;
        border-radius: 2px;
        transition: all .35s ease;
    }

    .hc-wrap .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hc-wrap .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .hc-wrap .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* ================= 모바일 메뉴 ================= */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    .hc-wrap .mobile-nav {
        display: block;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 1000;
        transition: right .4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    }

    .hc-wrap .mobile-nav.active {
        right: 0;
    }

    .hc-wrap .mobile-menu {
        display: flex;
        flex-direction: column;
    }

    .hc-wrap .mobile-item {
        border-bottom: 1px solid #eee;
    }

    .hc-wrap .mobile-btn {
        width: 100%;
        height: 60px;
        font-size: 18px;
        font-weight: 600;
        background: none;
        border: none;
        text-align: left;
        padding: 0 24px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hc-wrap .mobile-sub {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        background: #f7f7f7;
    }

    .hc-wrap .mobile-sub li a {
        display: block;
        padding: 14px 30px;
        font-size: 16px;
        color: #444;
    }

    .hc-wrap .mobile-item.active .mobile-sub {
        max-height: 300px;
    }

    /* ================= MAIN BANNER ================= */
    .hc-wrap .banner-inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px 0;
        max-width: 100%;
        text-align: center;
    }

    .hc-wrap .banner-ui {
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: 40px;
    }

    .hc-wrap .banner-right {
        display: none;
    }

    .hc-wrap .banner-left {
        margin-top: 0;
        align-items: center;
    }

    .hc-wrap .banner-text {
        margin-bottom: 20px;
    }

    .hc-wrap .banner-text h2 {
        font-size: 32px;
        line-height: 1.35;
    }

    .hc-wrap .banner-control {
        width: 130px;
        height: 34px;
    }

    .hc-wrap .ctrl-btn {
        width: 28px;
        height: 28px;
    }

    .hc-wrap .ctrl-btn svg {
        width: 14px;
        height: 14px;
    }

    .hc-wrap .pagination {
        font-size: 14px;
    }

    .hc-wrap .banner-slide {
        min-height: 500px;
        background-position: center;
        background-size: 85%;
    }

    /* ================= MAIN BOARD ================= */
    .hc-wrap .main-board {
        padding: 80px 10px;
    }

    .hc-wrap .board-inner {
        max-width: none;
        flex-direction: column;
        gap: 80px;
    }

    .hc-wrap .section-header {
        margin-bottom: 20px;
    }

    .hc-wrap .section-header h2 {
        font-size: 24px;
    }

    .hc-wrap .section-header .more {
        font-size: 14px;
    }

    /* ================= 공지사항 ================= */
    .hc-wrap .notice-list a {
        padding: 16px 10px;
        font-size: 16px;
    }

    .hc-wrap .notice-list .title {
        font-size: 15px;
    }

    .hc-wrap .notice-list .date {
        font-size: 14px;
        width: 80px;
    }

    /* ================= 일자리 정보 ================= */
    .hc-wrap .job-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .hc-wrap .job-card {
        height: auto;
        padding: 16px 10px;

    }

    .hc-wrap .job-title {
        line-height: 1.4;
        min-height: calc(1.4em * 2);
        font-size: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .hc-wrap .job-date {
        font-size: 14px;
    }

    /* ================= PHOTO GALLERY ================= */
    .hc-wrap .main-gallery {
        padding: 0 10px 80px 10px;
    }

    .hc-wrap .gallery-inner {
        max-width: none;
    }

    .hc-wrap .gallery-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }

    .hc-wrap .gallery-img {
        height: auto;
        margin-bottom: 4px;
    }

    .hc-wrap .gallery-title {
        font-size: 16px;
    }

    /* ================= SERVICE SECTION ================= */
    .hc-wrap .main-service {
        padding: 80px 10px;
    }

    .hc-wrap .service-inner {
        max-width: none;
    }

    .hc-wrap .service-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .hc-wrap .service-card {
        padding: 24px 20px;
        min-height: 200px;
        background-position: right 24px bottom 20px;
        background-size: 240px;

    }

    .hc-wrap .service-text h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .hc-wrap .service-text p {
        font-size: 14px;
        line-height: 1.3;
    }

    .hc-wrap .service-img {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 140px;
    }

    /* ================= PARTNER SLIDER ================= */
    .hc-wrap .main-partner {
        padding: 30px 0;
    }

    .hc-wrap .partner-item {
        width: 180px;
    }

    .hc-wrap .partner-item img {
        max-width: 140px;
    }

    /* ================= FOOTER ================= */
    .hc-wrap .footer {
        padding: 40px 10px;
    }

    .hc-wrap .footer-inner {
        justify-content: center;
        max-width: none;
    }

    .hc-wrap .footer-logo {
        height: 30px;
        margin-bottom: 20px;
    }

    .hc-wrap .footer-m {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        margin-bottom: 18px;
    }

    .hc-wrap .footer-m a {
        font-size: 14px;
        color: #555;
        position: relative;
    }

    .hc-wrap .footer-m a:not(:last-child)::after {
        content: "|";
        margin-left: 16px;
        color: #bbb;
    }

    .hc-wrap .footer-m a:nth-child(3)::after {
        display: none;
    }


    .hc-wrap .footer-info {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .hc-wrap .footer-info span {
        display: block;
    }

    .hc-wrap .slash-m {
        display: none !important;
    }

    .hc-wrap .footer-right {
        display: none;
    }

    .hc-wrap .footer-copy {
        font-size: 14px;
    }
}