.hero-image{
    min-height: 400px;
    height: calc(100vh - 120px);
    max-height: 600px;
}

.hero-tagline{
    padding: 0;
}

#open-positions .container{
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   OPEN POSITIONS SECTION
   ============================================ */
.positions-header {
    margin-bottom: 50px;
}

.positions-header h2 {
    font-size: 42px;
    font-weight: 200;
    color: var(--text-light);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.position-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(104, 217, 208, 0.15);
}

.position-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.position-status {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-open {
    background: rgba(104, 217, 208, 0.15);
    color: #2a9d8f;
}

.status-closed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.position-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 4px 0;
}

.position-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.position-divider {
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
}

.position-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 175px;
}

.position-link:hover {
    background: #5bc4bc;
    transform: translateY(-2px);
}

.position-link::after {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23343A40' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.position-link:hover::after {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .positions-header h2 {
        font-size: 32px;
    }

    .position-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }

    .position-title {
        font-size: 18px;
    }

    .position-link {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        min-height: 240px;
        height: calc(100vh - 120px);
        max-height: 320px;
    }
}