.careers-area {
    background: #fff;
}

.careers-wrapper {
    position: relative;
    overflow: hidden;
    padding: 70px 65px;
    border-radius: 8px;
    background: #2D0A31;
}

.careers-wrapper::before,
.careers-wrapper::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.careers-wrapper::before {
    right: -90px;
    top: -120px;
    width: 280px;
    height: 280px;
    background: rgba(240, 103, 255, 0.16);
}

.careers-wrapper::after {
    left: -80px;
    bottom: -110px;
    width: 220px;
    height: 220px;
    background: rgba(160, 119, 255, 0.14);
}

.careers-wrapper .row {
    position: relative;
    z-index: 1;
}

.careers-area .section-tittle span {
    display: block;
    margin-bottom: 12px;
    color: #F067FF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.careers-area .section-tittle h2 {
    color: #fff;
}

.careers-intro {
    margin-bottom: 30px;
    color: #d7d1e8;
}

.careers-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.careers-roles span {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.careers-roles span::before {
    width: 10px;
    height: 10px;
    margin-right: 12px;
    border-radius: 50%;
    background: #F067FF;
    box-shadow: 0 0 0 6px rgba(240, 103, 255, 0.14);
    content: "";
    flex: 0 0 auto;
}

@media (max-width: 991px) {
    .careers-wrapper {
        padding: 55px 35px;
    }

    .careers-roles {
        margin-top: 35px;
    }
}

@media (max-width: 575px) {
    .careers-wrapper {
        padding: 42px 24px;
    }

    .careers-roles {
        gap: 12px;
    }

    .careers-roles span {
        width: 100%;
        font-size: 15px;
    }
}
