@charset "utf-8";

/* GA 채용공고 목록 스타일 */
#ga_recruit_list {
    padding: 15px;
    background-color: #f9f9f9;
}

/* 제목 스타일 */
.ga_title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3b86ff;
    position: relative;
}

.ga_title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #ff5722;
}

/* GA 정보 영역 */
.ga_info {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 15px;
    margin-bottom: 20px;
}

.ga_info_inner {
    display: flex;
    align-items: center;
}

.ga_logo {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.ga_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ga_logo i {
    font-size: 32px;
    color: #aaa;
}

.ga_detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px;
}

.ga_desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
    line-height: 1.4;
}

.ga_count {
    font-size: 14px;
    color: #555;
}

.ga_count strong {
    color: #3b86ff;
    font-weight: 700;
}

/* 채용공고 목록 */
.recruit_list {
    margin-bottom: 20px;
}

.recruit_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruit_item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    transition: all 0.2s ease;
}

.recruit_item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.recruit_logo {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border: 1px solid #eee;
}

.recruit_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.recruit_logo .no_logo {
    font-size: 11px;
    color: #666;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
    word-break: keep-all;
}

.recruit_info {
    flex: 1;
    min-width: 0;
}

.recruit_title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.recruit_company {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.recruit_details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

.recruit_type {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 700;
    font-size: 14px;
}

.recruit_type.fc {
    background-color: #e3f2fd;
    color: #1976d2;
}

.recruit_type.tmr {
    background-color: #e8f5e9;
    color: #388e3c;
}

.recruit_type.general {
    background-color: #fff3e0;
    color: #f57c00;
}

.recruit_salary {
    font-weight: 600;
}

.recruit_divider {
    margin: 0 5px;
    color: #ddd;
}

.recruit_location {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.recruit_location i {
    color: #3b86ff;
    margin-right: 3px;
}

.recruit_meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.recruit_due {
    font-size: 13px;
    color: #e53935;
    font-weight: 600;
}

.recruit_date {
    font-size: 12px;
    color: #999;
}

.recruit_apply {
    background-color: #3b86ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.recruit_apply:hover {
    background-color: #2a75e8;
}

/* 페이지 네비게이션 */
.pg_wrap {
    margin: 20px 0;
    text-align: center;
}

/* 데이터 없음 메시지 */
.no_data {
    padding: 50px 0;
    text-align: center;
    color: #888;
    font-size: 16px;
}

/* 버튼 영역 */
.btn_area {
    text-align: center;
    margin: 20px 0;
}

.btn_back {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn_back:hover {
    background-color: #e0e0e0;
}

/* 반응형 스타일 */
@media (max-width: 480px) {
    .recruit_meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .recruit_due, .recruit_date {
        margin-bottom: 5px;
    }
    
    .recruit_apply {
        align-self: flex-end;
    }
} 