/* Header UIN-JKT Style */
.site-header {
    background-color: #004080; /* Biru tua UIN */
    color: white;
    padding: 15px 0;
    border-bottom: 3px solid #28a745; /* Hijau aksen */
}

.site-header .navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
    color: white !important;
}

.site-header img.logo {
    height: 60px;
    margin-right: 10px;
}

/* Homepage Layout - Article Cards */
.main-content {
    background: #f8f9fa;
    padding: 20px;
}

.article-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.article-title {
    font-size: 1.2em;
    color: #007bff;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 0.9em;
    color: #6c757d;
}

/* Footer */
.site-footer {
    background: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    .article-card {
        margin-bottom: 15px;
    }
}