/*
Theme Name: Simple SEO Theme
Author: Gemini
Description: Tema ringan, cepat, dan dioptimalkan untuk Yoast SEO.
Version: 1.0
*/

body { font-family: sans-serif; line-height: 1.6; color: #333; max-width: 950px; margin: 0 auto; padding: 20px; }
header { border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
article { margin-bottom: 40px; }
h1, h2 { color: #111; }
nav a { margin-right: 15px; text-decoration: none; color: blue; }
.meta { font-size: 0.8em; color: #777; }

/* Styling Artikel Tunggal */
.seo-breadcrumbs { font-size: 0.85em; margin-bottom: 15px; color: #666; }
.seo-breadcrumbs a { color: #0073aa; text-decoration: none; }

.entry-header { margin-bottom: 20px; }
.entry-title { font-size: 2.2em; line-height: 1.2; margin-bottom: 10px; }
.entry-meta { color: #888; font-style: italic; margin-bottom: 20px; }

.post-thumbnail img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px; }

.entry-content { font-size: 1.1em; line-height: 1.8; }
.entry-content h2 { margin-top: 1.5em; border-left: 4px solid #0073aa; padding-left: 15px; }

.entry-footer { margin-top: 40px; padding-top: 20px; border-top: 1px dashed #ccc; }
.post-navigation { display: flex; justify-content: space-between; margin: 40px 0; font-weight: bold; }

.site-footer {
    margin-top: 60px;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.footer-links li a:hover {
    color: #0073aa;
    text-decoration: underline;
}

/* Memastikan responsif */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
}