.fb-career-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-family: Montserrat, sans-serif;
}

.fb-career-item {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.fb-career-title {
    font-size: 1.8em;
    font-weight: 800;
    margin: 0 0 24px 0;
    display: inline-block;
    background: linear-gradient(90deg, #a2aaf0, #cd32e3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fb-career-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.fb-career-info {
    flex: 0 0 260px;
}

.fb-career-info-list {
    margin: 0;
}

.fb-career-info-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.fb-career-info-row dt {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.fb-career-info-row dd {
    margin: 0;
    font-weight: 600;
    color: #222;
}

.fb-career-accordions {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.fb-career-accordion {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
}

.fb-career-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f9f9fb;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 1em;
    text-align: left;
    color: #222;
}

.fb-career-accordion-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.fb-career-accordion-icon::before,
.fb-career-accordion-icon::after {
    content: "";
    position: absolute;
    background: #a2aaf0;
    transition: transform 0.2s ease;
}

.fb-career-accordion-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.fb-career-accordion-icon::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.fb-career-accordion-toggle[aria-expanded="true"] .fb-career-accordion-icon::after {
    transform: translateX(-50%) scaleY(0);
}

.fb-career-accordion-panel {
    padding: 18px 20px;
    border-top: 1px solid #e5e5e5;
}

.fb-career-accordion-content {
    line-height: 1.6;
    color: #444;
}

.fb-career-apply {
    margin-top: 28px;
}

.fb-career-apply-btn,
.fb-career-submit-btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 0;
    background: linear-gradient(90deg, #a2aaf0, #cd32e3);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fb-career-apply-btn:hover,
.fb-career-submit-btn:hover {
    opacity: 0.85;
}

@media screen and (max-width: 782px) {
    .fb-career-body {
        flex-direction: column;
    }

    .fb-career-info {
        flex: 1 1 auto;
        width: 100%;
    }
}

/* MODAL */

.fb-career-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
}

.fb-career-modal[hidden] {
    display: none;
}

.fb-career-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.fb-career-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 0;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.fb-career-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.fb-career-modal-dialog h3 {
    margin: 0 0 4px 0;
    font-weight: 800;
}

.fb-career-modal-job {
    color: #777;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.fb-career-form-label {
    display: block;
    font-weight: 700;
    margin: 14px 0 6px 0;
    font-size: 0.9em;
}

.fb-career-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: inherit;
    box-sizing: border-box;
}

.fb-career-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.fb-career-form-status {
    margin-top: 14px;
    font-weight: 600;
    min-height: 1.2em;
}

.fb-career-form-status.is-error {
    color: #c0392b;
}

.fb-career-form-status.is-success {
    color: #1b8a4c;
}

.fb-career-submit-btn {
    margin-top: 20px;
    width: 100%;
}
