.rm-kenjo-careers {
    display: grid;
    gap: 24px;
}

.rm-kenjo-job {
    border: 1px solid #d9dde3;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.rm-kenjo-job__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.rm-kenjo-job h2 {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.2;
}

.rm-kenjo-job__header p {
    margin: 0;
    color: #596273;
}

.rm-kenjo-job__description {
    margin-bottom: 20px;
}

.rm-kenjo-job__description > *:last-child {
    margin-bottom: 0;
}

.rm-kenjo-apply-panel {
    margin-top: 20px;
}

.rm-kenjo-apply {
    border-top: 1px solid #e7eaf0;
    padding-top: 20px;
}

.rm-kenjo-apply__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 24px;
    margin-bottom: 16px;
    align-items: start;
}

.rm-kenjo-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    font-weight: 600;
}

.rm-kenjo-field--wide,
.rm-kenjo-documents {
    grid-column: 1 / -1;
}

.rm-kenjo-apply input,
.rm-kenjo-apply select,
.rm-kenjo-apply textarea {
    width: 100%;
    border: 1px solid #cfd5df;
    border-radius: 6px;
    padding: 12px 14px;
    min-height: 52px;
    background: #fff;
    font: inherit;
    line-height: 1.3;
    box-sizing: border-box;
}

.rm-kenjo-apply textarea {
    min-height: 132px;
    resize: vertical;
}

.rm-kenjo-apply input[type="file"] {
    display: flex;
    align-items: center;
    padding: 11px 14px;
    cursor: pointer;
}

.rm-kenjo-documents {
    margin: 10px 0 20px;
}

.rm-kenjo-documents h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.rm-kenjo-unsupported {
    margin: 0 0 16px;
    border-radius: 6px;
    padding: 12px 14px;
    background: #fff8e5;
    color: #6d4b00;
}

.rm-kenjo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    padding: 11px 18px;
    background: #1f6feb;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.rm-kenjo-button:hover,
.rm-kenjo-button:focus {
    background: #185abc;
    color: #fff;
}

.rm-kenjo-apply-toggle[aria-expanded="true"] {
    background: #34445a;
}

.rm-kenjo-notice {
    margin: 0 0 18px;
    border-radius: 6px;
    padding: 12px 14px;
}

.rm-kenjo-notice--success {
    background: #e8f5ee;
    color: #135c35;
}

.rm-kenjo-notice--error {
    background: #fdecec;
    color: #8a1f1f;
}

.rm-kenjo-notice--empty {
    background: #f3f5f8;
    color: #3d4654;
}

@media (max-width: 640px) {
    .rm-kenjo-job {
        padding: 18px;
    }

    .rm-kenjo-apply__grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 641px) and (max-width: 980px) {
    .rm-kenjo-apply__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
