.careers-container {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    bottom: 100px;
    display: flex;
    z-index: 10;
    overflow: hidden;
}

.careers-sidebar {
    width: 300px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.role-item {
    padding: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
}

.role-item:hover {
    background-color: rgba(250, 243, 232, 0.5);
}

.role-item.active {
    background-color: rgba(250, 243, 232, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

.role-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.role-item.active .role-title {
    font-weight: 600;
}

.careers-content {
    flex: 1;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    font-family: 'Inter', sans-serif;
}

.careers-content * {
    font-family: 'Inter', sans-serif;
}

.role-details {
    max-width: 800px;
    margin: 0 auto;
}

.role-detail {
    display: none;
}

.role-detail-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.role-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.role-location,
.role-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.role-section {
    margin-bottom: 2rem;
}

.role-section h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
}

.role-section h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
}

.role-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.role-section ul {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-left: 1.5rem;
}

.role-section li {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
}

.role-section li strong {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333;
}

.role-apply {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-apply {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 6px;
    padding: 0.875rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.1s ease;
    cursor: pointer;
}

.btn-apply:hover {
    background-color: #555;
}

.btn-apply:active {
    transform: scale(0.98);
}


