/* =========================================================
SECTII.CSS – FINAL PROD CLEAN
========================================================= */

/* =========================================================
HERO
========================================================= */

.sectii-page .sectii-hero{
    padding:30px 0 15px;
    background:#f8fafc;
    border-bottom:1px solid var(--border-light);
}

.sectii-page .sectii-hero .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.sectii-page .sectii-hero h1{
    font-size:34px;
    margin-bottom:8px;
    color:var(--primary);
}

.sectii-page .sectii-hero p{
    max-width:700px;
    color:var(--text-muted);
    line-height:1.6;
    margin-bottom:0;
}


/* =========================================================
GRID SECȚII
========================================================= */

.sectii-page .sectii-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:24px;

    max-width:1200px;
    margin:25px auto 0; /* 🔥 redus spațiul */
    padding:0 20px;
}


/* =========================================================
CARD SECȚIE
========================================================= */

.sectii-page .sectie-card{
    background:#fff;
    border-radius:16px;
    padding:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:.25s;

    display:flex;
    flex-direction:column;
    gap:10px;

    max-width:320px;
    margin:0 auto;
}

.sectii-page .sectie-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(0,0,0,0.1);
}

.sectii-page .sectie-card h3{
    font-size:16px;
    color:var(--text-dark);
}


/* =========================================================
BADGE
========================================================= */

.sectii-page .sectie-badge{
    display:inline-block;

    background:#e0edff;
    color:#1d4ed8;

    padding:5px 10px;
    border-radius:999px;

    font-size:13px;
    width:fit-content;
}


/* =========================================================
FILTERS
========================================================= */

.sectii-page .specialitati-filter{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;

    margin-top:20px;
}

.sectii-page .filter-btn{
    padding:8px 14px;
    border-radius:999px;

    background:#f1f5f9;
    color:var(--text-dark);

    font-size:14px;
    text-decoration:none;

    transition:.2s;
}

.sectii-page .filter-btn:hover,
.sectii-page .filter-btn.active{
    background:var(--primary);
    color:#fff;
}


/* =========================================================
NO RESULTS
========================================================= */

.sectii-page .no-results{
    text-align:center;
    padding:40px 0;
    color:var(--text-muted);
}


/* =========================================================
LAYOUT FIX (doar pentru sectii)
========================================================= */

.sectii-page .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}


/* =========================================================
SPACING FIX GLOBAL (IMPORTANT)
========================================================= */

.sectii-page .page-header{
    margin-top:25px;
    margin-bottom:20px;
}

.sectii-page .section{
    padding-top:15px;
}

.sectii-page .grid-cards{
    margin-top:10px;
}