/*
Theme Name: Berita Ngebut
Author: Gemini
Description: Tema Berita WordPress Super Cepat, SEO Friendly, 100 PageSpeed Optimized.
Version: 1.0
Text Domain: berita-ngebut
*/

:root {
  --primary-color: #e50914;
  --bg-color: #ffffff;
  --text-color: #222222;
  --gray-bg: #f5f5f5;
  --border-color: #eeeeee;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: var(--bg-color); color: var(--text-color); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }

/* Header & Nav */
header { border-bottom: 1px solid var(--border-color); background: #fff; position: sticky; top: 0; z-index: 100; }
.header-top { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo { font-size: 24px; font-weight: 800; color: var(--primary-color); }
.mobile-nav { display: flex; overflow-x: auto; white-space: nowrap; scrollbar-width: none; background: var(--gray-bg); padding: 5px 0; }
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav a { padding: 8px 16px; font-size: 14px; font-weight: 600; display: inline-block; }
.mobile-nav a:hover { color: var(--primary-color); }

/* Layout Grid */
.main-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin: 20px auto; }
@media (max-width: 768px) { .main-wrapper { grid-template-columns: 1fr; } }

/* Cards & Posts */
.post-card { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.post-card img { width: 120px; height: 80px; object-fit: cover; border-radius: 4px; }
.post-card-content { flex: 1; }
.post-title { font-size: 16px; font-weight: 700; margin-bottom: 5px; line-height: 1.3; }
.post-title a:hover { color: var(--primary-color); }
.post-meta { font-size: 12px; color: #777; }

/* Single Article */
.article-header { margin-bottom: 20px; }
.article-title { font-size: 28px; line-height: 1.2; margin-bottom: 10px; }
.share-buttons { display: flex; gap: 8px; margin: 20px 0; flex-wrap: wrap; }
.btn-share { padding: 8px 14px; border-radius: 4px; color: #fff; font-size: 13px; font-weight: bold; cursor: pointer; border: none; display: flex; align-items: center; gap: 5px; }
.btn-wa { background: #25D366; } .btn-fb { background: #1877F2; } .btn-x { background: #000; } .btn-copy { background: #555; }

/* Footer & Social */
footer { background: #111; color: #fff; padding: 30px 0; margin-top: 40px; font-size: 14px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.social-links { display: flex; gap: 12px; }
.social-links svg { fill: #fff; width: 18px; height: 18px; transition: opacity 0.2s; }
.social-links svg:hover { opacity: 0.7; }