/*
Theme Name: Unique School Solutions Child
Theme URI: https://uniqueschoolsolutions.co.uk/
Description: Child theme for Unique School Solutions, based on Hello Elementor.
Author: Balliante
Author URI: Balliante.com
Template: hello-elementor
Version: 1.0.0
Text Domain: unique-child
*/

/* Primary color: #693E8B */
:root {
    --primary-color: #693E8B;
    --content-width: 1440px;
    --header-padding: 20px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend Deca', sans-serif;
    overflow-x: hidden; /* Prevent scrollbars from 100vw breakout */
}

/* Custom Header Styling */
.top-ribbon {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 20px;
    position: relative;
    z-index: 1001;
    font-family: 'Lexend Deca', sans-serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.top-ribbon .container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--header-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-ribbon a {
    color: #fff !important; /* Force white color */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.top-ribbon a:hover {
    color: #fff !important; /* Keep white on hover */
    opacity: 0.8;
}

.top-ribbon img {
    width: 20px;
    height: auto;
    filter: brightness(0) invert(1);
}

.main-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0); /* Start fully transparent */
    transition: background-color 0.3s ease, height 0.3s ease;
    position: fixed;
    z-index: 1000;
    top: auto; /* Managed by JS */
    font-family: 'Lexend Deca', sans-serif;
    height: 120px; /* Initial taller height */
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 80px; /* Smaller height when scrolled */
}

