/* Career Detail Page Styles - Job Details Page Style */

.career-detail-page {
    width: 100%;
    background: rgba(234, 235, 235, 1);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
}

.career-detail-section {
    width: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.career-detail-container {
    padding: 50px 0 50px;
    margin: 0 auto;
    position: relative;
    flex: 1;
}

.home-bg-img {
    top: 20px;
}

.career-detail-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    padding-top: 230px !important;
}

.career-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);
    margin: 0 0 16px 0;
    line-height: 1.3;
    text-align: center;
}

.career-detail-title-underline {
    width: 100px;
    height: 2px;
    background-color: rgba(51, 51, 51, 1);
    margin: 0 auto;
}

/* Content Block */
.career-detail-section-block {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px;
}

.career-detail-section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.career-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-detail-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
}

.career-detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1.6;
}

.career-detail-list li:last-child {
    margin-bottom: 0;
}

/* Action Buttons */
.career-detail-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(128, 128, 128, 1);
    position: relative;
    z-index: 1;
    width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.career-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}


.career-detail-btn-primary {
    background-color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    color: #333;
}

.career-detail-btn-primary:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}