.vh-talent-page {
    min-width: 0;
    color: var(--vh-talent-ink);
    background: var(--vh-public-page);
    font-family: Inter, "Instrument Sans", Arial, sans-serif;
}

.vh-talent-page *,
.vh-talent-page *::before,
.vh-talent-page *::after {
    box-sizing: border-box;
}

.vh-talent-shell {
    width: min(100%, 93.5rem);
    margin-inline: auto;
}

.vh-talent-hero {
    padding: 2.5rem 3rem 2rem;
    border-bottom: 1px solid var(--vh-candidate-card-border);
    background: var(--vh-public-page);
}

.vh-talent-hero--search {
    padding: 1.125rem 3rem;
}

.vh-talent-hero__inner {
    display: grid;
    justify-items: center;
    gap: 1.125rem;
}

.vh-talent-hero__copy {
    text-align: center;
}

.vh-talent-hero__copy h1 {
    margin: 0 0 .5rem;
    color: var(--vh-talent-ink);
    font-family: Inter, "Instrument Sans", Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.5;
}

.vh-talent-hero__copy p {
    margin: 0;
    color: var(--vh-talent-muted);
    font-size: .9375rem;
    line-height: 1.5;
}

.vh-talent-hero__prompt {
    width: min(100%, 42.5rem);
}

.vh-talent-hero__prompt .promptinput__root,
.vh-talent-hero__prompt .promptinput {
    width: 100%;
}

.vh-talent-browse {
    padding-bottom: 5rem;
    background: var(--vh-public-page);
}

.vh-talent-shelf {
    padding: 2.25rem 0 0;
    background: var(--vh-public-page);
}

