@charset "utf-8";

/* ==========================
   Recruitment Section
========================== */

.recruitment-section {
    background: linear-gradient(
        135deg,
        #e8f5f9 0%,
        #f4f9ff 50%,
        #ffffff 100%
    );
}

.recruitment-card {
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(31, 78, 121, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.recruitment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        #0ea5a4,
        #1f4e79,
        #4f46e5
    );
}

.recruitment-tag {
    display: inline-block;
    background: #e0f7f6;
    color: #0f766e;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.recruitment-card h2 {
    font-size: 3rem;
    color: #1f4e79;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5f6b7a;
    max-width: 700px;
    margin: 0 auto 40px;
}

.vacancies-box {
    background: linear-gradient(
        135deg,
        #f8fbff,
        #eef7ff
    );
    border: 1px solid #dceaf8;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 40px;
}

.vacancies-box h3 {
    color: #1f4e79;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.vacancy-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #ffffff;
    margin: 12px auto;
    padding: 18px 24px;
    border-radius: 12px;
    max-width: 450px;
    box-shadow: 0 4px 15px rgba(31, 78, 121, 0.08);
    transition: all 0.3s ease;
}

.vacancy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(31, 78, 121, 0.15);
}

.icon {
    font-size: 1.4rem;
}

.vacancy-item span:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
}

.recruitment-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(
        135deg,
        #1f4e79,
        #2563eb
    );
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.recruitment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

/* Responsive */

@media (max-width: 768px) {

    .recruitment-card {
        padding: 40px 25px;
    }

    .recruitment-card h2 {
        font-size: 2.2rem;
    }

    .intro {
        font-size: 1rem;
    }

    .vacancy-item {
        padding: 15px;
    }
}
