@charset "utf-8";
/*
2024-04-04 (주)파이브센스_FIVESENSES.Corp.

본 라이브러리(라이브러리 소스코드)는 (주)파이브센스의 자산입니다.
무단으로 외부로 유출 및 일시 반출을 할 경우 손해배상 책임 및 민사/형사적 책임이 있습니다.
*/

/* 섹션 헤드 */
.ac2 .ac2_head { margin-bottom: 40px; }
.ac2 .ac2_eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ac2 .ac2_eyebrow_no { font-size: 13px; font-weight: 600; color: #1f7a52; letter-spacing: 0.04em; font-family: 'Pretendard Mono','Pretendard',monospace; line-height: 1; word-break: keep-all; display: block; }
.ac2 .ac2_eyebrow_bar { width: 26px; height: 1.5px; background: #1f7a52; border-radius: 2px; flex-shrink: 0; display: inline-block; }
.ac2 .ac2_kicker { white-space: nowrap; font-size: 13px; font-weight: 600; color: #1f7a52; letter-spacing: 0.02em; line-height: 1; word-break: keep-all; display: block; }
.ac2 .ac2_title { font-size: 38px; font-weight: 700; color: #0a0b0d; margin: 0 0 18px; letter-spacing: -0.035em; line-height: 1.25; display: block; word-break: keep-all; }
.ac2 .ac2_desc { font-size: 17px; color: #5b616e; line-height: 1.7; word-break: keep-all; display: block; }

/* 더보기 인포바 */
.ac2 .more_container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 24px; padding: 20px 24px; background: #f7f7f7; border: 1px solid #dee1e6; border-radius: 24px; }
.ac2 .ac2_info_left { display: flex; align-items: center; gap: 10px; }
.ac2 .ac2_note_text { font-size: 14px; color: #3e4554; line-height: 1.5; word-break: keep-all; display: block; }
.ac2 .ac2_more_btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border: 1.5px solid #1f7a52; border-radius: 8px; font-size: 14px; font-weight: 600; color: #1f7a52; background: #fff; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.ac2 .ac2_more_btn:hover { background: #1f7a52; color: #fff; }
.ac2 .ac2_more_btn svg { transition: transform 0.2s; }
.ac2 .ac2_more_btn:hover svg { transform: translateX(3px); }

/* 게시판 리스트 */
.ac2 .board_list {
    position: relative;
}

/* 스켈레톤 base (로딩 상태) */
.ac2 .move_link {
    height: 100%;
    display: block;
    border-radius: 17px;
    background-color: #f5f5f5;
    overflow: hidden;
    transition: background-color 0.5s ease-in-out;
}

.ac2 .move_link .post_container {
    padding: 20px 25px 25px 22px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.ac2 .move_link.skeleton_ani .post_container {
    justify-content: space-around;
}

.ac2 .move_link.skeleton_ani .post_container > p {
    width: 100%;
}

.ac2 .thumb_container {
    overflow: hidden;
}

.ac2 .thumb_container .thumb {
    transition: all 0.5s ease-in-out;
}

/* AC 카드 */
.ac2 .ac2_card_link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.ac2 .ac2_card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dee1e6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    transform: translateY(0);
    transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}

.ac2 .ac2_card_link:hover .ac2_card {
    transform: translateY(-3px);
}

.ac2 .ac2_card_body {
    padding: 24px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 넘버 뱃지 */
.ac2 .ac2_card_top {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.ac2 .ac2_badge {
    font-family: 'Pretendard Mono', 'Pretendard', monospace;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 100px;
    padding: 4px 10px;
    letter-spacing: 0.04em;
    line-height: 1;
    display: inline-block;
}

/* 로고 */
.ac2 .ac2_logo_wrap {
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.ac2 .ac2_logo_img {
    max-height: 40px;
    max-width: 180px;
    width: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* 회사명 */
.ac2 .ac2_company {
    font-size: 18px;
    font-weight: 700;
    color: #0a0b0d;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
    word-break: keep-all;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    max-height: 50.5px;
}

/* 설명 */
.ac2 .ac2_card_desc {
    font-size: 13.5px;
    color: #5b616e;
    margin: 0;
    line-height: 1.55;
    word-break: keep-all;
    flex: 1;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    max-height: 67px;
}

/* 전문분야 영역 */
.ac2 .ac2_card_fields {
    border-top: 1px solid #eef0f3;
    padding: 18px 24px;
    background: #f7f7f7;
}

.ac2 .ac2_fields_label {
    font-size: 11.5px;
    font-weight: 700;
    color: #7c828a;
    letter-spacing: 0.04em;
    margin-bottom: 11px;
}

.ac2 .ac2_fields {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 50px;
    max-height: 50px;
    overflow: hidden;
    align-content: flex-start;
}

.ac2 .ac2_field_tag {
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    padding: 5px 11px;
    letter-spacing: -0.01em;
    line-height: 1;
    display: inline-block;
}

/* 상세보기 영역 */
.ac2 .ac2_detail_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-top: 1px solid #eef0f3;
    text-decoration: none;
    transition: background 150ms ease;
    background: #f7f7f7;
}

.ac2 .ac2_detail_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #7c828a;
    letter-spacing: -0.01em;
    transition: color 150ms ease;
}

.ac2 .ac2_detail_btn_wrap:hover .ac2_detail_btn {
    color: #1f7a52;
}

/* 스와이퍼 */
.ac2 .swiper {
    overflow: hidden;
    padding: 5px;
}

.ac2 .swiper-wrapper {
    align-items: stretch;
}

.ac2 .swiper-slide {
    height: auto;
    text-decoration: none;
    display: block;
}

/* 스와이퍼 화살표 버튼 */
.ac2 .swiper-button {
    width: 64px;
    height: 64px;
    top: 50%;
    opacity: 0;
    transition: all 0.5s;
}

.ac2 .swiper-button::after {display: none;}

.ac2 .swiper-button img{
    width: 100%;
    border-radius: 50%;
    box-shadow: 3px 0 8px rgba(61,61,61,.15);
}

.ac2 .swiper-button-next{
    right: 0;
    margin: 0;
    transform: translate(50%, -50%);
}

.ac2 .swiper-button-prev{
    left: 0;
    transform: translate(-50%, -50%);
}

/* 스와이프 마우스 hover 시 노출 */
.ac2 .swiper-button.swiper-button-disabled {opacity: 0;}
.ac2 .swiper.on ~ .swiper-button {opacity: 0.35;}
.ac2 .swiper-button.on {opacity: 1;}

@media all and (max-width: 991px) {
    /* 섹션 헤드 */
    .ac2 .ac2_head { margin-bottom: 28px; }
    .ac2 .ac2_title { font-size: 26px; margin-bottom: 12px; }
    .ac2 .ac2_desc { font-size: 15px; }

    /* 스켈레톤 */
    .ac2 .move_link {
        border-radius: 13px;
    }

    .ac2 .move_link .post_container {
        padding: 21px 22px;
        min-height: 100px;
    }

    .ac2 .move_link.skeleton_ani .post_container {
        padding: 21px 22px;
        min-height: 100px;
    }

    /* AC 카드 */
    .ac2 .ac2_card { border-radius: 18px; }
    .ac2 .ac2_card_body { padding: 20px 20px 16px; }
    .ac2 .ac2_company { font-size: 16px; }
    .ac2 .ac2_card_desc { font-size: 13px; }
    .ac2 .ac2_card_foot { padding: 14px 20px 0; }

    /* 스와이퍼 */
    .ac2 .swiper .swiper-wrapper {
        flex-wrap: wrap;
        gap: 14px 10px;
    }

    .ac2 .swiper .swiper-wrapper > a {
        width: calc(50% - 5px);
    }

    /* 스와이퍼 화살표 버튼 */
    .ac2 .swiper-button{
        display: none;
    }
}

@media all and (max-width: 480px) {
    .ac2 .more_container { padding: 16px 18px; gap: 14px; }
    .ac2 .ac2_more_btn { width: 100%; justify-content: center; }

    .ac2 .swiper .swiper-wrapper > a {
        width: 100%;
    }
}
