.job-list-section {
    background: var(--bg-color);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 0 25px var(--highlight-shadow-color);
    margin-bottom: 4rem;
}

.job-list-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px #585555;
}

/* Job list container */
.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    padding: 0 0.8rem;
    user-select: none;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

/* Individual job item in list */
.job-list .job-card {
    font-size: 1rem;
}

.job-list .job-card h3 {
    font-size: 1.2rem;
}

.job-list .job-card:hover {
    background: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.job-list .job-card .card-icon {
    width: 26px;
    height: 26px;
}

.job-list .job-card p {
    font-size: 0.85rem;
}