    .pkp_site_name .is_img img {
        max-height: 100%;
    }


.pkp_brand_footer {
    visibility: hidden;
}

.pkp_site_name {
    text-align: center; /* Centrează conținutul (imaginea) pe orizontală */
    width: 100%;       /* Se asigură că div-ul ocupă toată lățimea */
    display: block;    /* Se asigură că este element de tip bloc */
}

.pkp_navigation_primary_wrapper {
    margin-top: 10px;
}

.pkp_structure_main h1, .pkp_structure_main h2, .pkp_structure_main h3, .pkp_structure_main h4 {
    color: #18527d;
}

/* =========================================
   STILURI CONFERINTA (Varianta Safe)
   ========================================= */

/* 1. Container Principal */
.conf-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}


/* 2. Header (Banner cu Imagine ACADEMICA Noua) */
/* 2. Header (Banner VARIANTA 2: Imagine Facebook + Spațiere Text Mărită) */
.conf-header {
    position: relative;
    background-color: #003F7F; 
    
    /* Imaginea ta de pe Facebook */
    /* Imaginea ta de pe Facebook cu filtru #003F7F */
background-image: 
    /* Gradient folosind culoarea #003F7F (convertită în RGBA pentru transparență) */
    linear-gradient(rgba(0, 63, 127, 0.75), rgba(0, 63, 127, 0.95)),
    
    /* URL-ul imaginii */
    url('https://econ-conf.usv.ro/index.php/iec/libraryFiles/downloadPublic/10');
        
    background-size: cover;
    
    /* Poziționare: center center (standard) sau center top (dacă vrei să eviți tăierea capetelor publicului) */
    background-position: center center; 
    
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    
    /* Padding generos */
    padding: 140px 20px; 
    
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 20, 40, 0.5);
    text-shadow: 0 4px 30px rgba(0,0,0,0.95);
}

/* --- STILIZARE TITLU CU SPAȚIERE MARE --- */
.conf-header h1 {
    color: #fff !important;
    
    /* Font mare */
    font-size: 3em; 
    text-transform: uppercase;
    letter-spacing: 3px; 
    font-weight: 800;

    /* MODIFICĂRI PENTRU SPAȚIERE: */
    line-height: 1.5;      /* Distanță mai mare între rândurile titlului */
    margin-top: 25px;      /* Distanță față de data de sus */
    margin-bottom: 40px;   /* Distanță MARE față de numele universității de jos */
}

/* --- STILIZARE UNIVERSITATE/LOCAȚIE --- */
.conf-header p {
    font-size: 1.6em; 
    font-weight: 500;
    opacity: 1; 
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;

    /* MODIFICARE PENTRU SPAȚIERE: */
    line-height: 1.8;      /* Textul "respiră" mai mult */
}

/* --- STILIZARE DATĂ (BADGE) --- */
.conf-date-badge {
    /* SCHIMBARE CULOARE: Auriu (Gold) care se asortează perfect cu albastrul închis */
    background: #f1c40f; 
    
    /* Textul rămâne albastru închis pentru a fi lizibil pe fundalul auriu */
    color: #003366; 
    
    display: inline-block;
    padding: 12px 35px; 
    border-radius: 50px;
    font-weight: 800;
    border: none;
    font-size: 1.2em;
    
    /* Umbra adaptată la noua culoare (o strălucire aurie) */
    box-shadow: 0 5px 20px rgba(241, 196, 15, 0.4); 
    
    text-shadow: none;
    
    /* Spațierea cerută anterior */
    margin-bottom: 15px; 
}

/* Ajustare pentru mobil */
@media (max-width: 768px) {
    .conf-header {
        background-attachment: scroll; 
        padding: 100px 15px;
        background-position: center top; 
    }
    .conf-header h1 {
        font-size: 2.2em;
        letter-spacing: 1px;
        line-height: 1.3;
        margin-bottom: 30px;
    }
}



/* 3. Grid-uri si Carduri (Obiective) */
.conf-grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.conf-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.conf-card:hover { transform: translateY(-3px); }
.conf-card h3 { margin-top: 0; color: #003366; font-size: 1.3em; }

/* Culori specifice si Iconite prin CSS (Safe Mode) */
.conf-card-blue { border-left-color: #00cec9; background-color: #f0fdff; }
.conf-card-blue h3::before { content: "\1F3AF  "; } /* Tinta */

.conf-card-purple { border-left-color: #6c5ce7; background-color: #fdfeff; }
.conf-card-purple h3::before { content: "\1F393  "; } /* Palarie Absolvent */

/* 4. Timeline (Deadlines) */
.conf-section-title {
    text-align: center;
    color: #003366;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin: 40px 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.conf-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.conf-time-item {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.2s;
    position: relative;
}
.conf-time-item:hover { 
    transform: translateY(-5px); 
    border-color: #00cec9; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.conf-date {
    display: block;
    font-size: 1.3em;
    font-weight: 800;
    color: #d63031;
    margin-bottom: 5px;
}
.conf-detail {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

/* 5. Publicatii */
.conf-pub-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.conf-pub-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #555;
    transition: 0.2s;
}
.conf-pub-item:hover { background-color: #fcfcfc; border-left-width: 6px; }

.conf-pub-item.wos { border-left-color: #8e44ad; }
.conf-pub-item.erih { border-left-color: #27ae60; }
.conf-pub-item.db { border-left-color: #7f8c8d; }

.conf-pub-item a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    color: #003366;
    margin-top: 5px;
}
.conf-pub-item a:hover { color: #00cec9; }

.conf-badge {
    background: #555;
    color: #fff;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
.conf-pub-item.wos .conf-badge { background: #8e44ad; }
.conf-pub-item.erih .conf-badge { background: #27ae60; }


/* Ascunde secțiunea Current Issue de pe prima pagină */
.pkp_structure_main .current_issue {
    display: none !important;
}

/* Alternativ, dacă tema folosește clase specifice conferințelor */
.cmp_current_issue {
    display: none !important;
}