.careers-wrap {
max-width: var(--container);
margin: 0 auto;
padding: 56px 24px 80px;
} .jobs-toolbar {
display: flex;
gap: 16px;
margin-bottom: 28px;
flex-wrap: wrap;
}
.search-box {
flex: 1 1 320px;
position: relative;
background: var(--white);
border: 1px solid var(--border);
border-radius: 999px;
box-shadow: var(--shadow-card);
display: flex;
align-items: center;
padding: 0 20px;
height: 56px;
}
.search-box svg {
flex-shrink: 0;
color: var(--text);
}
.search-box input {
border: none;
outline: none;
background: transparent;
width: 100%;
height: 100%;
padding-left: 12px;
font-size: 14px;
color: var(--text-dark);
}
.search-box input::placeholder {
color: var(--text);
}
.filter-box {
flex: 0 0 240px;
position: relative;
background: var(--white);
border: 1px solid var(--border);
border-radius: 999px;
box-shadow: var(--shadow-card);
height: 56px;
display: flex;
align-items: center;
padding: 0 44px 0 20px;
transition: border-color .2s ease, box-shadow .2s ease;
}
.filter-box svg {
flex-shrink: 0;
color: var(--text);
pointer-events: none;
transition: color .2s ease;
}
.filter-box:hover {
border-color: #c9d1e6;
}
.filter-box:focus-within {
border-color: var(--primary);
box-shadow: 0 0 0 4px rgba(58, 121, 227, 0.12), var(--shadow-card);
}
.filter-box:focus-within svg {
color: var(--primary);
}
.filter-box select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
flex: 1;
height: 100%;
border: none;
background: transparent;
padding: 0 0 0 12px;
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
cursor: pointer;
outline: none;
border-radius: 999px;
}
.filter-box select:invalid,
.filter-box select option[value=""] {
color: var(--text);
}
.filter-box::after {
content: '';
position: absolute;
right: 20px;
top: 50%;
width: 9px;
height: 9px;
border-right: 2px solid var(--text);
border-bottom: 2px solid var(--text);
transform: translateY(-70%) rotate(45deg);
pointer-events: none;
transition: border-color .2s ease, transform .2s ease;
}
.filter-box:focus-within::after {
border-color: var(--primary);
}
@media (max-width:640px) {
.filter-box {
flex: 1 1 100%;
}
} .custom-select {
position: static;
flex: 1;
height: 100%;
display: flex;
align-items: center;
}
.custom-select select {
display: none;
} .cs-trigger {
width: 100%;
height: 100%;
display: flex;
align-items: center;
background: transparent;
border: none;
padding: 0 0 0 12px;
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
cursor: pointer;
text-align: left;
}
.cs-trigger.placeholder {
color: var(--text);
}
.cs-menu {
position: absolute;
top: calc(100% + 10px);
left: -1px;
right: -1px;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-md);
box-shadow: 0 16px 40px rgba(31, 53, 107, 0.16);
padding: 8px;
z-index: 20;
opacity: 0;
visibility: hidden;
transform: translateY(-6px);
transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.filter-box.menu-open .cs-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.filter-box.menu-open {
border-color: var(--primary);
box-shadow: 0 0 0 4px rgba(58, 121, 227, 0.12), var(--shadow-card);
}
.filter-box.menu-open svg {
color: var(--primary);
}
.filter-box.menu-open::after {
border-color: var(--primary);
transform: translateY(-30%) rotate(-135deg);
}
.cs-option {
padding: 12px 16px;
border-radius: var(--radius-sm);
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
cursor: pointer;
transition: background .15s ease, color .15s ease;
}
.cs-option:hover {
background: #F0F4FE;
}
.cs-option.selected {
background: var(--primary);
color: var(--white);
font-weight: 600;
}
.cs-option.selected:hover {
background: var(--primary-dark);
}
.cs-option.placeholder-option {
color: var(--text);
}
.cs-option.placeholder-option.selected {
color: var(--white);
} .jobs-list {
display: flex;
flex-direction: column;
gap: 20px;
min-height: 220px;
}
.job-card {
background: var(--white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-card);
padding: 28px 32px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
transition: box-shadow .25s ease, transform .25s ease;
}
.job-card:hover {
box-shadow: var(--shadow-card-hover);
transform: translateY(-2px);
}
.job-info h3 {
margin: 0 0 10px;
font-size: 24px;
font-weight: 700;
color: var(--text-dark);
}
.job-info .job-meta {
margin: 0 0 6px;
font-size: 18px;
color: var(--text);
}
.job-info .job-meta b {
color: var(--text);
font-weight: 600;
}
.job-info .job-desc {
margin: 6px 0 0;
font-size: 18px;
line-height: 1.6;
color: var(--text);
max-width: 720px;
}
.job-actions {
display: flex;
flex-direction: column;
gap: 12px;
flex-shrink: 0;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border-radius: 999px;
padding: 13px 26px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: 1px solid transparent;
white-space: nowrap;
text-decoration: none;
transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:active {
transform: scale(.97);
}
.btn-outline {
background: var(--white);
color: var(--text-dark);
border-color: var(--border);
}
.btn-outline:hover {
border-color: var(--primary);
color: var(--primary);
}
.btn-primary {
background: var(--primary);
color: var(--white);
}
.btn-primary:hover {
background: var(--primary-dark);
}
@media (max-width:720px) {
.job-card {
flex-direction: column;
align-items: stretch;
}
.job-actions {
flex-direction: row;
}
.job-actions .btn {
flex: 1;
}
}
@media (max-width:480px) {
.job-actions {
flex-direction: column;
}
.job-actions .btn {
width: 100%;
}
} .jobs-status {
text-align: center;
padding: 60px 20px;
color: var(--text);
font-size: 18px;
}
.spinner {
width: 32px;
height: 32px;
border: 3px solid var(--border);
border-top-color: var(--primary);
border-radius: 50%;
margin: 0 auto 14px;
animation: spin .8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
} .pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
margin-top: 36px;
flex-wrap: wrap;
}
.page-btn {
min-width: 42px;
height: 42px;
padding: 0 12px;
border-radius: 999px;
border: 1px solid var(--border);
background: var(--white);
color: var(--text-dark);
font-size: 14px;
font-weight: 600;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: all .2s ease;
}
.page-btn:hover:not(:disabled) {
border-color: var(--primary);
color: var(--primary);
}
.page-btn.active {
background: var(--primary);
border-color: var(--primary);
color: var(--white);
}
.page-btn.active:hover {
color: var(--white);
}
.page-btn:disabled {
opacity: .4;
cursor: not-allowed;
} .modal-overlay {
position: fixed;
inset: 0;
background: rgba(20, 26, 46, 0.55);
display: none;
align-items: center;
justify-content: center;
padding: 24px;
z-index: 1000;
opacity: 0;
transition: opacity .25s ease;
}
.modal-overlay.open {
display: flex;
opacity: 1;
}
.modal {
background: var(--white);
border-radius: var(--radius-lg);
max-width: 760px;
width: 100%;
max-height: 90vh;
overflow-y: auto;
padding: 40px 44px 36px;
position: relative;
box-shadow: 0 30px 60px rgba(20, 26, 46, .3);
transform: translateY(20px);
transition: transform .25s ease;
}
.modal-overlay.open .modal {
transform: translateY(0);
}
.modal-close {
position: absolute;
top: 24px;
right: 28px;
background: none;
border: none;
font-size: 26px;
line-height: 1;
color: var(--text-dark);
cursor: pointer;
padding: 4px;
}
.modal-close:hover {
color: var(--primary);
}
.modal h2 {
font-size: 38px;
font-weight: 700;
margin: 0 0 18px;
color: var(--text-dark);
}
.modal .job-id,
.modal .job-title-line {
margin: 0 0 6px;
font-size: 18px;
color: var(--text);
}
.modal .job-title-line {
margin-bottom: 22px;
}
.modal .job-id span,
.modal .job-title-line span {
color: var(--text-dark);
font-weight: 600;
}
.form-row {
display: flex;
gap: 24px;
margin-bottom: 20px;
}
.form-group {
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
}
.form-group.full {
margin-bottom: 20px;
}
.form-group label {
font-size: 14px;
font-weight: 700;
color: var(--text-dark);
}
.form-group label .req {
color: #E0435C;
margin-left: 2px;
}
.form-group input {
height: 54px;
border-radius: 999px;
border: 1px solid var(--border);
padding: 0 22px;
font-size: 14px;
outline: none;
width: 100%;
}
.form-group input:focus {
border-color: var(--primary);
}
.file-drop {
border: 2px dashed var(--border);
border-radius: var(--radius-md);
min-height: 150px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text);
font-size: 14px;
cursor: pointer;
margin-bottom: 26px;
padding: 20px;
transition: border-color .2s ease, background .2s ease;
}
.file-drop:hover,
.file-drop.dragover {
border-color: var(--primary);
background: #F3F7FE;
}
.file-drop.has-file {
color: var(--text-dark);
font-weight: 600;
border-style: solid;
}
#fileDrop input[type="file"] {
display: none !important;
}
#fileDrop {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
#fileDrop .wpcf7-form-control-wrap {
display: none !important;
}
.btn-submit {
width: 100%;
height: 58px;
border-radius: 999px;
border: none;
background: var(--primary);
color: var(--white);
font-size: 14px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
cursor: pointer;
transition: background .2s ease;
}
.btn-submit:hover {
background: var(--primary-dark);
}
.btn-submit:disabled {
opacity: .6;
cursor: not-allowed;
}
.form-success {
display: none;
background: #EAFAF1;
border: 1px solid var(--green);
color: #1E8E5A;
border-radius: var(--radius-md);
padding: 14px 18px;
font-size: 16px;
margin-bottom: 20px;
}
.form-success.show {
display: block;
}
@media (max-width:600px) {
.modal {
padding: 32px 22px 28px;
}
.modal h2 {
font-size: 30px;
}
.form-row {
flex-direction: column;
gap: 20px;
margin-bottom: 0;
}
.form-group.full {
margin-top: 20px;
}
}