/* Career Page Specific Styles */

/* Job Listings Section */
.job-listings {
    padding: 2rem 0;
    background-color: #f8fafc;
}

.job-post-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.job-post-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.job-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.job-location {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.job-location i {
    margin-right: 0.5rem;
}

.job-description {
    color: #475569;
    line-height: 1.6;
}

.job-description p {
    margin-bottom: 1rem;
}

.job-description p:last-child {
    margin-bottom: 0;
}

.job-email a {
    color: var(--primary-color);
}
