/* Career Page Styles */

/* Hero Section */
.career-hero {
    position: relative;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 60px;
    min-height: 200px;
    display: flex;
    align-items: center;
    text-align: center;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay Gradients */
    background: 
        linear-gradient(0deg, rgba(245, 249, 255, 0.1), rgba(245, 249, 255, 0.1)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
        linear-gradient(180deg, rgba(29, 100, 233, 0.5) 0%, rgba(24, 90, 191, 0) 25%, rgba(22, 87, 180, 0) 75%, rgba(19, 81, 156, 0.5) 100%);
    z-index: 1;
}

.career-hero .container {
    position: relative;
    z-index: 2;
}

.career-hero-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
    /* Title Gradient */
    background: linear-gradient(180deg, #FFFFFF 5.65%, #C8DBFF 92.34%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFFFFF; /* Fallback */
}

.career-hero-desc {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 auto;
}

/* Vacancy Grid */
.vacancy-section {
    padding: 0 0 100px;
}

.vacancy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 20px;
    align-items: start;
}

.vacancy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Vacancy Card */
.vacancy-card {
    background: #FFFFFF;
    border: none;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.vacancy-card-top {
    display: flex;
    flex-direction: column;
}

.vacancy-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #0F172A;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.vacancy-card-desc {
    font-size: 14px;
    color: #898989;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.vacancy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.vacancy-tag {
    background: #F5F9FF;
    color: #0C3C75;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 300;
}

.vacancy-card-bottom {
    margin-top: 0;
}

/* Action Group (Split Button) */
.vacancy-action-group {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vacancy-btn {
    background: #F5F9FF;
    color: #13519C;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vacancy-arrow {
    width: 44px;
    height: 44px;
    background: #F5F9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #13519C;
    transition: all 0.3s ease;
}

/* Hover States */
.vacancy-card:hover {
    box-shadow: 0px 4px 22.9px 0px #13519C26;
}

.vacancy-sidebar {
    position: sticky;
    top: 24px;
}

.vacancy-card:hover .vacancy-btn {
    background: #13519C;
    color: #FFFFFF;
}

.vacancy-card:hover .vacancy-arrow {
    background: #13519C;
    color: #FFFFFF;
}

/* Contact Card */
.contact-card {
    background: #193B7B;
    border-radius: 24px;
    padding: 32px 24px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.contact-card-title {
    font-size: 24px;
    font-weight: 500;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(180deg, #FFFFFF 5.65%, #C8DBFF 92.34%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-info-item:hover {
    opacity: 1;
}

.vacancy-sidebar .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.vacancy-sidebar .contact-icon svg {
    width: 100%;
    height: 100%;
}

/* Contact Action Group */
.contact-action-group {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .vacancy-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

.contact-action-group .contact-btn {
    background: #FFFD00;
    color: #13519C;
    padding: 12px 40px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-action-group .contact-arrow {
    width: 44px;
    height: 44px;
    background: #FFFD00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #13519C;
    transition: all 0.3s ease;
}

.contact-action-group:hover .contact-btn,
.contact-action-group:hover .contact-arrow {
    background: #E6E400;
}

/* Responsive */
@media (max-width: 992px) {
    .vacancy-layout {
        grid-template-columns: 1fr;
    }
    
    .vacancy-grid {
        grid-template-columns: 1fr;
    }
    
    .vacancy-sidebar {
        margin-top: 20px;
        position: static;
        top: auto;
    }
    
    .career-hero-title {
        font-size: 36px;
    }
}
