
.early-careers .sec-header h3{
    color: #060534;
}
.early-careers .sec-header p{
    color: rgba(83, 83, 102, 0.85);
    font-size: 16px;
    line-height: 20px;
}
.early-careers.sec-header p:last-child{
    margin-bottom: 0;
}

/* Card Styles */
.ec-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #DADAEB;
}
.ec-card img {
    height: 292px;
    object-fit: cover;
    width: 100%;
}
.ec-card-content{
    padding: 24px 32px 32px 32px;
}
.ec-card-title {
    font-weight: 300;
    margin-bottom: 16px;
    color:#060534;
}
.ec-card-text {
    font-size: 16px;
    color: #535366;
    margin-bottom: 0;
    line-height: 20px;
}


.ec-card-state{
    border-top: 1px solid #DADAEB;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}
.ec-card-state-inner{
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.ec-card-state-number{
    text-align: center;
}
.ec-card-state-number h5{
    color:#060534;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 8px;
}
.ec-card-state-number small{
    color:#535366;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
}

/* Responsive */
@media (min-width: 992px){
    section.early-careers  {
        padding: 80px 0 32px 0;
    }
}
@media (max-width: 1198px) {
    .ec-card-state-inner {
        gap: 16px;
    }
}
@media (max-width: 991px) {
    /* .early-careers{
        padding: 0;
    } */
    .early-careers .sec-header{
        text-align: center;
    }
    .early-careers .sec-header h3 {
        line-height: 32px;
        margin-bottom: 12px;
    }
    .early-careers .sec-header p {
        color: #535366;
        font-size: 14px;
        line-height: 20px;
    }
    .row.ec-card-row {
        gap: 24px;
    }
    .ec-card img {
        height: 52vw;
    }
    .ec-card-content {
        padding: 24px;
    }
    .ec-card-title {
        margin-bottom: 12px;
        line-height: 28px;
    }
    .ec-card-text {
        font-size: 14px;
        letter-spacing: 0;
    }
    .ec-card-state {
        margin-top: 16px;
        padding-top: 16px;
        gap: 16px;
        flex-direction: column;
    }
    .ec-card-state-inner {
        width: 100%;
    }
    .ec-card-state-number {
        width: 100%;
    }
    .ec-card-state-number h5 {
        line-height: 28px;
    }
    .ec-card-state-btn, .ec-card-state-btn .btn{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .early-careers {
        padding-top: 0;
    }
    .early-careers  .ec-card {
        border-radius: 12px;
    }
    .early-careers .ec-card-title {
        color: #0F0E5A;
    }
}