@charset "utf-8";
/* 메인페이지 스타일 */

/* 통일된 색상 팔레트 - 비즈니스 라이너 스타일 */
:root {
    /* 메인 색상 - 네이비 블루 기반 */
    --primary: #002D5B;           /* 메인 네이비 블루 */
    --primary-hover: #001A35;     /* 메인 네이비 블루 호버 */
    --primary-light: #E6EEF5;     /* 연한 블루 배경 */
    --primary-lighter: #F0F5FA;   /* 더 연한 블루 */
    --primary-dark: #001122;      /* 어두운 네이비 */
    
    /* 텍스트 색상 */
    --text-primary: #1f2937;      /* 기본 텍스트 */
    --text-secondary: #4b5563;    /* 보조 텍스트 */
    --text-muted: #6b7280;        /* 흐린 텍스트 */
    --text-light: #9ca3af;        /* 밝은 텍스트 */
    --text-white: #ffffff;        /* 흰색 텍스트 */
    
    /* 배경 색상 */
    --bg-white: #ffffff;          /* 흰색 배경 */
    --bg-light: #f9fafb;          /* 밝은 배경 */
    --bg-lighter: #f3f4f6;        /* 더 밝은 배경 */
    --bg-dark: #1f2937;           /* 어두운 배경 */
    --bg-darker: #111827;         /* 더 어두운 배경 */
    
    /* 테두리 색상 */
    --border-light: #f3f4f6;      /* 밝은 테두리 */
    --border-default: #e5e7eb;    /* 기본 테두리 */
    --border-dark: #d1d5db;       /* 어두운 테두리 */
    
    /* 그림자 - 최소화 */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.08);
    
    /* 폰트 크기 */
    --font-size-base: 14px;
    --font-size-xs: 0.857rem;  /* 12px */
    --font-size-sm: 1rem;      /* 14px */
    --font-size-md: 1.143rem;  /* 16px */
    --font-size-lg: 1.286rem;  /* 18px */
    
    /* 대체용 변수 (기존 코드 호환성) */
    --secondary: #4b5563;
    --accent: #002D5B;
    --text-dark: #1f2937;
    --border: #e5e7eb;
    --white: #ffffff;
    --dark: #1f2937;
    --darker: #111827;
    
    /* 반지름 및 전환 효과 */
    --radius-sm: 0.125rem;
    --radius-md: 0.25rem;
    --radius-lg: 0.5rem;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
}

/* 메인 비주얼 - 비즈니스 라이너 스타일 */
.main_visual {
    position: relative;
    background: var(--bg-light);
    padding: 0;
    border-bottom: 1px solid var(--border-default);
    overflow: hidden;
    min-height: 310px;
    display: flex;
    align-items: center;
    max-width: 1300px !important;
    margin: 0 auto;
    border-radius: 12px;
}

/* 메인 비주얼 배경 이미지 */
.main_visual.incruit_main_visual {
    background-image: url('../img/main_banner.jpg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

/* 모바일에서 이미지 크기 조정 */
@media (max-width: 768px) {
    .main_visual {
        min-height: 160px;
    }
    
    .main_visual.incruit_main_visual {
        margin: 0px 0 !important;
        background-size: contain;
        background-color: var(--bg-light);
    }
}


.main_visual_text {
    position: relative;
    max-width: 600px;
}

.main_visual_text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    color: var(--primary);
    text-shadow: none;
}

.main_visual_text p {
    font-size: var(--font-size-md);
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-shadow: none;
    font-weight: 400;
}

.main_visual_btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn_primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.15s;
    border: 1px solid var(--primary);
    letter-spacing: -0.2px;
}

.btn_primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: none;
    box-shadow: none;
}

.btn_outline {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--bg-white);
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: 2px;
    border: 1px solid var(--primary);
    text-decoration: none;
    transition: all 0.15s;
    letter-spacing: -0.2px;
}

.btn_outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: none;
    box-shadow: none;
}

/* 섹션 공통 스타일 - 통일된 여백 */
/* 공통 inner 클래스 - 섹션 내부 컨테이너 */
.main_section .inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.main_section {
    padding: 40px 0;
    border-bottom: none;
    background: #ffffff;
}

/* 짝수 섹션 배경 */
.main_section:nth-child(even) {
    /* background: #f9fafb; */
}

.section_title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0;
    letter-spacing: -0.3px;
}

.section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    border-bottom: none;
}

.section_header .section_title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.section_header .section_title::after {
    display: none;
}

