/* =========================================================
MEDIC CARD PREMIUM
========================================================= */

.medic-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.25s;

    display:flex;
    flex-direction:column;
}

.medic-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}


/* =========================================================
IMAGE
========================================================= */

.medic-image-wrapper{
    position:relative;
    width:100%;
    height:220px;
    overflow:hidden;
}

.medic-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s;
}

.medic-card:hover .medic-image{
    transform:scale(1.05);
}


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

.medic-badge-admin{
    position:absolute;
    top:12px;
    left:12px;

    background:var(--primary);
    color:#fff;

    padding:6px 10px;
    border-radius:8px;

    font-size:12px;
    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}


/* =========================================================
CONTENT
========================================================= */

.medic-content{
    padding:18px;
    text-align:center;
}

.medic-nume{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
    color:var(--text);
}

.medic-functie{
    font-size:14px;
    color:var(--text-light);
    margin-bottom:12px;
}

.medic-link{
    display:inline-block;

    color:var(--primary);
    font-weight:600;
    text-decoration:none;

    font-size:14px;
}

.medic-link:hover{
    text-decoration:underline;
}


/* =========================================================
GRID FIX (important)
========================================================= */

.grid.grid-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:25px;
}

.site-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-footer {
    margin-top: auto;
}

main {
    flex: 1;
}

.specialitate-sectii{
    margin-bottom: 80px;
}

/* =========================================================
SECTII GRID
========================================================= */

.sectii-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:25px;
    margin-top:30px;
}


/* =========================================================
CARD
========================================================= */

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

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

    text-decoration:none;
    color:inherit;

    position:relative;

    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:all .25s ease;
}

.sectie-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}


/* =========================================================
ICON
========================================================= */

.sectie-icon{
    font-size:28px;
}


/* =========================================================
NUME
========================================================= */

.sectie-nume{
    font-weight:600;
    font-size:16px;
    color:#1f2937;
}


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

.sectie-badge{
    display:inline-block;
    background:#eef2ff;
    color:#3b5bdb;

    padding:5px 10px;
    border-radius:20px;
    font-size:12px;

    width:fit-content;
}


/* =========================================================
LINK
========================================================= */

.sectie-link{
    font-size:14px;
    color:var(--primary);
    font-weight:500;
    margin-top:auto;
}


/* =========================================================
HIGHLIGHT
========================================================= */

.sectie-highlight{
    border:2px solid var(--primary);
    box-shadow:0 15px 40px rgba(59,91,219,0.15);
}


/* =========================================================
SPACING FOOTER
========================================================= */

.specialitate-sectii{
    margin-bottom:80px;
}

/* =========================================================
GLOBAL SECTION SPACING
========================================================= */

main section{
    margin-bottom: 70px;
}

.specialitate-sectii{
    margin-bottom: 90px;
}

.specialitate-sectii .section-title{
    margin-bottom: 30px;
}

.sectie-medici{
    margin-bottom: 70px;
}

.specialitate-sectii{
    margin-bottom: 80px;
}