:root {
    --btn-gradient: linear-gradient(
            30deg,
            #2652B9,
            #2652B9,
            #E24012,
            #FE7505
    )
}

.position-detail-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.position-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.position-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.position-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.meta-item-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 1px solid rgba(38, 82, 185, 0.39);
}

.meta-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.meta-value {
    font-weight: 600;
    color: #1e293b;
}

.content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.tech-tag {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
    border: 1px solid #bae6fd;
}

.apply-section {
    background: linear-gradient(135deg, #6b84bd 0%, #4364cf 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.application-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-apply-primary {
    background: linear-gradient(30deg, #2652B9, #2652B9, #E24012, #FE7505);
    background-size: 400%;
    background-position: right;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.btn-apply-primary:hover {
    background-position: left;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #2652B9;
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
}

.back-link:hover {
    color: #1e40af;
}

.position-description h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 48px 0 16px;
    color: #0f172a;
}

.position-description h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: #1e293b;
}
.position-description p {
    margin: 0 0 16px;
    font-size: 16px;
    color: #334155;
}

.position-description p strong {
    font-weight: 600;
    color: #0f172a;
}

@media (max-width: 768px) {
    .position-meta-grid {
        grid-template-columns: 1fr;
    }

    .apply-section {
        padding: 2rem 1rem;
    }

    .application-form {
        padding: 1.5rem;
    }
}


