
.post img.post-image {
    width: 100%;
}
/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #81193b, #81193b); /* Tema gelap dengan gradient */
    color: #f8f8f8; /* Teks putih terang */
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111; /* Hitam pekat */
    padding: 15px 20px;
    border-bottom: 2px solid #d4af37; /* Border emas */
}

/* Search Bar */
header .search-bar {
    display: flex;
    align-items: center; /* Selaraskan elemen secara vertikal */
    gap: 4px; /* Spasi kecil antara input dan tombol */
}

header .search-bar input {
    padding: 5px 4px;
    font-size: 14px;
    border: 1px solid #d4af37;
    border-radius: 4px;
    outline: none;
    background-color: #222;
    color: #fff;
    width: 100%; /* Input menyesuaikan ruang yang tersedia */
    max-width: 150px; /* Batasi lebar maksimum input */
    box-sizing: border-box; /* Padding tidak memengaruhi ukuran total */
}

header .search-bar button {
    padding: 5px 8px; /* Padding untuk ukuran tombol */
    font-size: 14px;
    background-color: #d4af37;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Tinggi tombol sama dengan input */
}

header .search-bar button:hover {
    background-color: #ffa500;
}

/* Untuk ikon pencarian */
header .search-bar button i {
    font-size: 16px;
}

/* Running Text Styles */
.running-text {
    margin: 10px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.running-text svg {
    width: 25px;
    height: 24px;
    fill: #d4af37; /* Warna emas */
}

.running-text marquee {
    font-size: 16px;
    color: #ffcc00; /* Emas terang */
    font-weight: bold;
    text-shadow: 1px 1px 5px #8a6e2f;
}

/* Main Content Styles */

.posts-container h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700; /* Warna emas cerah */
    text-shadow: 1px 1px 5px #8a6e2f;
}

hr.solid {
    border-top: 2px solid #d4af37; /* Garis emas */
}

/* Kontainer untuk post */
.posts-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Style untuk setiap post */
.post {
    background-color: #222;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.post h2 {
    margin: 0;
    font-size: 18px;
    color: #ffa500;
}

.post p {
    font-size: 14px;
    line-height: 1.5;
}

.post .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}

.post .read-more:hover {
    color: #ffa500;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px 0;
    background: #111;
    color: #d4af37; /* Teks emas */
    font-size: 12px;
}
