/*======================================
=            PROFIL ECOBALI            =
======================================*/

.eco-profile{

    padding:70px 0;

}

.eco-profile-card{

    max-width:1050px;

    margin:0 auto;

    background:#fff;

    border-radius:25px;

    padding:45px;

    display:flex;

    align-items:center;

    gap:45px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.eco-profile-photo{

    flex:0 0 260px;

    text-align:center;

}

.eco-profile-photo img{

    width:240px;

    height:240px;

    object-fit:cover;

    border-radius:50%;

    border:8px solid #43A047;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.eco-profile-content{

    flex:1;

}

.eco-profile-content h3{

    font-size:30px;

    color:#2E7D32;

    margin-bottom:25px;

}

.eco-profile-table{

    width:100%;

    border-collapse:collapse;

}

.eco-profile-table th{

    width:170px;

    text-align:left;

    padding:12px 0;

    font-size:16px;

    color:#2E7D32;

    font-weight:600;

}

.eco-profile-table td{

    padding:12px 0;

    font-size:16px;

    color:#666;

}


/*======================================
=           DOSEN PENGAMPU             =
======================================*/

.eco-dosen{

    padding:20px 0 80px;

}

.eco-dosen-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:45px;

}

.eco-dosen-card{

    background:#fff;

    border-radius:25px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.eco-dosen-card:hover{

    transform:translateY(-8px);

}

.eco-dosen-photo img{

    width:170px;

    height:170px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #43A047;

    margin-bottom:20px;

}

.eco-dosen-badge{

    display:inline-block;

    background:#E8F5E9;

    color:#2E7D32;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.eco-dosen-card h3{

    font-size:22px;

    color:#2E7D32;

    margin-bottom:12px;

    line-height:1.5;

}

.eco-dosen-card p{

    font-size:15px;

    color:#666;

    line-height:1.8;

}


/*======================================
=             RESPONSIVE               =
======================================*/

@media(max-width:900px){

.eco-profile-card{

    flex-direction:column;

    text-align:center;

}

.eco-profile-content{

    width:100%;

}

.eco-profile-table th{

    width:130px;

}

.eco-dosen-grid{

    grid-template-columns:1fr;

}

}