/* Hero section styles */
.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lead {
    font-size: 1.25rem;
    color: var(--muted-color);
    margin-bottom: 1.5rem;
}

/* Timeline styles for job detail page */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}

.timeline-content {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 3px solid #dee2e6;
}

.timeline-content h6 {
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content small {
    font-size: 0.8rem;
}


.fade-me-out.htmx-swapping {
    opacity: 0;
    transition: opacity 1s ease-out;
}
