/*======================================
TARGET BELAJAR
======================================*/

.target-belajar{

    padding:70px 0;

}

.target-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    align-items:stretch;

}

.target-card{

    background:#fff;

    border-radius:22px;

    padding:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    min-height:630px;

}

.target-card:hover{

    transform:translateY(-8px);

}

.target-card-img{

    display:block;

    width:120px;

    height:120px;

    object-fit:contain;

    margin:0 auto 20px;

}

.target-card h3{

    text-align:center;

    color:#2E7D32;

    font-size:24px;

    margin-bottom:20px;

}

.target-list{

    list-style:none;

    padding:0;

    margin:0;

}

.target-list li{

    font-size:14px;

    font-weight:400;

    line-height:1.7;

    color:#555;

    margin-bottom:12px;

    text-align:left;

}

@media(max-width:1100px){

    .target-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .target-grid{

        grid-template-columns:1fr;

    }

}