.section_subtitle {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-left: 12px;
    position: absolute;
    bottom: 4px;
    left: 180px;
}

/* 인크루트 스타일 섹션 헤더 */
.section_header_incruit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.section_header_incruit .section_title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0;
}

.section_header_incruit .section_title::after {
    display: none;
}

.more_btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: transparent;
}

.more_btn:hover {
    color: #1e293b;
    border-color: #d1d5db;
    background: #f9fafb;
}

.more_btn i {
    margin-left: 2px;
    font-size: 11px;
}

/* 뉴스 슬라이더 */
.news_section {
    background-color: var(--bg-light);
}

.news_slider {
    position: relative;
    margin: 0 -15px;
}

.news_slider .slick-slide {
    padding: 0 15px;
}

.news_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-dark);
    z-index: 1;
    cursor: pointer;
    transition: all 0.2s;
}

.news_slider .slick-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.news_slider .slick-prev {
    left: -20px;
}

.news_slider .slick-next {
    right: -20px;
}

.news_item {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.15s;
}

.news_item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.news_item_img {
    height: 180px;
    overflow: hidden;
}

.news_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news_item:hover .news_item_img img {
    transform: scale(1.05);
}

.news_item_text {
    padding: 20px;
}

.news_item_text h3 {
    font-size: var(--font-size-md);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--text-primary);
}

.news_item_text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news_item_date {
    font-size: 12px;
    color: var(--text-muted);
}

/* 커뮤니티 섹션 */
.community_wrap {
    display: flex;
    gap: 30px;
    margin: 0 -15px;
}

.community_box {
    flex: 1;
    padding: 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 2px;
    position: relative;
    transition: all 0.15s;
}

.community_box h3 {
    font-size: var(--font-size-md);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
    letter-spacing: -0.3px;
}

.community_box .more_btn {
    position: absolute;
    top: 25px;
    right: 25px;
}

/* DB 섹션 - 4개 요소 1줄 고정 배치 */
.db_section {
    padding: 40px 0;
    /* background: #f9fafb; */
}
.db_wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.db_box {
    flex: 1;
    min-width: 180px;
    padding: 24px 16px;
    background: #ffffff !important;
    border-radius: 12px !important;
    text-align: center;
    transition: all 0.2s ease;
    border: 2px solid #e8eaed !important;
}

.db_box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.db_icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748b;
    border: none;
}

.db_box h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.db_box p {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 14px;
    line-height: 1.4;
}

.db_link {
    display: inline-block;
    padding: 7px 14px;
    background: transparent;
    color: #64748b;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
}

.db_link:hover {
    background: #f8fafc;
    color: #1e293b;
    border-color: #d1d5db;
    transform: none;
}

/* GA 미팅신청 배너 */
.ga_meeting_section {
    padding: 40px 0;
    background: #ffffff;
}

.ga_meeting_banner {
    display: flex;
    align-items: center;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 28px 32px;
    border: 2px solid #e8eaed !important;
    box-shadow: none;
    margin: 0;
}

.ga_meeting_text {
    flex: 1;
    padding: 0;
}

.ga_meeting_text h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.ga_meeting_text p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn_meeting {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    letter-spacing: -0.2px;
}

.btn_meeting:hover {
    background: var(--primary-hover);
    color: var(--bg-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 45, 91, 0.2);
}

.ga_meeting_image {
    /* flex: 0 0 300px; */
    text-align: center;
}

.ga_meeting_image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

/* 스크롤 애니메이션 트리거 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 호버 효과 강화 */
.main_section {
    transition: all 0.3s ease;
}

.main_section:hover {
    /* background-color: rgba(0, 45, 91, 0.01); */
}