.main-header .container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--header-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.site-logo {
    width: 300px; /* Fixed container width to prevent shifting */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-logo img {
    width: 285px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.main-header.scrolled .site-logo img {
    width: 220px;
}

.main-navigation {
    flex: 1; /* Take up available space */
    display: flex;
    justify-content: center; /* Truly center the menu */
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    position: relative; /* anchor for the sliding active dot */
}

.main-navigation ul li a {
    position: relative; /* anchor for the active-page dot */
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 20px;
    transition: font-size 0.3s ease;
}

.main-header.scrolled .main-navigation ul li a {
    font-size: 18px; /* Slightly smaller menu text */
}

/* Active-page indicator dot — sits centred just below the current menu item.
   This static pseudo-element is the no-JS fallback; when JS is available the
   sliding dot below takes over (and this is hidden via .has-js-dot). */
.main-navigation ul li.current-menu-item > a::after,
.main-navigation ul li.current_page_item > a::after,
.main-navigation ul li.current-menu-parent > a::after,
.main-navigation ul li.current-menu-ancestor > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Sliding dot: a single shared dot that glides to the hovered item (and rests
   under the active item). JS positions it; CSS animates the movement. */
.main-navigation.has-js-dot ul li > a::after {
    content: none; /* hide the static per-item dots when JS is active */
}

.nav-active-dot {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 4px;
    height: 4px;
    margin-left: -2px; /* centre on the target x (half the width) */
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
    transition: left 0.3s ease, opacity 0.3s ease;
}

.nav-active-dot.is-ready {
    opacity: 1;
}

.header-actions {
    width: 300px; /* Match logo container width for symmetry */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.payroll-portal-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #B37AE0;
    font-family: 'Lexend Deca', sans-serif;
    white-space: nowrap;
}

.main-header.scrolled .payroll-portal-btn {
    padding: 8px 25px;
    font-size: 16px;
}

.payroll-portal-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Remove default padding and ensure content starts correctly */
#content {
    padding-top: 0 !important;
}

.site-main {
    padding-top: 0 !important;
}

/* Loading Screen */
.unique-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(109, 44, 134, 0.8); /* #6d2c86 at 80% */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.unique-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Hide loader in Elementor Editor */
.elementor-editor-active .unique-loader {
    display: none !important;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Header Styling */
.mobile-header {
    display: none;
    width: 100%;
    height: 96.74px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: background-color 0.3s ease;
}

.mobile-header.menu-open {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mobile-container {
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.mobile-header.menu-open .mobile-logo img {
    filter: brightness(0) invert(1); /* Turn logo white */
}

.mobile-menu-toggle {
    background: transparent !important;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative; /* Base for absolute icons */
}

.toggle-icon-wrapper {
    position: relative;
    width: 35px;
    height: 35px;
}

.mobile-menu-toggle img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    display: block;
}

/* Hamburger state */
.icon-hamburger {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-close {
    opacity: 0;
    transform: rotate(-225deg);
}

/* Open state animation */
.mobile-header.menu-open .icon-hamburger {
    opacity: 0;
    transform: rotate(225deg);
}

.mobile-header.menu-open .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.mobile-header.menu-open .mobile-menu-toggle img {
    filter: brightness(0) invert(1); /* Ensure icons turn white with logo */
}

/* Mobile Overlay Styling */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(109, 44, 134, 0.7); /* #6D2C86 with 70% opacity */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1999;
    padding-top: 100px;
}

.mobile-menu-overlay.active {
    display: block;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 40px 20px;
    text-align: center;
}

.mobile-navigation ul {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.mobile-navigation ul li {
    margin-bottom: 25px;
}

.mobile-navigation ul li a {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    font-weight: 400;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-contact img {
    width: 20px;
    filter: brightness(0) invert(1);
}

/* Desktop & Responsive Visibility */
body.no-scroll {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .top-ribbon,
    .main-header {
        display: none !important;
    }

    .mobile-header {
        display: block;
    }

    #content {
        padding-top: 0 !important;
    }
}

/* Footer Styles */
.site-footer {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0 !important;
    position: relative;
    background-color: #6D2C86; /* Updated color */
}

.footer-main {
    height: 554px;
    background-color: #6D2C86; /* Updated color */
    color: #DBD9D9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.footer-main .container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--header-padding) 0 300px; /* Shifted further right */
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer-overlay {
    position: absolute;
    left: -150px;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center; /* Center vertically */
}

.footer-overlay img {
    height: 900px;
    width: auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px; /* Reduced from 35px */
    font-weight: 600; /* Updated to 600 */
    margin-top: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 5px;
}

.footer-menu li a {
    color: #DBD9D9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500; /* Medium weight */
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500; /* Medium weight */
    line-height: 1.5;
}

.footer-contact li a {
    color: #DBD9D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #ffffff;
}

.footer-icon {
    width: 20px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-top: 4px;
}

.footer-icon-placeholder {
    width: 20px;
    height: 20px;
    position: relative;
    margin-top: 4px;
}

.location-icon::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    top: 0;
    left: 3px;
}

.socials-heading {
    margin-top: 40px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link img {
    width: 25px;
    height: auto;
    filter: brightness(0) invert(1); /* Ensure icons are white */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}


/* Footer Ribbon */
.footer-ribbon {
    background-color: #72528B; /* Updated color */
    height: 51px;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif; /* Updated to Montserrat */
    font-weight: 500; /* Medium weight */
    position: relative;
    z-index: 3;
}

.footer-ribbon .container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--header-padding);
    width: 100%;
}

.ribbon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .footer-main {
        height: auto; /* Allow content to dictate height on mobile */
        padding: 60px 0;
    }

    .footer-main .container {
        padding: 0 20px; /* Reset the 300px desktop shift */
    }

    .footer-columns {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .footer-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-overlay {
        display: none; /* Hide complex overlay on mobile for cleanliness */
    }

    .footer-ribbon {
        height: auto;
        padding: 20px 0;
    }

    .ribbon-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   Job Listing Cards (Global Plugin Styles - Excl. Homepage)
   ========================================================================== */

/* Remove Padding of Parent Container, Make contents 1440px*/
.elementor-shortcode .sjb-page{
    padding: 50px 0px !important;
}

:is(body:not(.page-id-532) .sjb-page .sjb-listing) {
    padding: 50px 0px !important;
}

/* Card Container */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 {
    background-color: #f7f7f7 !important;
    border: 1px solid #d5b8eb !important;
    border-radius: 27px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #6D2C86 !important;
    box-shadow: none !important;
}

/* Remove default plugin borders and backgrounds */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 header,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-description,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .sjb_more_content {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Top Row Layout */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 header .row {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

/* Logo Box */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .company-logo {
    border: 1px solid #d5b8eb !important;
    border-radius: 12px !important;
    padding: 8px !important;
    background: #fff !important;
    width: 90px !important;
    height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .company-logo img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Job Title & Meta Row */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .sjb-list-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 0 !important;
    gap: 40px !important; /* Consistent spacing between items */
}

/* Overwrite Bootstrap Column fixed widths */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .sjb-list-row > div[class*="col-"] {
    width: auto !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    float: none !important;
}

/* Make Job Title take up remaining space */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .sjb-list-row > div[class*="col-"]:first-child {
    flex: 1 1 auto !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-info h4 {
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-info h4 a {
    color: #6D2C86 !important;
    text-decoration: none !important;
    font-size: 0 !important; /* Hide the pipe separator text */
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-info h4 a .job-title {
    font-size: 24px !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-info .company-name {
    display: none !important;
}

/* Job Meta (Type, Location, Date) */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-type,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-location,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-date {
    color: #6D2C86 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-date i,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-type i,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-location i {
    font-size: 18px !important;
    color: #6D2C86 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

/* Reset any FontAwesome or Plugin offsets on the glyph itself */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-date i::before,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-type i::before,
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-location i::before {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    transform: translateY(1px);
}

/* Description Text */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-description {
    margin-top: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-description p {
    color: #6D2C86 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* Buttons Container */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .sjb-apply-now-btn {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .sjb-apply-now-btn p {
    margin: 0 !important;
    display: flex !important;
    gap: 15px !important;
}

/* Buttons Styling */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .sjb-apply-now-btn .btn {
    background-color: #693E8B !important;
    color: #ffffff !important;
    border: 2px solid #B37AE0 !important;
    border-radius: 57px !important;
    padding: 10px 25px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    line-height: 1.2 !important;
}

:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .sjb-apply-now-btn .btn:hover {
    background-color: #B37AE0 !important;
    color: #ffffff !important;
    border-color: #693E8B !important;
}

/* View More/Less Button */
:is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .sjb_view_more_btn {
    color: #6D2C86 !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

/* ==========================================================================
   Detail Header & Background (Scoped to .popup-outer)
   ========================================================================== */

/* Page Background Reset - Aggressive */
.popup-outer .sjb-page,
.popup-outer .sjb-page #sjb-container,
.popup-outer .sjb-page .sjb-container,
.popup-outer #sjb-container,
#content .jobpost .sjb-page,
#content .jobpost #sjb-container {
    background: none !important;
    background-color: transparent !important;
}

/* Remove default detail header borders */
.popup-outer .sjb-page header,
#content .jobpost .sjb-page header {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Detail Header Logo Box */
.popup-outer .sjb-page .company-logo,
#content .jobpost .sjb-page .company-logo {
    border: 1px solid #d5b8eb !important;
    border-radius: 12px !important;
    padding: 8px !important;
    background: #fff !important;
    width: 90px !important;
    height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin-right: 30px !important;
}

/* Top Row Layout for Detail View */
.popup-outer .sjb-page header > .row,
#content .jobpost .sjb-page header > .row {
    display: flex !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
}

/* Meta Spacing for Detail View */
.popup-outer .header-margin-top > .row,
#content .jobpost .header-margin-top > .row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 0 !important;
    gap: 15px 40px !important;
}

.popup-outer .header-margin-top > .row > div[class*="col-"],
#content .jobpost .header-margin-top > .row > div[class*="col-"] {
    width: auto !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    float: none !important;
}

.popup-outer .header-margin-top > .row > div[class*="col-"]:first-child,
#content .jobpost .header-margin-top > .row > div[class*="col-"]:first-child {
    flex: 1 1 auto !important;
    min-width: 300px !important;
}

.popup-outer .header-margin-top .job-info h4,
#content .jobpost .header-margin-top .job-info h4 {
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
}

/* Tagline Scoped Fix */
.popup-outer .sjb-page header .col-sm-12:last-child,
#content .jobpost .sjb-page header .col-sm-12:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.popup-outer .company-tagline,
#content .jobpost .company-tagline {
    margin: 20px 0 0 0 !important;
    color: #6D2C86 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    display: block !important;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .list-data .v1 header .row {
        flex-direction: column !important;
        text-align: center !important;
    }

    .list-data .v1 .company-logo {
        margin: 0 auto 20px !important;
    }

    /* Card Container Mobile Padding Adjustment */
    :is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 {
        padding: 20px !important; /* Reduced from 30px to give more room for buttons */
    }

    /* Mobile-specific (Phone) Padding Increase */
    @media (max-width: 767px) {
        :is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 {
            padding-top: 40px !important; /* Increased top padding for title breathing room */
        }
    }

    :is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .sjb-list-row {
        justify-content: center !important;
        gap: 5px !important; /* Significantly reduced from 15px */
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Tighten spacing for meta info columns */
    :is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .sjb-list-row > div[class*="col-"] {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: none !important;
    }

    /* Hide empty meta columns (Job Type, Location if missing) */
    .sjb-list-row > div:not(:has(div)) {
        display: none !important;
    }

    /* Center Meta Info on Mobile */
    :is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-type,
    :is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-location,
    :is(body:not(.page-id-532) .sjb-page, .popup-outer .sjb-page) .list-data .v1 .job-date {
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 0 !important;
    }

    .list-data .v1 .sjb-apply-now-btn {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    /* Stack buttons vertically to fix overflow issue */
    .list-data .v1 .sjb-apply-now-btn p {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    .list-data .v1 .sjb-apply-now-btn .btn {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* Hide empty paragraphs and containers that add unwanted space */
    .list-data .v1 .sjb-apply-now-btn p:empty,
    .list-data .v1 .sjb-apply-now-btn p:not(:has(a)),
    .list-data .v1 .sjb-apply-now-btn br {
        display: none !important;
    }

    .elementor-shortcode .sjb-page{
        padding: 50px 20px !important;
    }
}

/* ==========================================================================
   Single Job Page Styles
   Target: /jobs/<job-slug>/ pages
   Scope all rules with `body.job-single-page` — added by functions.php.

   Selector reference:
     body.job-single-page #page                          — full page wrapper
     body.job-single-page .site-main                     — main content area
     body.job-single-page .sjb-page header               — job header block
     body.job-single-page .sjb-page .job-info h4         — job title
     body.job-single-page .sjb-page .company-logo        — company logo box
     body.job-single-page .sjb-page .job-type            — job type badge
     body.job-single-page .sjb-page .job-location        — location badge
     body.job-single-page .sjb-page .job-date            — date badge
     body.job-single-page .sjb-page .job-description     — description wrapper
     body.job-single-page .sjb-page .job-description p   — description text
     body.job-single-page .sjb-page .sjb-apply-now-btn .btn — apply button
   ========================================================================== */

/* ==========================================================================
   Job Page Hero
   ========================================================================== */

body.job-single-page #content {
    background-color: #ffffff !important;
}

.job-hero {
    background-image:
        linear-gradient(to top, rgba(239, 239, 239, 1) 0%, rgba(239, 239, 239, 0) 0%),
        linear-gradient(to bottom, rgba(239, 239, 239, 1) 13%, rgba(255, 255, 255, 0.7) 28%),
        linear-gradient(to bottom right, rgba(85, 117, 187, 0.21) 10%, rgba(114, 82, 139, 0.21) 60%),
        url('/wp-content/uploads/2026/05/page-3-hero-cover-image_result_jpg.jpg');
    background-size: cover;
    background-position: right center;
    background-color: #efefef;
    padding: 200px 20px 80px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.job-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-hero__title {
    color: #623482;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 28px;
    max-width: 680px;
}

.job-hero__meta {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.job-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #6D2C86;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #6D2C86;
}

.job-hero__badge i {
    font-size: 13px;
}

@media (max-width: 1024px) {
    .job-hero {
        padding: 160px 20px 60px;
    }

    .job-hero__inner {
        padding: 0 24px;
    }

    .job-hero__title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .job-hero {
        padding: 140px 20px 50px;
        background-position: center center;
    }

    .job-hero__inner {
        padding: 0 16px;
    }

    .job-hero__title {
        font-size: 26px;
    }

    .job-hero__meta {
        flex-wrap: wrap;
    }
}

/* ── Job Post Page - SJB Header Layout Fix ───────────────────────────────────
   Scoped to body.job-single-page so nothing outside job posts is affected.
   !important is required to override Bootstrap grid and SJB plugin styles.
   ========================================================================== */

/* Hide the default company logo column */
body.job-single-page .sjb-page header .col-md-1.col-sm-2 {
    display: none !important;
}

/* Give the meta area full width now the logo column is gone */
body.job-single-page .sjb-page header .header-margin-top {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-left: 15px !important;
}

/* Convert inner Bootstrap row to flexbox */
body.job-single-page .sjb-page header .header-margin-top > .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    margin: 0 !important;
}

/* Auto-size each meta column to its content */
body.job-single-page .sjb-page header .header-margin-top > .row > [class*="col-"] {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 28px 0 0 !important;
}

/* Hide columns whose inner meta div is empty or contains only the icon */
body.job-single-page .sjb-page header [class*="col-"]:has(.job-type:empty),
body.job-single-page .sjb-page header [class*="col-"]:has(.job-location:empty),
body.job-single-page .sjb-page header [class*="col-"]:has(.job-date:empty),
body.job-single-page .sjb-page header [class*="col-"]:has(.job-type > i:only-child),
body.job-single-page .sjb-page header [class*="col-"]:has(.job-location > i:only-child),
body.job-single-page .sjb-page header [class*="col-"]:has(.job-date > i:only-child) {
    display: none !important;
}

/* Meta item typography */
body.job-single-page .sjb-page .job-type,
body.job-single-page .sjb-page .job-location,
body.job-single-page .sjb-page .job-date {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #623482 !important;
    font-family: 'Lexend Deca', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    white-space: nowrap;
    margin: 0 !important;
}

body.job-single-page .sjb-page .job-type i,
body.job-single-page .sjb-page .job-location i,
body.job-single-page .sjb-page .job-date i {
    font-size: 14px !important;
    color: #623482 !important;
    margin-right: 0 !important;
}

/* ── Job Post Page - Content Area Layout ─────────────────────────────────────
   Removes the floating card and makes the content match the hero's full-width
   1440px layout. Scoped to body.job-single-page, all !important to win over
   the generic SJB card rules defined above.
   ========================================================================== */

body.job-single-page .sjb-page .list-data .job-description * {
    color: #6d2c86 !important;
    font-family: 'Montserrat', sans-serif !important;
}

body.job-single-page .sjb-page .list-data .v1  {
    min-width: 100% !important;
    padding: 0px 20px !important;
}

body.job-single-page .sjb-page button {
    background-color: #614287 !important;
    border-radius: 120px !important;
    border: solid 2px #a880da;
    color: white !important;
}

body.job-single-page .sjb-page button:hover {
    background-color: #a880da !important;
    border-radius: 120px !important;
    border: solid 2px #614287;
    color: white !important;
}

/* Strip page-content wrapper constraints */
body.job-single-page .page-content {
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* Full-width white section - mirrors the hero breakout technique */
body.job-single-page .sjb-page {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 64px 40px !important;
    background: #efefef !important;
}

/* Constrain to site max-width */
body.job-single-page .sjb-detail {
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Remove the floating card */
body.job-single-page .sjb-page .list-data .v1 {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Meta header row — add bottom separator */
body.job-single-page .sjb-page .list-data .v1 header {
    padding-bottom: 28px !important;
    margin-bottom: 36px !important;
    border-bottom: 1px solid #e8d5f5 !important;
}

/* Description text — dark for readability */
body.job-single-page .sjb-page .list-data .v1 .job-description p,
body.job-single-page .sjb-page .list-data .v1 .sjb_more_content p {
    color: #3a2050 !important;
    font-family: 'Lexend Deca', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}

/* Section headings (Job Features, Apply For This Job) */
body.job-single-page .sjb-page .list-data .v1 h3 {
    color: #623482 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 48px 0 20px !important;
    padding-bottom: 14px !important;
    border-bottom: 2px solid #e8d5f5 !important;
}

/* Job Features table */
body.job-single-page .sjb-page .job-features table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-family: 'Lexend Deca', sans-serif !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

body.job-single-page .sjb-page .job-features table td,
body.job-single-page .sjb-page .job-features table th {
    padding: 14px 20px !important;
    border: 1px solid #e8d5f5 !important;
    font-size: 15px !important;
    color: #3a2050 !important;
    vertical-align: middle !important;
}

body.job-single-page .sjb-page .job-features table td:first-child,
body.job-single-page .sjb-page .job-features table th:first-child {
    background: #f9f3ff !important;
    font-weight: 600 !important;
    color: #623482 !important;
    width: 35% !important;
}

/* Apply form label */
body.job-single-page .sjb-page .sjb-application-form label,
body.job-single-page .sjb-page label {
    font-family: 'Lexend Deca', sans-serif !important;
    color: #3a2050 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

/* Submit button */
body.job-single-page .sjb-page input[type="submit"],
body.job-single-page .sjb-page button[type="submit"] {
    background-color: #623482 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 44px !important;
    border-radius: 50px !important;
    font-family: 'Lexend Deca', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    margin-top: 16px !important;
    display: inline-block !important;
}

body.job-single-page .sjb-page input[type="submit"]:hover,
body.job-single-page .sjb-page button[type="submit"]:hover {
    background-color: #4e2568 !important;
}

@media (max-width: 1024px) {
    body.job-single-page .sjb-page {
        padding: 48px 24px !important;
    }
}

@media (max-width: 767px) {
    body.job-single-page .sjb-page {
        padding: 40px 16px !important;
    }

    body.job-single-page .sjb-page .list-data .v1 {
        max-width: 100% !important;
    }
}

/* ==========================================================================
   Job Quick-View / Apply Modal Shell
   --------------------------------------------------------------------------
   Turns the full-page `.popup-outer` block into a centered, scrollable modal
   that matches the site theme. EVERYTHING here is scoped to `.popup-outer`
   (and its descendants) so no other part of the site is affected.

   NOTE: the plugin shows/hides the popup by toggling the inline
   `display: block | none` on `.popup-outer`. We only switch it to a flex
   layout when it is actually shown (`[style*="block"]`) so the plugin can
   still hide it normally.
   ========================================================================== */

/* Overlay backdrop (styles are harmless while the element is display:none) */
.popup-outer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 100000 !important;
    box-sizing: border-box !important;
    /* Header is hidden while the popup is open, so it can sit centered. */
    padding: 28px 20px !important;
    background: rgba(45, 14, 64, 0.62) !important; /* deep purple, matches brand */
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px) !important;
    overflow: hidden !important;
}

/* Only lay out as a modal when the popup is actually shown. Centered — the
   fixed header is hidden while it's open (see stacking fix below). */
.popup-outer[style*="block"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* --------------------------------------------------------------------------
   Stacking fix — keep the popup above the fixed header.
   The plugin appends .popup-outer INSIDE .sjb-page (simple-job-board-public.js).
   On pages where the job board sits inside an Elementor section that creates its
   own stacking context (e.g. the homepage — via Motion Effects / a custom
   Z-Index / a transform), the popup is trapped inside that context and the fixed
   header (root context, z-index 1000) paints over it, no matter how high the
   popup's z-index is. So instead of raising the popup, we hide the fixed site
   chrome while a popup is open. Pure CSS via :has(); applies only when shown.
   -------------------------------------------------------------------------- */
body:has(.popup-outer[style*="block"]) .top-ribbon,
body:has(.popup-outer[style*="block"]) .main-header,
body:has(.popup-outer[style*="block"]) .mobile-header {
    visibility: hidden !important;
}

/* Centering wrapper — caps the modal width */
.popup-outer .sjb-page {
    width: 100% !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Scroll container — keeps the modal within the viewport */
.popup-outer .sjb-detail {
    position: relative !important;
    width: 100% !important;
    max-height: calc(100vh - 56px) !important; /* 28px top + 28px bottom padding */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Themed scrollbar (WebKit) */
.popup-outer .sjb-detail::-webkit-scrollbar {
    width: 10px;
}
.popup-outer .sjb-detail::-webkit-scrollbar-thumb {
    background: #B37AE0;
    border-radius: 10px;
}
.popup-outer .sjb-detail::-webkit-scrollbar-track {
    background: transparent;
}

/* The inner card is already themed (grey, rounded). Drop its trailing margin
   and reserve top space so the close button never overlaps the title. */
.popup-outer .list-data .v1 {
    margin-bottom: 0 !important;
    padding-top: 68px !important;
}

/* Close button — pinned to the top-right of the card, stays put while scrolling.
   The sticky wrapper (height:0) is the positioning context; the button is
   absolutely placed against its right edge so plugin float/text-align rules
   can't shove it off to the left. */
.popup-outer .sjb-quick-apply-modal-close-btn {
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    display: block !important;
    width: 100% !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: visible !important;
}

.popup-outer .sjb-quick-apply-modal-close-btn .close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #693E8B !important;
    border: 2px solid #B37AE0 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-transform: lowercase !important;
    text-shadow: none !important;
    opacity: 1 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(45, 14, 64, 0.35) !important;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
}

.popup-outer .sjb-quick-apply-modal-close-btn .close:hover,
.popup-outer .sjb-quick-apply-modal-close-btn .close:focus {
    background: #B37AE0 !important;
    border-color: #693E8B !important;
    color: #ffffff !important;
    transform: rotate(90deg) !important;
    outline: none !important;
}

/* --------------------------------------------------------------------------
   Meta row layout (job type / location / date)
   The generic rules stretch the first column (flex:1 / min-width:300px), which
   is right for the listing's title column but wrong here — it blows a big gap
   between "Full-Time" and the rest. Group the three items left, even spacing.
   -------------------------------------------------------------------------- */
.popup-outer .header-margin-top > .row {
    justify-content: flex-start !important;
    gap: 10px 28px !important;
}

.popup-outer .header-margin-top > .row > div[class*="col-"],
.popup-outer .header-margin-top > .row > div[class*="col-"]:first-child {
    flex: 0 0 auto !important;
    min-width: 0 !important;
}

/* --------------------------------------------------------------------------
   Meta icons (job type / location / date)
   The plugin outputs Font Awesome <i> glyphs, but FA isn't loaded in the popup
   context, so they collapse to an empty 24px box — which is what made the
   spacing look off. Draw them as brand-purple SVGs instead (CSS-only, no font
   dependency). Higher specificity + !important to win over the generic rules.
   -------------------------------------------------------------------------- */
.popup-outer .sjb-page .list-data .v1 .job-type i[class*="fa-"],
.popup-outer .sjb-page .list-data .v1 .job-location i[class*="fa-"],
.popup-outer .sjb-page .list-data .v1 .job-date i[class*="fa-"] {
    font-size: 0 !important;          /* hide the FA glyph if the font ever loads */
    width: 18px !important;
    height: 18px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
}

.popup-outer .sjb-page .list-data .v1 .job-type i.fa-briefcase {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236D2C86' d='M9 4a2 2 0 0 0-2 2v1H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3V6a2 2 0 0 0-2-2H9zm0 2h6v1H9V6zM4 9h16v3h-7v-1h-2v1H4V9zm0 5h7v1h2v-1h7v4H4v-4z'/%3E%3C/svg%3E") !important;
}

.popup-outer .sjb-page .list-data .v1 .job-location i.fa-map-marker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236D2C86' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") !important;
}

.popup-outer .sjb-page .list-data .v1 .job-date i.fa-calendar-check {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236D2C86' d='M7 2v2H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7zM5 9h14v10H5V9zm5.6 8.4L7 13.8l1.4-1.4 2.2 2.2 4.6-4.6L16.6 11l-6 6.4z'/%3E%3C/svg%3E") !important;
}

/* --------------------------------------------------------------------------
   Application form buttons (Submit / Close)
   The plugin renders plain Bootstrap .btn / .btn-primary buttons. Re-skin them
   to the site's pill style. Scoped to .popup-outer with !important to beat
   Bootstrap's .btn-primary background.
   -------------------------------------------------------------------------- */
.popup-outer .sjb-page .app-submit,
.popup-outer .sjb-page .btn-app-modal-close {
    display: inline-block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    border-radius: 50px !important;
    padding: 11px 30px !important;
    margin: 0 10px 0 0 !important;
    text-transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

/* Primary — Submit */
.popup-outer .sjb-page .app-submit,
.popup-outer .sjb-page .btn-primary.app-submit {
    background-color: #693E8B !important;
    background-image: none !important;
    border: 2px solid #B37AE0 !important;
    color: #ffffff !important;
}

.popup-outer .sjb-page .app-submit:hover,
.popup-outer .sjb-page .app-submit:focus,
.popup-outer .sjb-page .btn-primary.app-submit:hover,
.popup-outer .sjb-page .btn-primary.app-submit:focus {
    background-color: #B37AE0 !important;
    border-color: #693E8B !important;
    color: #ffffff !important;
    outline: none !important;
}

/* Secondary — Close (outline style) */
.popup-outer .sjb-page .btn-app-modal-close {
    background-color: #ffffff !important;
    background-image: none !important;
    border: 2px solid #d5b8eb !important;
    color: #6D2C86 !important;
}

.popup-outer .sjb-page .btn-app-modal-close:hover,
.popup-outer .sjb-page .btn-app-modal-close:focus {
    background-color: #6D2C86 !important;
    border-color: #6D2C86 !important;
    color: #ffffff !important;
    outline: none !important;
}

/* Tighten the shell on small screens. */
@media (max-width: 767px) {
    .popup-outer {
        padding: 12px !important;
    }
    .popup-outer .sjb-detail {
        max-height: calc(100vh - 24px) !important; /* 12px top + 12px bottom */
    }
    .popup-outer .list-data .v1 {
        padding-top: 64px !important;
    }
}

/* Add your job page styles below this line */
