<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.pengumuman {
    width: 100%;
    display: inline-block;
    background: linear-gradient(to right, #1e3c72, #38b16e);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.pengumuman::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, #1e3c72, #38b16e);
    border-radius: 50% 50% 0 0;
    /* Membuat efek lengkung */
    z-index: -1;
}

/* Container Utama */
.header-container-dea {
    display: flex;
    align-items: center;
    margin: 20px 0;
    /* Jarak atas dan bawah */
    position: relative;
    margin-left: 10px;
}

/* Judul dengan Gradien */
.header-title-dea {
    color: white;
    padding: 10px 20px;
    /* Ruang dalam kotak */
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(to right, #1e3c72, #38b16e);
    /* Gradien biru ke hijau */
    display: inline-block;
    position: relative;
    /* z-index: 2; */
    /* Menjaga agar judul tetap di atas garis */
}

/* Garis Bawah Gabungan */
.header-line-dea {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Panjang garis full container */
    height: 2px;
    /* Ketebalan garis */
    background: linear-gradient(
        to right,
        #ff7f00 0%,
        #ff7f00 15%,
        #ccc 15%,
        #e2dcdc 100%
    );
    z-index: 1;
    /* Menempatkan garis di bawah judul */
}

/* Responsif */
@media screen and (max-width: 768px) {
    .header-title-dea {
        font-size: 18px;
        /* Ukuran font lebih kecil */
        padding: 8px 16px;
    }

    .header-line-dea {
        height: 3px;
        /* Garis lebih tipis */
    }
}

@media screen and (max-width: 480px) {
    .header-title-dea {
        font-size: 16px;
        padding: 6px 12px;
    }

    .header-line-dea {
        height: 2px;
    }
}
</pre></body></html>