/* 공개 채용 홈 이미지형 메인 레이아웃을 정의한다. */
.recruit-home-page {
    background: var(--k-bg-white);
}

/* 공개 채용 홈 이미지형 본문 여백을 정의한다. */
.recruit-home-main {
    padding: 32px 0 80px;
    background: var(--k-bg-white);
}

/* 공개 채용 홈 이미지형 섹션 간격을 정의한다. */
.recruit-home-shell {
    gap: 44px;
}

/* 공개 채용 홈 이미지형 섹션 헤더를 정의한다. */
.recruit-section-head {
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
}

/* 공개 채용 홈 이미지형 섹션 제목을 정의한다. */
.recruit-section-title {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--ref-ink);
}

/* 공개 채용 홈 이미지형 더보기 링크를 정의한다. */
.recruit-section-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-color: var(--ref-warm-200);
    border-radius: var(--k-radius-pill);
    background: var(--k-bg-white);
    color: var(--k-text-gray);
    font-size: 13px;
    font-weight: 600;
    justify-content: center;
    line-height: 1;
}

/* 공개 채용 홈 이미지형 더보기 화살표를 정의한다. */
.recruit-section-link::after {
    content: "";
    display: inline-flex;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--k-text-gray);
    border-bottom: 2px solid var(--k-text-gray);
    transform: rotate(-45deg) skew(6deg, 6deg);
    transform-origin: center;
}

/* 공개 채용 홈 하단 배너 섹션을 정의한다. */
.recruit-bottom-banner-section {
    margin-top: 0;
}

/* 공개 채용 홈 하단 단일 배너를 정의한다. */
.recruit-bottom-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 84px;
    padding: 0 42px;
    border-radius: var(--k-radius-md);
    background: var(--ref-ink);
    color: var(--k-bg-white);
    text-decoration: none;
    overflow: hidden;
}

/* 공개 채용 홈 하단 배너 문구 영역을 정의한다. */
.recruit-bottom-banner-copy {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
}

/* 공개 채용 홈 하단 배너 강조 문구를 정의한다. */
.recruit-bottom-banner-copy strong {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--k-bg-white);
}

/* 공개 채용 홈 하단 배너 첫 이용 문구를 정의한다. */
.recruit-bottom-banner-copy em {
    padding: 0 4px;
    background: var(--ref-accent-green);
    color: var(--ref-ink);
    font-style: normal;
}

/* 공개 채용 홈 하단 배너 행동 버튼을 정의한다. */
.recruit-bottom-banner-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--k-radius-pill);
    background: var(--ref-accent-orange);
    color: var(--ref-ink);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

/* 공개 채용 홈 광고 문의 모달의 입력 영역을 정의한다. */
.recruit-inquiry-modal .input-freemode,
.recruit-inquiry-modal .contact-modal-textarea {
    width: 100%;
    box-sizing: border-box;
}

/* 공개 채용 홈 광고 문의 모달의 본문 입력 높이를 정의한다. */
.recruit-inquiry-modal .contact-modal-textarea {
    min-height: 180px;
    color: var(--ref-ink);
    line-height: 1.6;
}

/* 공개 채용 홈 하단 배너 장식 아이콘을 정의한다. */
.recruit-bottom-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--k-radius-sm);
    background: var(--k-bg-white);
    color: var(--ref-accent-orange);
    font-size: 24px;
    transform: rotate(-14deg);
}

/* 공개 채용 홈 하단 배너 우측 장식 아이콘을 정의한다. */
.recruit-bottom-banner-icon.is-right {
    color: var(--ref-accent-blue);
    transform: rotate(10deg);
}

/* 태블릿 이하 이미지형 채용 홈 레이아웃을 정의한다. */
@media (max-width: 1200px) {
    .recruit-home-main {
        padding: 28px 0 96px;
    }

    .recruit-bottom-banner {
        gap: 18px;
        padding: 22px;
    }

    .recruit-bottom-banner-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 18px;
        white-space: normal;
    }

    .recruit-bottom-banner-copy strong {
        font-size: 26px;
    }

}

/* 모바일 이미지형 채용 홈 레이아웃을 정의한다. */
@media (max-width: 768px) {
    .recruit-home-shell {
        gap: 36px;
    }

    .recruit-section-head {
        align-items: stretch;
        gap: 12px;
        margin-bottom: 18px;
    }

    .recruit-section-link {
        width: fit-content;
    }

    .recruit-bottom-banner {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
    }

    .recruit-bottom-banner-icon.is-right {
        display: none;
    }

    .recruit-bottom-banner-action {
        width: 100%;
    }

}
