/* ==========================================================
   PORTAL GTK KABUPATEN KONAWE
   File    : 07-pengumuman.css
   Version : 7.0 Stable
   Modul   : Pengumuman
==========================================================*/


/* ==========================================================
   CONTAINER
==========================================================*/

.pengumuman{

    width:95%;

    max-width:var(--container);

    margin:30px auto;

    padding:40px;

    background:var(--white);

    border-radius:var(--radius-xl);

    box-shadow:var(--shadow-md);

    text-align:center;

    position:relative;

    overflow:hidden;

    animation:pengumumanFade .7s ease;

}


/* ==========================================================
   DECORATION
==========================================================*/

.pengumuman::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    left:-120px;

    top:-120px;

    background:rgba(21,101,192,.04);

    border-radius:50%;

}

.pengumuman::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-90px;

    bottom:-90px;

    background:rgba(21,101,192,.04);

    border-radius:50%;

}


/* ==========================================================
   TITLE
==========================================================*/

.pengumuman h2{

    position:relative;

    z-index:2;

    color:var(--primary);

    font-size:34px;

    font-weight:800;

    margin-bottom:22px;

}


/* ==========================================================
   CONTENT
==========================================================*/

#pengumumanText{

    position:relative;

    z-index:2;

    display:inline-block;

    max-width:900px;

    padding:20px 28px;

    background:#F5F9FF;

    border-left:6px solid var(--primary);

    border-radius:18px;

    color:var(--text);

    font-size:20px;

    line-height:1.8;

    transition:var(--transition);

}

/* ==========================================================
   BADGE
==========================================================*/

.pengumuman-info{

    position:relative;

    z-index:2;

    margin-top:26px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

}


.pengumuman-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    background:var(--primary);

    color:var(--white);

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.3px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}


.pengumuman-badge:hover{

    transform:translateY(-2px);

    box-shadow:var(--shadow-md);

}


/* ==========================================================
   ANIMATION
==========================================================*/

@keyframes pengumumanFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ==========================================================
   DESKTOP KECIL
==========================================================*/

@media(max-width:1200px){

.pengumuman{

    padding:36px;

}

#pengumumanText{

    max-width:850px;

}

}


/* ==========================================================
   TABLET
==========================================================*/

@media(max-width:992px){

.pengumuman{

    padding:32px 28px;

}

.pengumuman h2{

    font-size:30px;

}

#pengumumanText{

    max-width:100%;

    font-size:18px;

    padding:18px 22px;

}

}


/* ==========================================================
   MOBILE
==========================================================*/

@media(max-width:768px){

.pengumuman{

    padding:28px 20px;

}

.pengumuman h2{

    font-size:26px;

}

#pengumumanText{

    display:block;

    width:100%;

    font-size:16px;

    line-height:1.8;

    padding:16px 18px;

}

.pengumuman-info{

    gap:10px;

}

.pengumuman-badge{

    width:100%;

}

}


/* ==========================================================
   EXTRA SMALL
==========================================================*/

@media(max-width:480px){

.pengumuman{

    padding:24px 16px;

    border-radius:24px;

}

.pengumuman h2{

    font-size:22px;

}

#pengumumanText{

    font-size:15px;

    line-height:1.7;

    padding:15px;

    border-left-width:5px;

}

.pengumuman-badge{

    font-size:13px;

    padding:10px 14px;

}

}

