.article-hero {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2C1810, #8B1A1A);
}

.toraja-hero-bg {
    background: linear-gradient(135deg, #1a0505, #5C0000, #2a1a1a);
}

.article-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-bottom: 16px;
}
.article-breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.article-breadcrumb a:hover { color: var(--gold); }
.article-breadcrumb i { font-size: 10px; }

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.5vw, 52px);
    color: var(--white);
    font-weight: 900;
    line-height: 1.2;
    margin: 14px 0 20px;
}

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}
.article-hero-meta i { color: var(--gold); margin-right: 5px; }

.article-body-wrapper { padding: 60px 0 80px; background: var(--cream); }

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.article-content { max-width: 100%; }

.article-lead {
    font-size: 19px;
    font-weight: 500;
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--cream-dark);
}

.article-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 22px;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--brown);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--brown);
    font-style: italic;
    line-height: 1.7;
    box-shadow: var(--shadow);
}

.article-facts {
    background: linear-gradient(135deg, var(--brown), var(--red-dark));
    color: white;
    padding: 28px;
    border-radius: var(--radius);
    margin: 36px 0;
}
.article-facts h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 18px;
}
.article-facts h3 i { margin-right: 8px; }
.article-facts ul { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.article-facts li { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

.article-author {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 40px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}
.author-img {
    font-size: 56px;
    color: rgba(139,26,26,0.3);
    flex-shrink: 0;
}
.author-info strong { display: block; font-size: 16px; color: var(--brown); margin-bottom: 6px; }
.author-info p { font-size: 13px; color: var(--gray); line-height: 1.7; }

.article-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.sidebar-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream-dark);
}

.newsletter-widget { background: linear-gradient(135deg, var(--cream), var(--cream-dark)); }
.newsletter-widget p { font-size: 13px; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.newsletter-widget input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: var(--white);
}

@media (max-width: 1024px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}
