.recruiter-card {
    background: var(--brand-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.recruiter-photo {
    aspect-ratio: 16 / 11;
    background: var(--soft);
    overflow: hidden;
}

.recruiter-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.recruiter-content {
    padding: 1.5rem;
}

.recruiter-eyebrow {
    color: var(--brand-yellow);
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 900;
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.recruiter-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.recruiter-role {
    color: var(--text);
    margin-bottom: 1.2rem;
}

.recruiter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.recruiter-actions .btn-outline-light {
    border-color: var(--brand-black);
    color: var(--brand-black);
}

.application-form-section {
    padding-top: 2.4rem;
}

.application-form-section input:not([type="checkbox"], [type="radio"], [type="submit"]),
.application-form-section select,
.application-form-section textarea {
    border: 1px solid var(--line);
    border-radius: .7rem;
    max-width: 100%;
    padding: .75rem 1rem;
    width: 100%;
}

.application-form-section input[type="submit"] {
    background: var(--brand-yellow);
    border: 2px solid var(--brand-yellow);
    border-radius: 50em;
    font-family: var(--font-heading);
    font-weight: 900;
    min-height: 48px;
    padding: .75rem 1.4rem;
}

.custum-file-upload {
    align-items: center;
    background-color: var(--brand-white);
    border: 2px dashed #cacaca;
    border-radius: 10px;
    box-shadow: 0 48px 35px -48px rgba(0, 0, 0, .1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 200px;
    justify-content: center;
    max-width: 100%;
    padding: 1.5rem;
    position: relative;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
    width: 300px;
    margin-bottom: 2rem;
}

.custum-file-upload:hover,
.custum-file-upload:focus-within {
    background-color: var(--soft);
    border-color: var(--brand-yellow);
}

.custum-file-upload.has-file {
    border-color: var(--brand-yellow);
}

.custum-file-upload.has-file .icon svg {
    fill: #198754;
    height: 64px;
    width: 64px;
}

.custum-file-upload .icon,
.custum-file-upload .text {
    align-items: center;
    display: flex;
    justify-content: center;
}

.custum-file-upload .icon svg {
    fill: rgba(75, 85, 99, 1);
    height: 80px;
    width: 80px;
}

.custum-file-upload .text {
    max-width: 100%;
}

.custum-file-upload .text span {
    color: rgba(75, 85, 99, 1);
    font-weight: 400;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custum-file-upload input[type="file"] {
    height: 1px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.custum-file-upload .wpcf7-not-valid-tip {
    bottom: .45rem;
    color: rgb(220, 50, 50);
    font-size: 18px;
    left: 1rem;
    position: absolute;
    right: 1rem;
    text-align: center;
    font-size: 18px;
    top: 35px !important;

}

span.wpcf7-form-control-wrap {
    width: 100%;
}
.wpcf7-not-valid-tip {
    width: max-content;
    height: max-content;
    top: 22px !important;
    left: -25px !important;
}