/* Inner Pages Specific Styles */

.inner-header {
    background: #fff;
}

.careers-header {
    background: radial-gradient(circle at 50% 100%, rgba(0, 70, 127, 0.05) 0%, transparent 60%);
}

.inner-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 70, 127, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 70, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    opacity: 1;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Content Section Layouts */
.content-section {
    padding: var(--section-padding);
}

.pb-0 {
    padding-bottom: 0 !important;
}

.content-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
}

.main-content h2 {
    font-size: 2.2rem;
    color: var(--color-text-main);
}

.main-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.lead-text {
    font-size: 1.35rem;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    line-height: 1.85;
    font-weight: 450;
}

.main-content p {
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.main-content strong {
    color: var(--color-text-main);
    font-weight: 600;
}

.company-quote {
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    background: #f0f4f8;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-main);
    border-radius: 0 4px 4px 0;
    margin: 2rem 0;
}

/* Image & Check Cards */
.image-card {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    position: relative;
    border: 1px solid var(--color-border);
}

.image-overlay {
    position: absolute;
    inset: 0;
    /* Removed heavy black gradient */
}

.info-card {
    background: var(--color-bg-surface);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1rem;
    padding-left: 28px;
    position: relative;
    color: var(--color-text-muted);
}

.check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Utility */
.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.inline-block {
    display: inline-block;
}

.text-muted {
    color: var(--color-text-muted);
}

/* Job Openings Grid */
.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.job-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-smooth);
}

.job-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-location {
    color: var(--color-primary);
    font-weight: 600;
}

.job-type {
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 2px 8px;
    border-radius: 10px;
}

.job-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.job-desc {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}