
.hero {
    background-image: url('/images/employer-hero.webp');
    background-position: center;
}

/* SEARCH CARD */
.search-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    padding: 12px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 750px;
}

.search-card .form-control {
    height: 48px;
}

.search-card .form-select {
    height: 48px;
}

.search-card .btn-search {
    height: 48px;
    white-space: nowrap;
    font-weight: 700;
    background: var(--brand);
    border-color: var(--brand);
}

.search-card .btn-search:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
}

.text-custom-purple {
    color: #5b73d3;
}

.text-dark-purple {
    color: #083eb2;
}

/* Why us */
/* Section spacing */
.py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important
}

/* Headings */
.why-title {
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(26px, 2.2vw + 10px, 42px);
    color: var(--ms-ink);
}

.why-sub {
    color: #5b6b86;
    font-size: clamp(15px, .6vw + 12px, 20px);
}

/* Card */
.wc-card {
    background: var(--ms-card);
    border-radius: 16px;
    padding: 26px 26px 28px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02) inset;
    transition: transform .25s ease, box-shadow .25s ease;
    background-color: #f5f8ff;
}

.wc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(13, 71, 255, .12);
}

/* Icon */
.wc-icon {
    color: var(--ms-blue);
    margin-bottom: 45px;
}

/* Title + text */
.wc-title {
    color: #083eb2;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.wc-text {
    color: #083eb2;
    margin: 0;
    max-width: 36ch;
}


/* Notify Section */
:root {
    --ms-blue: #0d47ff;
    --ms-blue-600: #0b3be0;
    --ms-soft: #eff4ff;
    /* section bg */
}

/* container strip */
.notify-wrap {

    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}



/* left text */
.fw-800 {
    font-weight: 800 !important
}

/* input + button look like the mock */
.notify-input {
    width: 320px;
    /* same feel as screenshot */
    max-width: 48vw;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e3e8ff;
    box-shadow: 0 2px 0 rgba(13, 71, 255, .03) inset, 0 6px 16px rgba(13, 71, 255, .06);
}

.notify-input:focus {
    border-color: #cdd7ff;
    box-shadow: 0 0 0 .2rem rgba(13, 71, 255, .12);
}

/* subscribe button */
.notify-btn {
    height: 44px;
    border-radius: 10px;
    padding: 0 16px;
    background: linear-gradient(180deg, #2f6bff, var(--ms-blue));
    border: none;
}

.notify-btn:hover {
    background: linear-gradient(180deg, #2a61ee, var(--ms-blue-600));
}

/* responsive: stack on small screens */
@media (max-width: 768px) {
    .notify-wrap {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .notify-form {
        justify-content: center;
    }

    .notify-input {
        width: 100%;
        max-width: none;
    }
}

/* Stats */
/* utilities */
.fw-800 {
    font-weight: 800 !important
}

/* section */
.impact-stats {
    background: #ffffff;
}

/* numbers/titles/descriptions */
.stat-num {
    color: #1271ed;
    font-weight: 800;
    line-height: 1;
    font-size: clamp(28px, 4.2vw, 44px);
    margin-bottom: .5rem;
}

.stat-title {
    color: #0b1730;
    font-weight: 700;
    margin-bottom: .25rem;
}

.stat-desc {
    color: #6b7280;
    font-size: .95rem;
    margin: 0;
}

/* vertical dividers between columns on desktop (like screenshot) */
.impact-row>[class*="col-"] {
    position: relative;
}

@media (min-width: 992px) {
    .impact-row>[class*="col-"]:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 6px;
        bottom: 6px;
        right: -.75rem;
        /* aligns with gutter */
        width: 1px;
        background: rgba(13, 71, 255, .12);
        /* soft divider */
    }
}

/* Access Best Medical Job Section */
@media (max-width: 991px) {
    #access-best-medical-jobs {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .search-card {
        flex-direction: column;
        align-items: stretch !important;
    }

    .search-card .btn-search {
        width: 100%;
    }

    .hero-content{
        display: block;
        padding: 0 1rem;
    }

    .headline{
        width: 300px;
        font-size: 4.5vh !important;
        text-align: start !important;
    }

    .ms-section,
    .ms-section .col-lg-6{
        padding: 0 !important;
    }

    h2{
        font-size: calc(1.375rem + 1.5vw);
    }
}