.vh-talent-shelf__header {
    display: flex;
    width: min(100%, 93.5rem);
    margin: 0 auto;
    padding: 0 3rem 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vh-talent-shelf__header h2 {
    margin: 0;
    color: var(--vh-talent-ink);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.5;
}

.vh-talent-shelf__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.vh-talent-shelf__actions > a {
    color: var(--vh-talent-control-ink);
    font-size: .8125rem;
    font-weight: 600;
    text-underline-offset: .1875rem;
    white-space: nowrap;
}

.vh-talent-shelf__arrows {
    display: flex;
    gap: .5rem;
}

.vh-talent-shelf__arrows[hidden] { display: none; }

.vh-talent-shelf__arrows button {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    place-items: center;
    border: 1.5px solid var(--vh-talent-control-border);
    border-radius: 50%;
    color: var(--vh-talent-ink);
    background: var(--vh-public-page);
    font: inherit;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.vh-talent-shelf__arrows button svg {
    display: block;
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.vh-talent-shelf__arrows button:hover:not([aria-disabled="true"]) {
    border-color: var(--vh-talent-control-ink);
    box-shadow: 0 .125rem .5rem rgb(var(--vh-candidate-shadow-rgb) / .12);
}

.vh-talent-shelf__arrows button[aria-disabled="true"] {
    opacity: .35;
    cursor: default;
}

.vh-talent-shelf__viewport {
    width: min(100%, 93.5rem);
    margin-inline: auto;
    padding: .25rem 3rem 2rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border-bottom: 1px solid var(--vh-talent-divider);
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-padding-inline: 3rem;
    scroll-snap-type: inline mandatory;
}

.vh-talent-shelf__viewport::-webkit-scrollbar { display: none; }

.vh-talent-shelf__track {
    display: flex;
    width: max-content;
    gap: 1rem;
}

.vh-talent-card {
    position: relative;
    display: flex;
    width: 13.75rem;
    min-width: 0;
    flex: 0 0 13.75rem;
    flex-direction: column;
    overflow: visible;
    scroll-snap-align: start;
    border: 1px solid var(--vh-candidate-card-border);
    border-radius: .875rem;
    background: var(--vh-public-page);
    box-shadow: 0 1px 4px rgb(var(--vh-candidate-shadow-rgb) / .06);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.vh-talent-results__grid .vh-talent-card {
    width: 100%;
    flex-basis: auto;
}

.vh-talent-card:hover {
    transform: translateY(-.125rem);
    box-shadow: 0 8px 28px rgb(var(--vh-candidate-shadow-rgb) / .11);
}

.vh-talent-card__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.vh-talent-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    flex: none;
    overflow: hidden;
    border-radius: .875rem .875rem 0 0;
    background: var(--vh-candidate-skill-background);
}

.vh-talent-card__media [data-vh-candidate-poster],
.vh-talent-card__media img,
.vh-talent-card__media video {
    width: 100%;
    height: 100%;
}

.vh-talent-card__media img,
.vh-talent-card__media video {
    display: block;
    object-fit: cover;
}

.vh-talent-card__media img { object-position: center top; }
.vh-talent-card__media video { object-position: center; }

.vh-talent-card__media video:not([hidden]) {
    position: relative;
    z-index: 4;
}

.vh-talent-card__media video[hidden],
.vh-talent-card__media [data-vh-candidate-poster][hidden] {
    display: none;
}

.vh-talent-card__play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    width: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--vh-public-marketing-blue);
    background: rgb(var(--vh-candidate-shadow-rgb) / .5);
    cursor: pointer;
    transition: background-color .18s ease;
}

.vh-talent-card__play[hidden] { display: none; }

.vh-talent-card__play > * {
    pointer-events: none;
}

.vh-talent-card__play-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.vh-talent-card__play svg {
    width: 2.75rem;
    height: 2.75rem;
    filter: drop-shadow(0 .125rem .35rem rgb(var(--vh-candidate-shadow-rgb) / .25));
    transition: transform .15s ease;
}

.vh-talent-card__play circle {
    fill: var(--vh-candidate-play-background);
}

.vh-talent-card__play polygon {
    fill: currentColor;
}

.vh-talent-card__play-label {
    opacity: 0;
    color: var(--vh-public-on-primary);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    text-shadow: 0 1px 3px rgb(var(--vh-candidate-shadow-rgb) / .72);
    transform: translateY(-3px);
    transition: opacity .18s ease, transform .18s ease;
}

.vh-talent-card__play:hover,
.vh-talent-card__play:focus-visible {
    background: rgb(var(--vh-candidate-shadow-rgb) / .58);
}

.vh-talent-card__play:hover svg,
.vh-talent-card__play:focus-visible svg {
    transform: scale(1.1);
}

.vh-talent-card__play:hover .vh-talent-card__play-label,
.vh-talent-card__play:focus-visible .vh-talent-card__play-label {
    opacity: 1;
    transform: translateY(0);
}

.vh-talent-card__play:focus-visible {
    outline: 3px solid var(--vh-public-marketing-blue);
    outline-offset: -3px;
}

.vh-talent-card__body {
    display: flex;
    padding: .75rem .875rem .875rem;
    flex: 1;
    flex-direction: column;
    gap: .1875rem;
}

.vh-talent-card__body h3,
.vh-talent-card__body p {
    margin: 0;
}

.vh-talent-card__body h3 {
    overflow: hidden;
    color: var(--vh-talent-ink);
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vh-talent-card__role {
    overflow: hidden;
    color: var(--vh-talent-muted);
    font-size: .75rem;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vh-talent-card__body .vh-talent-card__experience {
    color: var(--vh-candidate-experience);
    margin: .125rem 0 0;
    font-size: .71875rem;
    line-height: 1.5;
}

.vh-talent-card__skills {
    position: relative;
    display: flex;
    margin: .4375rem 0 0;
    padding: 0;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: .3125rem;
    list-style: none;
}

.vh-talent-card__skills > li,
.vh-talent-card__skill-overflow > button {
    padding: .1875rem .5rem;
    border: 0;
    border-radius: .375rem;
    color: var(--vh-candidate-skill-text);
    background: var(--vh-candidate-skill-background);
    font: inherit;
    font-size: .6875rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.vh-talent-card__skill-overflow {
    position: relative;
    z-index: 3;
    overflow: visible !important;
    padding: 0 !important;
    background: var(--vh-public-transparent) !important;
}

.vh-talent-card__skill-overflow > button {
    color: var(--vh-candidate-role);
    background: var(--vh-candidate-skill-more-background);
    cursor: help;
}

.vh-talent-card__skill-overflow [role="tooltip"] {
    position: absolute;
    z-index: 100;
    bottom: calc(100% + .375rem);
    left: 50%;
    display: none;
    width: max-content;
    max-width: 11.25rem;
    padding: .4375rem .625rem;
    transform: translateX(-50%);
    border-radius: .5rem;
    color: var(--vh-public-on-primary);
    background: var(--vh-candidate-name);
    box-shadow: 0 .25rem 1rem rgb(var(--vh-candidate-shadow-rgb) / .18);
    font-size: .6875rem;
    font-weight: 400;
    line-height: 1.5;
    pointer-events: none;
    white-space: normal;
}

.vh-talent-card__skill-overflow [role="tooltip"]::after {
    position: absolute;
    top: 100%;
    left: 50%;
    border: .3125rem solid var(--vh-public-transparent);
    border-top-color: var(--vh-candidate-name);
    content: "";
    transform: translateX(-50%);
}

.vh-talent-card__skill-overflow:hover [role="tooltip"],
.vh-talent-card__skill-overflow:focus-within [role="tooltip"] {
    display: block;
}

.vh-talent-card__profile {
    display: inline-block;
    margin-top: .5rem;
    color: var(--vh-talent-accent);
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.5;
}

.vh-talent-search-shell {
    position: relative;
    width: min(calc(100% - 6rem), 81.25rem);
    margin: 2.5rem auto 5rem;
}

.vh-talent-results {
    width: 100%;
}

.vh-talent-results__summary {
    margin: 0 0 1.2rem;
    color: var(--vh-talent-muted);
    font-size: .9375rem;
}

.vh-talent-results__summary strong {
    color: var(--vh-talent-ink);
}

.vh-talent-results__summary em {
    color: var(--vh-talent-ink);
    font-style: normal;
}

.vh-talent-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
    gap: 1.25rem;
}

.vh-talent-results-gate__content {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

[data-vh-talent-results-gate][data-vh-state="unlocked"]
    .vh-talent-results-gate__content {
    opacity: 1;
    pointer-events: auto;
}

.vh-talent-results-gate__card {
    padding: 3rem 3.5rem 2.5rem;
    border: 1px solid var(--vh-talent-gate-border);
    border-radius: 1rem;
    background: var(--vh-public-page);
    box-shadow: 0 .25rem 1.5rem rgb(var(--vh-candidate-shadow-rgb) / .08),
                0 .0625rem .25rem rgb(var(--vh-candidate-shadow-rgb) / .04);
    text-align: center;
    transition: opacity .28s ease, transform .28s ease;
}

[data-vh-talent-results-gate].is-revealing
    .vh-talent-results-gate__card {
    opacity: 0;
    transform: translateY(-.5rem) scale(.98);
    pointer-events: none;
}

[data-vh-talent-results-gate][data-vh-state="unlocked"]
    .vh-talent-results-gate__card {
    display: none;
}

.vh-talent-results-gate__icon {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 1.5rem;
    place-items: center;
    border-radius: .875rem;
    color: var(--vh-talent-accent);
    background: var(--vh-talent-gate-icon-background);
}

.vh-talent-results-gate__card h2 {
    margin: 0 0 .625rem;
    color: var(--vh-public-ink);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 700;
    line-height: 1.25;
}

.vh-talent-results-gate__card > p:not([role="alert"]) {
    margin: 0 0 2rem;
    color: var(--vh-public-marketing-muted);
    font-size: .9375rem;
    line-height: 1.5;
}

.vh-talent-results-gate__card form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vh-talent-results-gate__fields {
    display: flex;
    width: 100%;
    max-width: 32.5rem;
    margin-bottom: .75rem;
}

.vh-talent-results-gate__card input[type="email"] {
    min-width: 0;
    height: 2.875rem;
    padding: 0 1rem;
    flex: 1;
    border: 1px solid var(--vh-talent-gate-border);
    border-radius: .625rem;
    color: var(--vh-public-ink);
    background: var(--vh-public-page);
    font: inherit;
    font-size: .875rem;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.vh-talent-results-gate__card input[type="email"]:focus {
    border-color: var(--vh-talent-accent);
    box-shadow: 0 0 0 .1875rem rgb(var(--vh-public-blue-rgb) / .12);
}

.vh-talent-results-gate__card input[type="email"]::placeholder {
    color: var(--vh-talent-placeholder);
}

.vh-talent-results-gate__card button[type="submit"] {
    height: 3.125rem;
    padding: 0 2.25rem;
    border: 0;
    border-radius: .75rem;
    color: var(--vh-public-on-primary);
    background: var(--vh-talent-accent);
    box-shadow: 0 .125rem .5rem rgb(var(--vh-public-blue-rgb) / .3);
    font: inherit;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, transform .1s ease,
                box-shadow .15s ease;
}

.vh-talent-results-gate__card button[type="submit"]:hover:not(:disabled) {
    background: var(--vh-talent-accent-hover);
    box-shadow: 0 .25rem 1rem rgb(var(--vh-public-blue-rgb) / .35);
}

.vh-talent-results-gate__card button[type="submit"]:active:not(:disabled) {
    transform: scale(.98);
}

.vh-talent-results-gate__card button[type="submit"]:disabled {
    opacity: .6;
    cursor: wait;
}

.vh-talent-results-gate__privacy {
    margin: 1.25rem 0 0 !important;
    color: var(--vh-talent-placeholder) !important;
    font-size: .75rem !important;
}

.vh-talent-results-gate__error {
    margin: -.25rem 0 .625rem !important;
    color: var(--vh-public-danger);
    font-size: .8125rem;
    text-align: center;
}

.vh-talent-empty {
    position: relative;
    display: flex;
    max-width: 40rem;
    margin: 2.5rem auto;
    padding: 4rem 3rem 3.5rem;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgb(var(--vh-public-on-primary-rgb) / .07);
    border-radius: 1.5rem;
    background: linear-gradient(145deg,
        var(--vh-talent-empty-surface) 0%,
        var(--vh-talent-empty-surface-mid) 60%,
        var(--vh-talent-empty-surface) 100%);
    box-shadow: 0 2rem 5rem rgb(var(--vh-candidate-shadow-rgb) / .35),
                0 0 0 1px rgb(var(--vh-public-blue-rgb) / .12);
    text-align: center;
}

.vh-talent-empty__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(4.5rem);
    pointer-events: none;
}

.vh-talent-empty__blob--a {
    top: -7.5rem;
    left: -5rem;
    width: 22.5rem;
    height: 22.5rem;
    background: radial-gradient(circle,
        rgb(var(--vh-public-blue-rgb) / .22),
        var(--vh-public-transparent) 70%);
}

.vh-talent-empty__blob--b {
    right: -3.75rem;
    bottom: -6.25rem;
    width: 18.75rem;
    height: 18.75rem;
    background: radial-gradient(circle,
        rgb(var(--vh-talent-indigo-rgb) / .16),
        var(--vh-public-transparent) 70%);
}

.vh-talent-empty__grid-lines {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle,
        rgb(var(--vh-public-on-primary-rgb) / .05) 1px,
        var(--vh-public-transparent) 1px);
    background-size: 1.75rem 1.75rem;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
        var(--vh-public-black) 30%,
        var(--vh-public-transparent) 100%);
    pointer-events: none;
}

.vh-talent-empty__icon-wrap {
    position: relative;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.75rem;
    flex: none;
}

.vh-talent-empty__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgb(var(--vh-public-blue-rgb) / .35);
    border-radius: 50%;
    animation: vh-talent-empty-pulse 2.4s ease-out infinite;
    transform: translate(-50%, -50%);
}

.vh-talent-empty__ring--one { width: 5rem; height: 5rem; }
.vh-talent-empty__ring--two {
    width: 7.5rem;
    height: 7.5rem;
    animation-delay: .6s;
}
.vh-talent-empty__ring--three {
    width: 10rem;
    height: 10rem;
    animation-delay: 1.2s;
}

@keyframes vh-talent-empty-pulse {
    0% { opacity: .7; transform: translate(-50%, -50%) scale(.85); }
    60% { opacity: .15; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

.vh-talent-empty__icon {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 2rem;
    height: 2rem;
    margin: auto;
    color: var(--vh-talent-accent);
    filter: drop-shadow(0 0 .5rem rgb(var(--vh-public-blue-rgb) / .6));
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2.5;
}

.vh-talent-empty h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 .75rem;
    color: var(--vh-talent-empty-title);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.3;
}

.vh-talent-empty h3 span {
    padding: .0625rem .375rem;
    border-radius: .375rem;
    color: var(--vh-talent-accent);
    background: rgb(var(--vh-public-blue-rgb) / .12);
}

.vh-talent-empty > p {
    position: relative;
    z-index: 1;
    margin: 0 0 2rem;
    color: var(--vh-talent-empty-copy);
    font-size: .875rem;
    line-height: 1.65;
}

.vh-talent-empty__suggestions {
    position: relative;
    z-index: 1;
    display: flex;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.vh-talent-empty__suggestions a {
    padding: .4375rem 1rem;
    border: 1px solid rgb(var(--vh-public-on-primary-rgb) / .1);
    border-radius: 999px;
    color: var(--vh-talent-empty-chip);
    background: rgb(var(--vh-public-on-primary-rgb) / .05);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    transition: background .15s ease, color .15s ease,
                border-color .15s ease, transform .15s ease;
}

.vh-talent-empty__suggestions a:hover {
    border-color: rgb(var(--vh-public-blue-rgb) / .5);
    color: var(--vh-talent-empty-chip-hover);
    background: rgb(var(--vh-public-blue-rgb) / .18);
    transform: translateY(-.0625rem);
}

.vh-talent-empty__contact {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: .8125rem 1.625rem;
    align-items: center;
    gap: .5rem;
    border-radius: .75rem;
    color: var(--vh-public-on-primary);
    background: linear-gradient(135deg,
        var(--vh-talent-accent),
        var(--vh-talent-cta-end));
    box-shadow: 0 .25rem 1.25rem rgb(var(--vh-public-blue-rgb) / .4),
                0 0 0 1px rgb(var(--vh-public-blue-rgb) / .3);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.vh-talent-empty__contact:hover {
    box-shadow: 0 .5rem 1.75rem rgb(var(--vh-public-blue-rgb) / .5),
                0 0 0 1px rgb(var(--vh-public-blue-rgb) / .4);
    transform: translateY(-.125rem);
}

.vh-talent-empty__contact svg {
    width: 1rem;
    height: 1rem;
    flex: none;
}

.vh-talent-page__status {
    width: min(100%, 93.5rem);
    margin: 0 auto;
    padding: 2rem 3rem;
    color: var(--vh-talent-muted);
}

.vh-talent-trust {
    padding: 3.5rem 0 1rem;
    overflow: hidden;
    background: var(--vh-public-page);
}

.vh-talent-trust > p {
    margin: 0 1rem 1.6rem;
    color: var(--vh-public-muted);
    font-size: .875rem;
    font-weight: 600;
    text-align: center;
}

.vh-talent-trust .vh-logo-marquee {
    margin-inline: auto;
}

.vh-talent-shared {
    padding: 3rem 1.25rem 4rem;
}

.vh-talent-shared > .vh-published-section {
    width: 100%;
    max-width: none;
}

.vh-talent-shared .vh-feature-steps {
    margin-bottom: 6rem;
}

.vh-talent-cta {
    padding: 6rem 2rem;
    color: var(--vh-public-on-primary);
    background: var(--vh-talent-navy);
    text-align: center;
}

.vh-talent-cta span {
    color: var(--vh-talent-cta-eyebrow);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vh-talent-cta h2 {
    margin: .65rem 0 .8rem;
    color: var(--vh-public-on-primary);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.vh-talent-cta p {
    margin: 0 0 1.7rem;
    color: var(--vh-talent-cta-copy);
    font-size: 1.05rem;
}

.vh-talent-cta a {
    display: inline-flex;
    min-height: 3rem;
    padding: .8rem 1.25rem;
    align-items: center;
    border-radius: .55rem;
    color: var(--vh-talent-navy);
    background: var(--vh-public-page);
    font-weight: 700;
    text-decoration: none;
}

.vh-talent-faq {
    padding: 5.5rem 1.25rem;
}

.vh-talent-faq > .vh-published-section {
    width: 100%;
    max-width: 81.25rem;
    margin-inline: auto;
}

.vh-talent-page :is(a, button, input, [tabindex]):focus-visible {
    outline: .1875rem solid var(--vh-talent-focus);
    outline-offset: .1875rem;
}

@media (max-width: 56.25rem) {
    .vh-talent-hero,
    .vh-talent-hero--search {
        padding: 1.5rem 1.25rem;
    }

    .vh-talent-shelf__header {
        padding-inline: 1.25rem;
    }

    .vh-talent-shelf__viewport {
        padding: .25rem 1.25rem 1.75rem;
        scroll-padding-inline: 1.25rem;
    }

    .vh-talent-search-shell {
        width: calc(100% - 2rem);
        margin: 1.5rem auto 3.75rem;
    }
}

@media (max-width: 37.5rem) {
    .vh-talent-shelf__arrows {
        display: none;
    }

    .vh-talent-card {
        width: 10.9375rem;
        flex-basis: 10.9375rem;
    }

    .vh-talent-results__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vh-talent-results-gate__card form {
        align-items: stretch;
    }

    .vh-talent-results-gate__card {
        padding: 2rem 1.25rem 1.75rem;
    }

    .vh-talent-results-gate__fields {
        max-width: 100%;
    }

    .vh-talent-results-gate__card button[type="submit"] {
        width: 100%;
        max-width: 21.25rem;
        align-self: center;
    }

    .vh-talent-empty {
        margin: 1.5rem 0;
        padding: 3rem 1.5rem 2.75rem;
    }

    .vh-talent-empty h3 {
        font-size: 1.1875rem;
    }

    .vh-talent-shared {
        padding: 2rem 0 3rem;
    }

    .vh-talent-shared .vh-feature-steps {
        margin-bottom: 3rem;
    }

    .vh-talent-cta {
        padding: 4rem 1.25rem;
    }

    .vh-talent-faq {
        padding: 3.5rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vh-talent-page *,
    .vh-talent-page *::before,
    .vh-talent-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
