.genade-careers-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* No open roles message */
.genade-no-roles {
    text-align: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 40px 24px;
    margin-bottom: 40px;
}
.genade-no-roles-icon {
    font-size: 2.4em;
    margin-bottom: 12px;
}
.genade-no-roles h2 {
    margin: 0 0 10px;
    font-size: 1.4em;
}
.genade-no-roles p {
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
}

/* Roles grid */
.genade-roles-heading {
    margin-bottom: 20px;
}
.genade-roles-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 44px;
}
.genade-role-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}
.genade-role-dept {
    display: inline-block;
    background: #eef1fd;
    color: #4c51bf;
    font-size: 0.76em;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.genade-role-card h3 {
    margin: 0 0 6px;
    font-size: 1.2em;
}
.genade-role-meta {
    color: #6b7280;
    font-size: 0.9em;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}
.genade-role-excerpt,
.genade-role-full {
    color: #4b5563;
    font-size: 0.95em;
    line-height: 1.65;
    margin-bottom: 12px;
}
.genade-role-excerpt p,
.genade-role-full p {
    margin: 0 0 10px;
}
.genade-toggle-desc {
    display: inline-block;
    background: none;
    border: none;
    color: #667eea;
    font-weight: 700;
    font-size: 0.86em;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
}
.genade-toggle-desc:hover {
    text-decoration: underline;
}
.genade-apply-btn {
    display: block;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 0.92em;
    cursor: pointer;
}

/* Application form */
.genade-application-form h2 {
    margin-bottom: 6px;
}
.genade-form-sub {
    color: #6b7280;
    margin-bottom: 24px;
}
.genade-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.genade-form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 6px;
}
.genade-form-group input[type="text"],
.genade-form-group input[type="email"],
.genade-form-group input[type="tel"],
.genade-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95em;
    box-sizing: border-box;
}
.genade-form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    font-size: 0.88em;
    box-sizing: border-box;
}
.genade-file-hint {
    display: block;
    font-size: 0.78em;
    color: #9ca3af;
    margin-top: 4px;
}

/* Honeypot field, hidden from real visitors, left for bots to fill in */
.genade-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
}

.genade-submit-btn {
    width: 100%;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 1em;
    cursor: pointer;
    box-sizing: border-box;
}
.genade-submit-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.genade-form-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.92em;
}
.genade-form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.genade-form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 640px) {
    .genade-form-row {
        grid-template-columns: 1fr;
    }
}