/* 반응형 개선 */
@media (max-width: 1200px) {
    .main_visual {
        padding: 50px 0;
    }
    
    .main_visual_text h2 {
        font-size: 32px;
    }
    
    .db_wrap {
        flex-wrap: nowrap;
        gap: 12px;
        margin: 0;
    }
    
    .db_box {
        flex: 0 0 calc(25% - 9px);
        min-width: 200px;
        padding: 20px 15px;
    }
    
    .section_header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0;
        margin-bottom: 14px;
        border-bottom: none;
    }
    
    .section_title {
        font-size: 16px;
        margin-bottom: 0;
        flex: 1;
    }
    
    .section_title::after {
        display: none;
    }
    
    .more_btn {
        font-size: 12px;
        padding: 5px 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .section_subtitle {
        position: static;
        margin-left: 0;
    }
    
    /* 섹션 하단 구분선 */
    .main_section {
        position: relative;
        padding: 32px 0;
    }
    
    .main_section .inner {
        padding: 0 16px;
    }
    
    .main_section::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .main_visual {
        padding: 50px 0;
    }
    
    .main_visual_text h2 {
        font-size: 32px;
    }
    
    .community_wrap {
        flex-direction: column;
    }
    
    .ga_meeting_banner {
        flex-direction: column;
        padding: 24px;
        border-radius: 10px;
    }
    
    .ga_meeting_text {
        padding: 0;
        text-align: center;
    }
    
    .ga_meeting_text h2 {
        margin-bottom: 10px;
    }
    
    .ga_meeting_text p {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .main_visual {
        padding: 20px 10px;
    }
    
    .main_visual_text h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .main_visual_text p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .main_visual_btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn_primary,
    .btn_outline {
        padding: 10px 20px;
        text-align: center;
        font-size: 13px;
    }
    
    .section_title {
        font-size: 15px;
    }
    
    .main_section {
        padding: 24px 0 !important;
        animation-delay: 0s !important;
    }
    
    .main_section .inner {
        padding: 0 12px;
    }
    
    .db_box {
        flex: 0 0 calc(50% - 6px);
        padding: 16px 12px;
        min-width: auto;
        margin: 0;
    }
    
    .db_icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .community_wrap {
        gap: 15px;
        margin: 0 -5px;
    }
    
    .community_box {
        padding: 15px;
        margin: 0 5px;
    }
    
    .community_box h3 {
        font-size: 16px;
    }
    
    .ga_meeting_text h2 {
        font-size: 17px;
    }
    
    .ga_meeting_text p {
        font-size: 13px;
    }
    
    .btn_meeting {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* =================================
   인크루트 메인페이지 추가 스타일 
   ================================= */

/* 메인 비주얼 - 비즈니스 라이너 스타일 */
.incruit_main_visual {
    position: relative;
    background: var(--primary);
    padding: 50px 40px;
    color: var(--white);
    overflow: hidden;
    border-radius: 12px !important;
    max-width: 1300px;
    margin: 0 auto;
}

.incruit_main_visual .main_visual_content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.incruit_main_visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    opacity: 1;
}

.main_visual_content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
}

.main_text_section {
    flex: 1;
    max-width: 600px;
    margin-left: 80px;
}

.main_title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title_highlight {
    display: block;
    font-size: 28px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 5px;
}

.title_main {
    font-size: 48px;
    font-weight: 700;
    text-shadow: none;
    letter-spacing: -1px;
}

.main_subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

/* 메인 검색 */
.main_search_wrap {
    margin-bottom: 35px;
}

.main_search_form {
    position: relative;
}

.search_input_group {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: none;
}

.main_search_input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.main_search_input::placeholder {
    color: #999;
}

.main_search_btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
    border-radius: 0 12px 12px 0;
}

.main_search_btn:hover {
    background: #d97706;
}

/* 퀵 버튼들 */
.main_quick_btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.15s ease;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: -0.2px;
}

.quick_btn:hover {
    background: rgba(255,255,255,0.1);
    transform: none;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.quick_btn i {
    font-size: 18px;
}

/* 사이드 인기검색어 */
.main_visual_side {
    flex: 0 0 300px;
}

.trending_keywords {
    background: rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 16px;
    border: none;
}

.trending_keywords h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.trending_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.trending_list li {
    margin-bottom: 0;
}

.trending_list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 13px;
}

