/* Career Explorer Page */

/* Hero */
.explorer-hero {
    padding: 40px 20px 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.explorer-hero .container {
    max-width: 800px;
}
.explorer-hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--text-main);
}
.explorer-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* Search & Filters */
.explorer-controls {
    padding: 0 20px 48px;
}
.explorer-controls .container {
    max-width: 720px;
}
.search-wrapper {
    position: relative;
    margin-bottom: 24px;
}
.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}
.search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: white;
    color: var(--text-main);
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-input::placeholder {
    color: #94a3b8;
}
.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.08);
}

/* Filter Pills */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.filter-pill {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Career Cards Grid */
.explorer-grid-section {
    padding: 0 20px 100px;
}
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Career Card */
.career-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}
.card-icon svg {
    width: 24px;
    height: 24px;
}
.career-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}
.card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-accent);
    color: var(--text-secondary);
}
.meta-tag.demand-high {
    background: #ecfdf5;
    color: #059669;
}
.meta-tag.demand-medium {
    background: #fffbeb;
    color: #d97706;
}
.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}
.card-cta:hover {
    background: #0052cc;
}
.card-cta svg {
    width: 16px;
    height: 16px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}
.empty-state svg {
    margin-bottom: 20px;
    opacity: 0.5;
}
.empty-state h3 {
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 8px;
}
.empty-state p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .explorer-hero h1 {
        font-size: 40px;
    }
    .explorer-hero p {
        font-size: 17px;
    }
    .career-grid {
        grid-template-columns: 1fr;
    }
    .filter-pills {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    .filter-pill {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
