/*
 Theme Name:   Osmosis Theme
 Description:  Thème pour OBS OI
 Author:       Tsingy Technologies
 Template:     hello-biz
 Text Domain: hello-biz
 Version:      1.0.0
*/

.job_listings {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 0 !important;
}

.job_listings li.job_listing {
    background: #ffffff;
    border: 1px solid #e0e0e0 !important;
    border-radius: 15px;
    margin-bottom: 20px !important;
    padding: 20px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.job_listings li.job_listing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.job_listings li.job_listing a {
    text-decoration: none;
    color: inherit;
    display: block;
}

ul.job_listings li.job_listing a:hover{border-radius: 15px;}

.job_listings .position h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #0f145f;
    font-weight: 700;
}

.job_listings .company {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.job_listings ul.meta {
    display: grid;
    /* grid-template-columns: 1fr 1fr;  */
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    padding-top: 15px;
}

.job_listings ul.meta li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    color: #333;
}

.job_listings ul.meta li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.job_listings ul.meta li strong, 
.job_listings .job-type {
    font-weight: 600;
    color: #002395; 
}

.job_listings ul.meta li.date, 
.job_listings ul.meta li.job-type {
    justify-content: flex-end;
    text-align: right;
}

.job-type {
    color: #555 !important;
}

ul.job_listings li.job_listing.job_position_featured a:hover{background-color: #f7f7f7;}
ul.job_listings li.job_listing.job_position_featured a{background: #f3f3f3;border-radius: 15px;}

.single_job_listing {
    gap: var(--row-gap) var(--column-gap);
    height: 100%;
    margin: 0 auto;
    max-width: min(100%, 1440px);
    padding-inline-end: 0;
    padding-inline-start: 0;
    padding: 40px 60px;
    width: 100%;
    flex-direction: column;
}
h1.job-title-custom{
    font-family: "Inter", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--e-global-color-text);
}
.job-manager-application-wrapper .application .application_details, .single_job_listing .application .application_details{
    border: none;
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
    clear: both;
    display: block;
    line-height: 1.5em;
    margin: 1em 0;
    padding: 2em;
    position: relative;
}
div.application_details{
    background: rgba(245, 251, 255, 0.7);
    backdrop-filter: blur(16.9px);
    max-width: 100%;
    overflow: hidden;
}
.job-manager-form fieldset{
    border: none !important;
}
.single_job_listing .meta .job-type {
    background-color: white;
}

.company {
    display: flex;
    align-items: center; /* Aligne verticalement au centre */
    justify-content: space-between; /* Pousse le contenu vers les extrémités */
    width: 100%;
}

.company_header {
    display: flex;
    flex-grow: 1; /* Permet au header d'occuper l'espace restant */
    align-items: center;
}

.company_header p.name {
    display: flex;
    flex-direction: row-reverse; /* Inverse l'ordre : strong à gauche, a.website à droite */
    justify-content: space-between;
    width: 100%;
    margin: 0;
    align-items: center;
}

/* Optionnel : Ajustement des marges pour l'esthétique */
.company_logo {
    margin-right: 15px;
}

p.name strong {
    white-space: nowrap;
}

.single_job_listing .company img{position: relative;}