.career-body{
    background-color: #FAFBFC;
}

.career-title{
    color:white;
    min-height: 12rem;
    background: radial-gradient(circle at right bottom, var(--blue) 60%, var(--blue-light) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-title h1{
    text-align: center;
    font-size: 3em;
}

.job-list {
    min-height: 20rem;
    padding: 100px 0;
    background-color: #FAFBFC;
}

.job-link {
    background-color: white;
    width:70%;
    margin: auto;
    cursor: pointer;
    padding: 20px;
    border-radius: 5px;
    text-decoration: none;
    color: inherit;
    transition: filter .12s ease;
    border: 1px solid rgba(0, 0, 0, .13);
}

.job-link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.job-link:hover { filter: brightness(0.98); }

.job-link .title {
  font-weight: 500;
}

.job-link .suffix {
  font-size: 0.85em;
  color: gray;
}


.module-bento { display: flex; flex-direction: column; }
.pad { min-height: unset !important; }
.pad-content { flex: 1; }

.back-link {
    display: flex;
    justify-content: flex-end;
    color: #555;
    text-decoration: none;
    text-align:right;
}
.back-link:hover { text-decoration: underline; }
.job-meta {
    color: #666;
    margin-bottom: 16px;
    font-size: .95rem;
}
.job-description {
    color: #014360;
    margin: 0px 20px 50px 20px;
}
.btn-apply {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    background: var(--orange);
    color: #fff;
    font-weight: 500;
}
.btn-apply:hover { filter: brightness(0.97); }
.form-row {
    display: block;
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;              /* fields take the whole width */
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .95rem;
    box-sizing: border-box;   /* ensures padding doesn’t break width */
}

.form-row textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: #014360;
    box-shadow: 0 0 0 2px rgba(1, 67, 96, 0.15);
}

.career-show{
    padding: 8rem;
}

.apply-form{
    padding: 20px;
    margin: 20px;
    border: 1px solid rgba(0, 0, 0, .13);
}

label.required::after {
    content: " *";
    color: #c1272d;
}

@media screen and (max-width: 1024px) {
    .job-list {
        padding: 50px 0;
        background-color: #FAFBFC;
    }
    .job-link {
        width:90%;
    }
    .job-description {
        color: #014360;
        margin: 0px;
    }
    .apply-form{
        padding: 5px;
        margin: 0px;
        border:none;
    }

    .career-show{
        padding: 8rem 1rem;
    }
}