body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #F1F8F4;
    color: #1D1F21;
}

/* TOPBAR */
.topbar {
    background: #0A6FA0;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 6px 20px;
    font-size: 14px;
}
.topbar a { color: #fff; margin-left: 10px; }
 
/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
}
.logo {
    font-weight: bold;
    font-size: 22px;
    color: #0A6FA0;
}
.logo span { color: #66BB6A; }

.search {
    margin: 0 20px;
    padding: 8px;
    flex: 1;
}

.menu {
    list-style: none;
    display: flex;
    gap: 15px;
}
.menu li a {
    text-decoration: none;
    color: #0A6FA0;
    font-weight: 600;
}

/* LAYOUT */
.container {
    padding: 20px;
}
.hero {
    background: linear-gradient(135deg,#0A6FA0,#0A6FA0);
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

/* CARD */
.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}
.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.tag {
    background: #0A6FA0;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* SIDEBAR */
.box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #0A6FA0;
    color: #fff;
    margin-top: 40px;
}

/*BUAT RESPONSIVE*/
/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* NAVBAR */
.navbar {
    flex-wrap: wrap;
    gap: 10px;
}

.search {
    width: 100%;
    margin: 10px 0;
}

.menu {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

/* GRID UTAMA */
.grid {
    grid-template-columns: 1fr;
}

/* CARD BERITA */
.cards {
    grid-template-columns: 1fr;
}

/* HERO */
.hero {
    padding: 30px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 26px;
}

/* SIDEBAR */
.sidebar {
    margin-top: 20px;
}

/* =========================
   TABLET (>=768px)
   ========================= */
@media (min-width: 768px) {

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid {
        grid-template-columns: 2fr 1fr;
    }

    .search {
        width: auto;
        flex: 1;
        margin: 0 20px;
    }
}

.search-wrapper {
    position: relative;
}

/* .search-wrapper input {
    padding: 8px 12px;
    width: 500px;
} */
.search-wrapper input {
    padding: 8px 12px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
}

.search-result {
    top: 100%;
    left: 0;
    right: 0;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 10px rgba(0,0,0,.08);
    display: none;
    z-index: 999;
}

.search-result a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.search-result a:hover {
    background: #f5f5f5;
}

.search-result .empty {
    padding: 10px;
    color: #888;
}

.card-news {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.card-news img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.card-body h3 {
    margin: 6px 0;
    font-size: 16px;
}

.card-body .excerpt {
    font-size: 13px;
    color: #555;
}

.headline-list li,
.popular-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.headline-list img,
.popular-list img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}
/* share */
<style>
.share-box{
    position: relative;
    display: inline-block;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Toggle button */
.share-toggle{
    background: linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:999px;
    cursor:pointer;
    font-weight:600;
    box-shadow:0 10px 20px rgba(37,99,235,.3);
    transition:.3s;
}
.share-toggle:hover{
    transform: translateY(-2px);
    box-shadow:0 15px 25px rgba(37,99,235,.4);
}

/* Menu */
.share-menu{
    position:absolute;
    top:120%;
    right:0;
    background:#fff;
    border-radius:14px;
    padding:8px;
    min-width:180px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    display:none;
    animation: fadeUp .25s ease;
    z-index:100;
}

/* Item */
.share-menu a,
.share-menu button{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    padding:10px 12px;
    border-radius:10px;
    text-decoration:none;
    border:none;
    background:none;
    cursor:pointer;
    font-weight:500;
    transition:.2s;
}

/* Hover */
.share-menu a:hover,
.share-menu button:hover{
    background:#f1f5f9;
}

/* Platform colors */
.sharewa{ color:#065f46; }
.sharefb{ color:#1e3a8a; }
.shareig{ color:#7c2d12; }

/* Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===== PRESTASI ===== */
.prestasi {
    margin-top: 40px;
}
.prestasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 15px;
}
.prestasi-card {
    background: #ffffff;
    border-left: 5px solid #0A6FA0;
    padding: 15px;
    border-radius: 8px;
}
.prestasi-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

/* =========================
   DESKTOP (>=1024px)
