.bernarion-featured-jobs-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 32px;
    gap: 0;
}

.bernarion-featured-job-card {
    flex: 1 1 0;
    min-width: 280px;
    max-width: 100%;
    width: 100%;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(116, 73, 208, 0.10);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s;
}

.bernarion-featured-job-card:hover {
    transform: translateY(-10px);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}

.bernarion-featured-job-card:not(:first-child):not(:last-child) {
    margin: 0 32px;
}

.bernarion-featured-job-logo {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 5px solid #FFF;
    background: #f3f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(116, 73, 208, 0.08);
}

.bernarion-featured-job-logo img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
}

.bernarion-featured-job-logo-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #AC82FF;
}

.bernarion-featured-job-content {
    margin-top: 62px;
    padding: 20px 24px 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.bernarion-featured-job-company {
    color: #7C7C7C;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 10px 0 -10px 0;
}

.bernarion-featured-job-title {
    display: flex;
    justify-content: center;
    margin: 0 !important;
}

.bernarion-featured-job-title a {
    color: #1B0A3B !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    width: 100%;
}

.bernarion-featured-job-category {
    display: block;
    background: var(--bernarion-dark-purple);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    padding: 0px 20px;
    line-height: 32px;
}

.bernarion-featured-job-location {
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 7px;
    color: #7C7C7C;
    margin-top: -2px;
}

.bernarion-job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.bernarion-job-skill {
    font-size: 14px;
    border-radius: 100px;
    padding: 0 15px;
    font-weight: 500;
    color: #7C7C7C;
    border: 0.5px solid rgb(208 208 208);
}

.bernarion-featured-job-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bernarion-featured-job-meta {
    display: flex;
    gap: 31px;
    color: #451F90;
    font-size: 17px;
    justify-content: center;
    width: 100%;
    position: relative;
}

.bernarion-featured-job-meta:after {
    content: '';
    position: absolute;
    top: 10px;
    left: calc(50% - 2px);
    width: 1px;
    height: 29px;
    background: #7C7C7C;
}

.bernarion-featured-job-mini-title {
    font-size: 14px;
    color: #7C7C7C;
    font-weight: 500;
}

.bernarion-featured-job-meta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bernarion-featured-job-hours {
    font-size: 24px;
    font-weight: 700;
    color: #1B0A3B;
    margin-left: 0;
}

.bernarion-featured-job-salary {
    font-size: 24px;
    font-weight: 700;
    color: #1B0A3B;
    margin-left: 0;
    text-align: center;
}

.salary-period {
    font-size: 14px;
    color: #1B0A3B;
    margin-top: -4px;
    display: block;
    font-weight: 500;
}

.bernarion-featured-job-link {
    display: block;
    color: #7649D0 !important;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 15px;
}

.bernarion-featured-job-link:hover {
    color: #451F90;
}

.bernarion-featured-job-fav {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #c5adf5;
    border-radius: 50%;
    width: 40px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bernarion-featured-job-fav:hover,
.bernarion-featured-job-fav.favorited {
    background: #c5adf5 !important;
    transition: all ease-in-out 0.12s;
    cursor: pointer;
}

.bernarion-featured-job-fav svg,
.bernarion-featured-job-fav.favorited:hover svg {
    color: #7649D0 !important;
    margin-top: 2px;
}

.bernarion-featured-job-fav.favorited:hover {
    background: #FFF !important;
}

.bernarion-featured-job-fav:hover svg,
.bernarion-featured-job-fav.favorited svg {
    fill: #FFF !important;
    color: #FFF !important;
}

.bernarion-featured-job-heart {
    font-size: 32px;
    color: #AC82FF;
    cursor: pointer;
    transition: color 0.2s;
}

.bernarion-featured-job-heart:hover {
    color: #7649D0;
}

@media (max-width: 900px) {
    .bernarion-featured-jobs-row {
        flex-direction: column;
        gap: 24px;
    }

    .bernarion-featured-job-card {
        width: 100%;
        margin: 0 !important;
    }
}