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

/* 통일된 색상 팔레트 - 비즈니스 라이너 스타일 */
:root {
    /* 메인 색상 - #EC6521 기반 */
    --primary: #EC6521;           /* 메인 오렌지 */
    --primary-hover: #d4551a;     /* 메인 오렌지 호버 */
    --primary-light: #FFF4EC;     /* 연한 오렌지 배경 */
    --primary-lighter: #FFFBF7;   /* 더 연한 오렌지 */
    --primary-dark: #c2410c;      /* 어두운 오렌지 */
    
    /* 텍스트 색상 */
    --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: #EC6521;
    --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;
}

/* 메인 비주얼 배경 이미지 */
.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;
}

/* 섹션 공통 스타일 - 통일된 여백 */
.main_section {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-white);
    background: var(--bg-white);
}

/* 세번째 섹션마다 배경색 변경 */
.main_section:nth-child(even) {
    background: var(--bg-white);
}

.section_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
}

.section_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px dashed var(--accent);
}

.section_header .section_title {
    margin-bottom: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
}

.section_header .section_title::after {
    bottom: -8px;
}

.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-block;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.more_btn:hover {
    color: var(--primary);
}

.more_btn i {
    margin-left: 5px;
}

/* 뉴스 슬라이더 */
.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: 20px 20px;
}
.db_wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 0 -10px;
    padding: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.db_box {
    flex: 0 0 calc(25% - 15px);
    min-width: 200px;
    padding: 25px 20px;
    background: var(--bg-white);
    border-radius: 2px;
    text-align: center;
    transition: all 0.15s;
    border: 1px solid var(--border-light);
}

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

.db_icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--primary-lighter);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    border: 1px solid var(--primary-light);
}

.db_box h3 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.db_box p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

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

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

/* GA 미팅신청 배너 */
.ga_meeting_section {
    padding: 30px 0;
    background: var(--bg-light);
    border-bottom: 0;
}

.ga_meeting_banner {
    display: flex;
    align-items: center;
    /* gap: 50px; */
    background: var(--bg-white);
    border-radius: 2px;
    padding: 40px;
    border: 1px solid var(--border-default);
    box-shadow: none;
    margin: 20px 20px;
}

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

.ga_meeting_text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.ga_meeting_text p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

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

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

.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(236, 101, 33, 0.01); */
}

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

@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: 30px;
    }
    
    .ga_meeting_text {
        padding: 0 0 30px;
        text-align: center;
    }
}

@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: 18px;
    }
    
    .main_section {
        padding: 10px 0px !important;
        animation-delay: 0s !important;
    }
    
    .db_box {
        flex: 0 0 calc(25% - 10px);
        padding: 15px 10px;
        min-width: 150px;
        margin: 5px 0px 5px 0px;
    }
    
    .db_icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .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: 20px;
    }
    
    .ga_meeting_text p {
        font-size: 13px;
    }
    
    .btn_meeting {
        padding: 10px 20px;
        font-size: 13px;
    }
}

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

/* 메인 비주얼 - 비즈니스 라이너 스타일 */
.incruit_main_visual {
    position: relative;
    background: var(--primary);
    padding: 50px 20px;
    color: var(--white);
    overflow: hidden;
    border-bottom: 1px solid var(--border-default);
}

.incruit_main_visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    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: 2px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border-default);
}

.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: var(--primary);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.main_search_btn:hover {
    background: var(--primary-hover);
}

/* 퀵 버튼들 */
.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.05);
    padding: 30px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.2);
}

.trending_keywords h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

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

.trending_list li {
    margin-bottom: 8px;
}

.trending_list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.3s;
}

.trending_list a:hover {
    opacity: 0.8;
    color: white;
}

.trending_list .rank {
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
}

.trending_list .keyword {
    flex: 1;
    font-size: 14px;
}

/* 인크루트 커뮤니티 섹션 */
.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 10px 30px;
    }
    
    .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;
    }
    
    .quick_btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .trending_keywords {
        padding: 15px;
        margin: 0 10px;
    }
    
    .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 5px 20px;
    }
    
    .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 5px;
        border-radius: 30px;
    }
    
    .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: 20px 0;
    }
    
    .db_wrap {
        gap: 8px;
        margin: 0 -3px;
    }
    
    .db_box {
        flex: 0 0 calc(25% - 6px);
        padding: 12px 8px;
        min-width: 120px;
        margin: 2px;
        border-radius: 4px;
    }
    
    .db_icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin: 0 auto 12px;
    }
    
    .db_box h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .db_box p {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    /* GA 미팅 섹션 모바일 */
    .ga_meeting_section {
        padding: 20px 0;
    }
    
    .ga_meeting_banner {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .ga_meeting_text {
        padding: 0;
        text-align: center;
    }
    
    .ga_meeting_text h2 {
        font-size: var(--mobile-font-size-md);
    }
    
    .ga_meeting_text p {
        font-size: var(--mobile-font-size-sm);
    }
    
    .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;
    }
}
