/* ================================
   RECRUIT 상세 페이지 CSS (급여체계)
   ================================ */

@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 40px 120px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

h1 {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1536px;
    padding: 0 40px;
}

.org-chart {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.org-chart img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.org-chart img.show {
    opacity: 1;
    transform: translateY(0);
}

.sub-visual {
    margin: 72px 0 50px 40px;
    padding-left: 47px;
    font-weight: 500;
    border-left: 5px solid;
    box-sizing: border-box;
}

.pay-desc {
    max-width: 800px;
    margin: 50px auto 0 auto;
    text-align: center;
}

.pay-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pay-text {
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    color: #4b5563;
}

.keep-all {
    word-break: keep-all
}

.mt-2 {
    margin-top: .5rem
}

.px-2 {
    padding: 0 .5rem
}

.inline-block {
    display: inline-block
}

.py-5 {
    padding: 1.25rem 0
}

.font-extrabold {
    font-weight: 800
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-sm {
    font-size: 0.875rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity));
}

.blank_div2 {
    margin-top: 6rem;
}

/* ================================
   반응형 디자인 - 태블릿 (1024px 이하)
   ================================ */
@media (max-width: 1024px) {
    .org-chart img {
        max-width: 800px;
    }

    .sub-visual {
        margin-left: 30px;
        font-size: 20px;
    }

    .content {
        padding: 0 20px 80px;
    }
}

/* ================================
   반응형 디자인 - 모바일 (768px 이하)
   ================================ */
@media (max-width: 768px) {
    .org-chart img {
        max-width: 600px;
    }

    .container {
        padding: 0 30px;
    }

    .sub-visual {
        margin-left: 0;
        font-size: 18px;
        padding-left: 30px;
    }

    h1 {
        font-size: 40px;
    }

    .pay-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .org-chart {
        margin-top: 50px;
    }

    .pay-text {
        font-size: 1rem;
    }

    .container {
        padding: 0;
    }
}

/* ================================
   반응형 디자인 - 작은 모바일 (480px 이하)
   ================================ */
@media (max-width: 480px) {
    .org-chart {
        margin-top: 30px;
    }

    .org-chart img {
        max-width: 400px;
    }

    .container {
        padding: 0 20px;
    }

    .sub-visual {
        margin-left: 0;
        font-size: 16px;
        padding-left: 15px;
        margin-top: 30px;
    }

    .text-blue-500 {
        font-size: 14px;
        padding: 0;
    }

    h1 {
        font-size: 28px;
    }

    .pay-title {
        font-size: 1.4rem;
    }

    .pay-text {
        font-size: 0.95rem;
    }
}

/* ================================
   채용 링크 버튼 스타일
   ================================ */
.goRecruit {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-left: -40px;
    margin-right: -40px;
    width: 100%;
    max-width: 100%;
}

.job-link {
    width: 250px;
    padding: 20px;
    text-align: center;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.5s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-link:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.5s ease, transform 0.3s ease;
}