/* CSS KHUSUS HALAMAN DETAIL BERITA */

/* Layout Utama */
.detail-section {
    padding: 60px 0;
    background-color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--slate-light);
    margin-bottom: 30px;
}
.breadcrumb a {
    color: var(--primary-green);
    font-weight: 600;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Header Artikel */
.article-header {
    margin-bottom: 30px;
}
.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f3ff;
    color: #6d28d9;
    font-size: 13px;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 16px;
}
.article-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: var(--slate);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 16px 0;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.meta-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Layout Kolom Ganda */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 1024px) {
    .detail-grid {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }
}

/* Konten Utama */
.article-featured-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}
.article-body p {
    margin-bottom: 24px;
}
.article-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 40px 0 20px;
}
.article-body blockquote {
    border-left: 4px solid #6d28d9;
    background: #f8fafc;
    padding: 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--charcoal);
    border-radius: 0 12px 12px 0;
}
.article-body ul {
    margin-bottom: 24px;
    padding-left: 20px;
}
.article-body li {
    margin-bottom: 12px;
}

/* Share Buttons */
.share-box {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 16px;
}
.share-label {
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s;
}
.share-btn:hover {
    transform: translateY(-3px);
}
.btn-fb { background: #1877F2; }
.btn-wa { background: #25D366; }
.btn-tw { background: #1DA1F2; }
.btn-link { background: var(--slate); }

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}
.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.widget-title::before {
    content: '';
    display: block;
    width: 4px; height: 20px;
    background: #6d28d9;
    border-radius: 4px;
}

/* Berita Lainnya */
.other-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.other-news-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.other-news-img {
    width: 80px; height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.other-news-content {
    flex: 1;
}
.other-news-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.other-news-item:hover .other-news-title {
    color: #6d28d9;
}
.other-news-date {
    font-size: 12px;
    color: var(--slate-light);
}

/* Responsiveness */
@media (max-width: 768px) {
    .article-title { font-size: 28px; }
    .article-body { font-size: 16px; }
    .article-body blockquote { font-size: 18px; padding: 16px; }
    .meta-item { width: 100%; }
}