/* ============================================
   加入我们 - Careers Page Styles
   ============================================ */
.banner--careers {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 45%, #0f3460 100%);
}

.cr-page {
    background: #f7f8fa;
    padding: 48px 0;
}

.cr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Intro */
.cr-intro {
    text-align: center;
    margin-bottom: 48px;
}

.cr-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d2129;
    margin: 0 0 16px;
}

.cr-section-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

/* Values grid */
.cr-values {
    margin-bottom: 48px;
}

.cr-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.cr-value-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cr-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.1);
}

.cr-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f4c81, #1a6fb5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.cr-value-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    margin: 0 0 8px;
}

.cr-value-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* CTA section */
.cr-cta-section {
    margin-bottom: 32px;
}

.cr-cta-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
}

.cr-cta-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1d2129;
    margin: 0 0 12px;
}

.cr-cta-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 24px;
}

.cr-cta-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cr-cta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--el-color-primary);

    a {
        color: inherit;
        text-decoration: none;
    }
}

.cr-cta-item i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .cr-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cr-page { padding: 32px 0; }
    .cr-values-grid { grid-template-columns: 1fr; }
    .cr-cta-card { padding: 24px 16px; }
}