/* =========================================
PAGE
========================================= */

.pengumuman-page{
    padding:60px 0 80px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f2f6fb 100%
        );
}

/* =========================================
LIST
========================================= */

.pengumuman-list{
    display:flex;

    flex-direction:column;

    gap:28px;
}

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

.pengumuman-card{
    display:flex;

    gap:26px;

    background:white;

    border-radius:28px;

    padding:16px;

    border:1px solid #e7edf5;

    transition:.35s;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.pengumuman-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 25px 45px rgba(15,23,42,.10);
}

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

.pengumuman-image{
    width:42%;

    flex-shrink:0;

    overflow:hidden;

    border-radius:22px;
}

.pengumuman-image img{
    width:100%;

    height:100%;

    min-height:220px;

    object-fit:cover;

    transition:.5s;
}

.pengumuman-card:hover img{
    transform:scale(1.05);
}

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

.pengumuman-content{
    flex:1;

    padding:12px 10px 12px 0;
}

.pengumuman-date{
    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#eff6ff;

    color:#1d4ed8;

    padding:8px 14px;

    border-radius:100px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;
}

.pengumuman-content h3{
    font-size:32px;

    line-height:1.5;

    font-weight:800;

    color:#16315c;

    margin-bottom:18px;
}

.pengumuman-content p{
    color:#64748b;

    line-height:1.9;

    font-size:15px;

    margin-bottom:22px;
}

.pengumuman-read{
    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#0d6efd;

    font-weight:700;

    transition:.3s;
}

.pengumuman-read:hover{
    gap:14px;
}

/* =========================================
SIDEBAR
========================================= */

.pengumuman-sidebar{
    background:white;

    border-radius:28px;

    padding:30px;

    border:1px solid #e7edf5;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);

    height:fit-content;
}

.popular-line{
    width:60px;
    height:5px;

    background:#ffc107;

    border-radius:100px;

    margin-bottom:18px;
}

.pengumuman-sidebar h4{
    font-size:24px;

    font-weight:800;

    color:#16315c;

    margin-bottom:28px;
}

.sidebar-item{
    display:flex;

    gap:16px;

    margin-bottom:22px;

    padding-bottom:22px;

    border-bottom:1px solid #edf2f7;
}

.sidebar-item:last-child{
    border-bottom:none;
}

.sidebar-image img{
    width:110px;
    height:80px;

    object-fit:cover;

    border-radius:14px;
}

.sidebar-content h5{
    font-size:15px;

    line-height:1.7;

    font-weight:700;

    color:#16315c;

    margin-bottom:10px;
}

.sidebar-date{
    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;

    color:#64748b;
}

/* =========================================
BUTTON
========================================= */

.sidebar-btn{
    width:100%;

    height:58px;

    border-radius:18px;

    background:#002f6c;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-weight:700;

    margin-top:30px;

    transition:.3s;
}

.sidebar-btn:hover{
    background:#0c4da2;

    color:white;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .pengumuman-card{
        flex-direction:column;
    }

    .pengumuman-image{
        width:100%;
    }

}

@media(max-width:768px){

    .pengumuman-page{
        padding:40px 0 60px;
    }

    .pengumuman-content h3{
        font-size:24px;
    }

}

.pengumuman-image{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:16px;
}

.pengumuman-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.sidebar-image{
    width:90px;
    height:70px;
    overflow:hidden;
    border-radius:10px;
    flex-shrink:0;
}

.sidebar-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.pengumuman-image{
    width:320px;
    min-width:320px;
    height:220px;
    overflow:hidden;
    border-radius:20px;
    flex-shrink:0;
}

.pengumuman-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.pengumuman-card{
    display:flex;
    gap:24px;
    align-items:flex-start;
}

.sidebar-image{
    width:90px;
    height:70px;
    overflow:hidden;
    border-radius:10px;
    flex-shrink:0;
}

.sidebar-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}