.jobs-carousel {
    position: relative;
    width: 100%;
    max-width: none;
    /* controls width */
    margin: 0 auto;
    padding: 0 35px;
    flex: 1;
}

.jc-track {
    background: #f5f7fa;
    border-radius: 16px;
    padding: 30px;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.jc-card {
    width: 100%;
}

.jc-pretext {
    text-align: center;
    font-size: 14.5px;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 15px;
    -webkit-text-stroke: 0.3px;
    text-transform: uppercase;
}

.jc-title {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    text-align: center;
    letter-spacing: -0.04em;
    margin-bottom: 5px;
    color: #6ab235;
}

.jc-body {
    font-family: 'Vectora Roman';
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.jc-link {
    display: block;
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    color: #6ab235;
    text-decoration: underline;
    text-transform: uppercase;
}

.jc-label {
    font-family: 'Vectora Roman';
    font-weight: 700;
    -webkit-text-stroke: 0.3px;
}

/* remove dots completely */
.jc-dots {
    display: none;
}

/* bottom controls */
.jc-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* arrows */
.jc-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jc-arrow:hover {
    border-color: #6ab235;
}

.jc-arrow:disabled {
    opacity: 0.5;
    cursor: default;
}