.examples {
    padding-bottom: 100px;
}

.careers-tabs {
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.careers-tabs::after {
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
}

.careers-tab {
    background: transparent;
    padding: 20px;
    color: #cabfbf;
    border: none;
    position: relative;
    text-transform: uppercase;
}

.careers-tab.active {
    color: #ed193a;
}

.careers-tab::before {
    content: '';
    max-width: 0;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ed193a;
    transition: 0.3s;
}

.careers-tab.active::before {
    max-width: 100%;
}

.careers-filters {
    margin: 0 0 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.careers-filter {
    background: #C793A7;
    background: linear-gradient(0deg, rgba(199, 147, 167, 1) 0%, rgba(234, 153, 166, 1) 100%);
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding: 4px 20px;
    border-radius: 100px;
    border: none;
}

.careers-filter.active {
    background: #93244F;
    background: linear-gradient(0deg, rgba(147, 36, 79, 1) 0%, rgba(214, 50, 75, 1) 100%);
}

.careers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.career-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.career-card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
}

.career-card p {
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #000;
    font-weight: 400;
}


@media screen and (min-width: 768px) {
    .careers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .career-card { 
        width: auto;
    }
}

@media screen and (min-width: 1200px) {
    .careers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}