/* Jobs Page Styles */
.job-posting {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

.job-header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.job-date {
    display: block;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.job-intro {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-top: 0.5rem;
}

.job-teaser {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.job-teaser strong {
    color: #3498db;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.job-section h3 i {
    margin-right: 0.75rem;
    color: #3498db;
}

.job-list {
    list-style-type: none;
    padding-left: 1.5rem;
}

.job-list li {
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.job-list li:before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #3498db;
    font-weight: bold;
}

.job-cta {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.job-cta h3 {
    margin-top: 0;
    color: #2c3e50;
}

.job-cta h3 i {
    margin-right: 0.75rem;
    color: #3498db;
}

.job-cta p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.job-contact {
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.job-contact h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-details p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 0.75rem;
    width: 1.25rem;
    text-align: center;
    color: #3498db;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #3498db;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .job-posting {
        padding: 1.5rem;
    }
    
    .job-teaser, .job-cta p {
        font-size: 1rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}
