/* Careers page layout */
.careers-section {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* Job links list */
.careers-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    /* Each job */
    .careers-links li {
        margin: 12px 0;
    }

    /* Job link style */
    .careers-links a {
        display: inline-block;
        font-size: 18px;
        color: rgb(30,104,133);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

        /* Hover effect */
        .careers-links a:hover {
            background-color: #f3f3f3;
            color: #000;
            transform: translateX(4px);
        }

/* Career image */
.careers-image {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

/* Section title */
.careers-section h2 {
    margin-bottom: 15px;
}

/* Divider */
hr.solid {
    border: none;
    border-top: 3px solid #ddd;
    margin: 20px 0;
}
.job-desc {
    font-size: 14px;
}