.widget {
    font-family: 'Source Sans Pro', 'Arial', sans-serif;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 24px;
}

.widget_company_info {
    margin-top: 20px;
}


.widgettitle {
    font-family: 'Poppins', 'Source Sans Pro', sans-serif !important;
    color: #EC6854 !important;
    font-weight: 700;
    font-size: 20px;
}

.share-buttons {
    margin-top: 5px;
    display: flex;
    flex-direction: column; 
    gap: 5px;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
    color: #025373;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.share-buttons a:hover {
    color: #EC6854;
}

.single-job_listing #sidebar {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px); 
    overflow-y: auto; 
    padding-right: 10px; 
}

/* Style pour la scrollbar si nécessaire */
.single-job_listing #sidebar::-webkit-scrollbar {
    width: 6px;
}

.single-job_listing #sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.single-job_listing #sidebar::-webkit-scrollbar-thumb {
    background: #025373;
    border-radius: 3px;
}

.single-job_listing #sidebar::-webkit-scrollbar-thumb:hover {
    background: #EC6854;
}

.summary-item, .share-buttons {
    line-height: 28px;
    margin-bottom : 10px;
    font-family: 'Poppins', 'Source Sans Pro', 'Arial', sans-serif;
}

.summary-item i, share-buttons i {
    margin-right: 5px;
}

/* Responsive - désactiver sticky sur mobile */
@media (max-width: 980px) {
    .single-job_listing #sidebar {
        position: static !important;
        top: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
}

/* Si vous avez besoin d'ajuster le top selon votre header */
@media (min-width: 981px) {
    /* Header fixe */
    .et_fixed_nav .single-job_listing #sidebar {
        top: 80px; /* Hauteur du header fixe */
    }
    
    /* Header transparent fixe */
    .et_transparent_nav .single-job_listing #sidebar {
        top: 100px;
    }
}