/* =============================================
   Recruitment Page Styles
   ============================================= */

/* Hero Section Styles (from style.css) */
.main-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 2px #207fdd;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.main-hero-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 2px #207fdd;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Vision Hero Section (from vision.css) */
.vision-hero {
    background:
        linear-gradient(to right, rgb(32 127 221/1) 0%, rgb(32 127 221/1) 35%, rgb(32 127 221/0) 60%, rgb(32 127 221/0) 100%),
        linear-gradient(to left, transparent 0%, transparent 70%, rgb(32 127 221/1) 100%),
        url("../images/recruit-mv.png")no-repeat center right/auto 150%;
    background-color: #207fdd;
    border-radius: 0 0 50px 50px;
    padding: 150px 0 100px;
    margin-top: -100px;
    position: relative;
    overflow: hidden;
}

.vision-text-hero {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

/* Background Zone */
.background-zone {
    background: url("../images/hero-bg.png")no-repeat top left/100%;
    background-color: #f3f9fb;
}

.my-margin {
    padding: 100px 0;
    margin: -50px auto;
}

/* Vision Content Section */
.vision-content-section {}

.vision-content-title {
    font-size: 42px;
    font-weight: 900;
    color: #207fdd;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Table Section */
.recruitment-table-section {
    padding: 0 0 40px;
}

/* Table Wrapper */
.recruitment-table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 30px;
}

/* Table Styles */
.recruitment-table {
    margin-bottom: 0;
    font-size: 1rem;
}

.recruitment-table th {
    background-color: #207fdd;
    color: white;
    font-weight: 700;
    padding: 20px 25px;
    vertical-align: middle;
    width: 200px;
    border: none;
    font-size: 1rem;
}

.recruitment-table td {
    padding: 20px 25px;
    vertical-align: middle;
    background-color: white;
    border: 1px solid #e5e7eb;
    line-height: 1.8;
}

.recruitment-table tbody tr:hover td {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.recruitment-table td strong {
    color: #1e3a8a;
}

/* Table responsive */
@media (max-width: 768px) {
    .recruitment-table-wrapper {
        border-radius: 8px;
        margin-top: 20px;
        padding: 10px;
    }

    .recruitment-table {
        font-size: 0.875rem;
    }

    .recruitment-table th,
    .recruitment-table td {
        padding: 15px;
        display: block;
        width: 100%;
    }

    .recruitment-table th {
        border-radius: 0;
        text-align: left;
    }

    .recruitment-table tr {
        margin-bottom: 20px;
        display: block;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
    }

    .recruitment-table td {
        border-top: none;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .vision-hero {
        background:
            linear-gradient(to right, rgb(32 127 221/1) 0%, rgb(32 127 221/1) 45%, rgb(32 127 221/0) 60%, rgb(32 127 221/0) 100%),
            url("../images/recruit-mv.png")no-repeat center right/cover;
        padding: 150px 0 80px;
    }

    .vision-text-hero {
        min-height: auto;
        padding: 0 30px 40px;
    }

    .main-hero-title {
        font-size: 36px;
    }

    .vision-content-title {
        font-size: 32px;
    }

    .vision-content-section {
        padding: 60px 0 30px;
    }
}

@media (max-width: 768px) {
    .vision-hero {
        background:
            linear-gradient(to right, rgb(32 127 221/1) 0%, rgb(32 127 221/.7) 50%, rgb(32 127 221/.5) 60%, rgb(32 127 221/.3) 100%),
            url("../images/recruit-mv.png")no-repeat top right 50%/cover;
        padding: 150px 0 50px;
        border-radius: 0 0 25px 25px;
    }

    .main-hero-title {
        font-size: 28px;
    }

    .vision-content-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .main-hero-title {
        font-size: 28px;
    }

    .vision-content-title {
        font-size: 22px;
    }
}