.sambutan-page{
    padding:40px 0;
}

.sambutan-page-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    align-items:start;
}

.sambutan-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.4;
}

.sambutan-text{
    line-height:1.8;
    color:#444;
}

/* SIDEBAR */
.kasek-card{
    background:#f7f7f7;
    padding:20px;
    border-radius:12px;
    text-align:center;
    margin-bottom:20px;
}

.kasek-card img{
    width:100%;
    border-radius:12px;
    display:block;
}

.kasek-nama{
    font-weight:700;
    margin-bottom:10px;
}

/* PROFIL */
.profil-card{
    background:#f7f7f7;
    padding:16px;
    border-radius:12px;
}

.profil-title{
    font-weight:700;
    margin-bottom:10px;
}

.profil-table{
    width:100%;
    border-collapse:collapse;
    font-size:14px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.profil-table thead th{
    background:var(--primary);
    color:#fff;
    text-align:left;
    padding:10px 12px;
    font-weight:600;
}

.profil-table td{
    border:1px solid #ddd;
    padding:10px 12px;
    vertical-align:top;
}

.profil-table td:first-child{
    width:40%;
    font-weight:500;
    color:#333;
}

/* KOLOM KANAN */
.profil-table td:last-child{
    color:#555;
}

/* OPTIONAL: ZEBRA BIAR LEBIH BAGUS */
.profil-table tr:nth-child(even){
    background:#fafafa;
}

.sambutan-signature{
    margin-top:30px;
}

.signature-label{
    font-size:14px;
    color:#666;
    margin-bottom:6px;
}

.signature-name{
    font-size:16px;
    font-weight:700;
    color:#222;
    margin-top:20px;
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 992px){
    .sambutan-page-grid{
        grid-template-columns:1fr;
        gap:24px;
    }
}

@media (max-width: 768px){
    .sambutan-page{
        padding:30px 0;
    }

    .sambutan-page-grid{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .sambutan-page-content{
        order:1;
    }

    .sambutan-sidebar{
        order:2;
    }

    .sambutan-title{
        font-size:20px;
        margin-bottom:16px;
    }

    .sambutan-text{
        font-size:15px;
        line-height:1.9;
    }

    .kasek-card,
    .profil-card{
        padding:16px;
        border-radius:10px;
    }

    .kasek-card img{
        max-width:280px;
        margin:auto;
        display:block;
        border-radius:10px;
    }

    .profil-table{
        font-size:13px;
    }

    .profil-table thead th,
    .profil-table td{
        padding:9px 10px;
    }

    .signature-name{
        font-size:15px;
    }
}