/* Jobs related styles */



.more-jobs-btn {
    display: inline-block;
    padding: 0.5rem 0;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.more-jobs-btn:hover {
    transform: translateX(1px);
}

.jobs-list {
    display: block;
    margin: 0;
}

.job-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1em;
}

.job-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.job-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-decoration: none;
}

.job-content {
    position: relative;
    z-index: 2;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.job-title {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.job-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.job-date {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive design for jobs list */
@media (max-width: 768px) {
    .recent-jobs-section {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
        
    .jobs-list {
        gap: 1rem;
    }
    
    .job-item {
        padding: 1rem;
    }
    
    .job-title {
        font-size: 1.1rem;
    }
    
    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Job detail page styles */
.job-detail-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.job-detail-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.job-detail-card .job-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.job-detail-card .job-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.job-detail-card .job-meta {
    display: flex;
    gap: 1rem;
    color: #777;
    font-size: 0.9rem;
}

.job-detail-card .job-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.job-detail-card .job-description p {
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

.job-detail-card .job-url {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Responsive design for job detail page */
@media (max-width: 768px) {
    .job-detail-section {
        padding: 1rem 0;
    }
    
    .job-detail-card {
        padding: 1.5rem;
    }
    
    .job-detail-card .job-title {
        font-size: 1.5rem;
    }
}

/* External link icon styles */
.external-link-icon {
    vertical-align: middle;
    margin-right: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn:hover .external-link-icon {
    opacity: 1;
}