.trending_list a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.trending_list .rank {
    width: 18px;
    height: 18px;
    background: rgba(245, 158, 11, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border: none;
    color: white;
}

.trending_list .keyword {
    font-size: 13px;
    font-weight: 500;
}

/* 인크루트 커뮤니티 섹션 */
.incruit_community_section {
    padding: 20px 0;
    /* background: #fafbfc; */
}

.incruit_community_section .section_header {
    text-align: center;
    margin-bottom: 20px;
}

.incruit_community_section .section_title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.incruit_community_section .title_icon {
    margin-right: 10px;
}

.incruit_community_section .section_subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.community_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.community_card {
    background: var(--bg-white);
    border-radius: 2px;
    padding: 30px;
    box-shadow: none;
    transition: all 0.15s ease;
    border: 1px solid var(--border-default);
}

.community_card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.card_header h3 {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    letter-spacing: -0.3px;
}

.card_header h3 i {
    margin-right: 8px;
    color: var(--primary);
}

.more_link {
    color: var(--primary);
    text-decoration: none;
    font-size: var(--font-size-xs);
    font-weight: 600;
    transition: color 0.15s;
}

.more_link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.card_content {
    font-size: 13px;
    line-height: 13px;
}

/* 뉴스 슬라이더 섹션 */
.news_slider_section {
    padding: 60px 0;
    background: white;
}

/* 반응형 - 인크루트 스타일 */
@media (max-width: 1024px) {
    .main_visual_content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .main_visual_side {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .main_title {
        font-size: 36px;
    }
    
    .title_main {
        font-size: 42px;
    }
    
    .community_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .incruit_main_visual {
        padding: 40px 16px 30px;
        border-radius: 0;
    }
    
    .incruit_main_visual .main_visual_content {
        padding: 0;
    }
    
    .main_title {
        font-size: 24px;
    }
    
    .title_main {
        font-size: 28px;
    }
    
    .title_highlight {
        font-size: 20px;
    }
    
    .main_subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .main_search_input {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .main_search_btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .search_input_group {
        margin: 0 10px;
        border-radius: 10px;
    }
    
    .quick_btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .trending_keywords {
        padding: 15px;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .community_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .community_card {
        padding: 15px;
    }
    
    .incruit_community_section {
        padding: 40px 10px;
    }
    
    .incruit_community_section .section_title {
        font-size: 22px;
    }
    
    /* 뉴스 슬라이더 모바일 최적화 */
    .news-section {
        padding: 15px 5px;
    }
    
    .news-card {
        min-width: 200px;
        flex: 0 0 200px;
        padding: 12px;
    }
    
    .news-title {
        font-size: 14px;
        height: 36px;
    }
    
    .news-content {
        font-size: 12px;
        height: 48px;
    }
}

/* 모바일 (480px 이하) 추가 최적화 */
@media (max-width: 480px) {
    /* 메인 비주얼 최적화 */
    .incruit_main_visual {
        padding: 30px 12px 20px;
        border-radius: 0;
    }
    
    .incruit_main_visual .main_visual_content {
        padding: 0;
    }
    
    .main_text_section {
        margin-left: 0;
    }
    
    .main_title {
        font-size: 20px;
    }
    
    .title_main {
        font-size: 24px;
    }
    
    .title_highlight {
        font-size: 16px;
    }
    
    .main_subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    /* 검색 영역 모바일 최적화 */
    .search_input_group {
        margin: 0 10px;
        border-radius: 10px;
    }
    
    .main_search_btn {
        border-radius: 0 10px 10px 0;
    }
    
    .main_search_input {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .main_search_btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    /* 컴뮤니티 섹션 모바일 */
    .incruit_community_section {
        padding: 30px 5px;
    }
    
    .incruit_community_section .section_title {
        font-size: 18px;
    }
    
    .community_card {
        padding: 12px;
    }
    
    .card_header h3 {
        font-size: 15px;
    }
    
    /* DB 섹션 모바일 */
    .db_section {
        padding: 24px 0;
    }
    
    .db_wrap {
        gap: 10px;
        margin: 0;
        flex-wrap: wrap;
    }
    
    .db_box {
        flex: 0 0 calc(50% - 5px);
        padding: 16px 12px;
        min-width: auto;
        margin: 0;
        border-radius: 12px;
    }
    
    .db_icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0 auto 10px;
        border-radius: 8px;
    }
    
    .db_box h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .db_box p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .db_link {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* GA 미팅 섹션 모바일 */
    .ga_meeting_section {
        padding: 24px 0;
    }
    
    .ga_meeting_banner {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        border-radius: 10px;
        margin: 0;
    }
    
    .ga_meeting_text {
        padding: 0;
        text-align: center;
    }
    
    .ga_meeting_text h2 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .ga_meeting_text p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .btn_meeting {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* 뉴스 섹션 모바일 */
    .news_slider_section {
        padding: 30px 5px;
    }
    
    .news-section-title {
        font-size: 18px;
    }
    
    .news-card {
        min-width: 180px;
        flex: 0 0 180px;
        padding: 10px;
    }
    
    .news-title {
        font-size: 13px;
        height: 32px;
    }
    
    .news-content {
        font-size: 11px;
        height: 44px;
    }
    
    .news-more {
        font-size: 11px;
    }
}
