/* careers-premium.css */

.careers-main-section {
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
    margin-top: 80px;
}

.careers-split-inner {
    display: flex;
    min-height: 600px;
}

.careers-split-content {
    flex: 1;
    padding: 80px 8% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.careers-feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.careers-feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.careers-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b38e5d;
    flex-shrink: 0;
}

.careers-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.25;
}

.careers-feature-text h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: #01233c;
    margin-bottom: 6px;
    line-height: 1.2;
}

.careers-feature-text p {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.careers-split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

/* CTA Banner */
.careers-cta-banner {
    background-color: #01233c;
    padding: 60px 0;
    color: #fff;
}

.careers-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.careers-cta-content h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.careers-cta-content p {
    font-family: var(--sans);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.careers-cta-button {
    background-color: #b38e5d;
    color: #ffffff !important;
    padding: 16px 44px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.careers-cta-button:hover {
    background-color: #9a7a4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
    .careers-split-inner {
        flex-direction: column-reverse;
    }
    .careers-split-image {
        height: 450px;
        min-height: 450px;
    }
    .careers-split-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .careers-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
    }
    .careers-cta-content h2 {
        font-size: 1.5rem;
    }
}
