/* Open Roles Page Styles */
.open-roles-page {
    background-color: #0B0B0B;
    color: #FFFFFF;
    font-family: 'Satoshi', sans-serif;
}

.open-roles-container {
        max-width: 1444px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: flex;
    gap: 50px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    max-width: 1440px;
    padding: 0 20px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #8A8A8A;
    margin-bottom: 60px;
}

.breadcrumb-nav a {
    color: #8A8A8A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #FFFFFF;
}

.breadcrumb-nav .active {
    color: #FFFFFF;
}

.breadcrumb-separator {
    color: #8A8A8A;
}

/* Hero Section */
.hero-header {
        max-width: 1444px;
    margin: 0 auto;
    padding: 60px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.hero-header-left {
    flex: 1;
    max-width: 600px;
}

.hero-header-right {
    flex: 1;
    max-width: 480px;
}

.hero-title {
    font-size: var(--fs-hero-heading);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 150%;
    letter-spacing: -0.03em;
    margin: 0;
}

.hero-title i {
    font-style: italic;
    font-weight: normal;
}

.hero-title b {
    font-weight: 700;
}

.hero-desc {
    font-size: var(--fs-section-subtext);
    color: #A0A0A0;
    line-height: 150%;
    margin: 0;
}

.hero-divider {
        max-width: 1444px;
    height: 1px;
    background: #1F1F1F;
    margin: 40px auto 50px;
}

/* Sidebar - Filter Card */
.filter-card {
    width: 30%;
    min-width: 320px;
    background: #151515;
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-card h2 {
    font-size: var(--fs-element-heading);
    line-height: 150%;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.filter-card p {
    font-size: var(--fs-element-subtext);
    line-height: 150%;
    color: #A0A0A0;
    margin-bottom: 24px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-pill {
    background: #1F1F1F;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: var(--fs-element-subtext);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    background: #2A2A2A;
}

.filter-pill.active {
    background: #FFFFFF;
    color: #000000;
}

/* Right Content - Job Listings */
.jobs-content {
    width: 70%;
}

.job-section {
    margin-bottom: 50px;
}

.job-section-title {
    font-size: var(--fs-element-heading);
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Job Card */
.job-card {
    background: #151515;
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.job-card:hover {
    transform: translateY(-4px);
    background: #1C1C1C;
}

.job-card-info {
    flex: 1;
}

.status-badge {
    background: #535353;
    color: #FFF;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

.job-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: block;
}

.job-card-desc {
    font-size: 14px;
    color: #9B9B9B;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #9B9B9B;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    min-width: 140px;
}

.job-posted-date {
    font-size: 12px;
    color: #9B9B9B;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    background: #1F1F1F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.job-card:hover .arrow-btn {
    background: #2A2A2A;
}

.job-card:hover .arrow-btn svg {
    transform: translateX(2px);
}

.arrow-btn svg {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-header {
        flex-direction: column;
        gap: 30px;
        padding-top: 40px;
    }

    .hero-header-left,
    .hero-header-right {
        max-width: 100%;
    }

    .open-roles-container {
        flex-direction: column;
        gap: 40px;
    }

    .filter-card {
        width: 100%;
        position: static;
    }

    .jobs-content {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .breadcrumb-nav {
        margin-bottom: 40px;
    }

    .hero-header {
        padding-top: 0;
    }

    .hero-title {
        font-size: var(--fs-section-heading);
    }

     .open-roles-container {
        padding: 40px 15px 0 15px;
    }

    .job-card {


        flex-direction: column;
        padding: 20px;
    }

    .job-card-right {
        align-items: flex-start;
        margin-top: 20px;
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .job-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}


.padding-top-careers{
        padding-top: 190px;

}



@media (max-width: 900px) { 
.padding-top-careers {
        padding-top: 113px;

}

    .hero-header {
        padding-top: 0 !important;
    }


}