/* ==============================
   ARTICLE HERO – SINGLE POST (1 KOLOM)
   ============================== */

.article-hero {
    padding: 2.25rem 0 1.75rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 14px;
    margin: 0 auto;
}

.article-hero-inner {
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1.6rem;
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

/* Kicker / kategori */
.article-hero-kickers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

.article-kicker-label {
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background-color: #111827;
    color: #f9fafb;
    font-weight: 600;
}

.article-kicker-pill {
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font-weight: 500;
}

.article-kicker-dot {
    opacity: 0.5;
}

.article-kicker-location {
    font-weight: 500;
}

/* H1 artikel */
.article-hero-title {
    font-size: clamp(1.9rem, 2.2vw + 1.1rem, 2.4rem);
    line-height: 1.25;
    margin: 0 0 0.65rem;
    color: #111827;
    font-weight: 800;
}

/* Excerpt */
.article-hero-excerpt {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 1.25rem;
    max-width: 46rem;
}

/* Meta (author + info) */
.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
}

.article-hero-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.article-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-weight: 700;
    font-size: 0.98rem;
}

.article-author-initial {
    display: inline-block;
}

.article-author-info {
    display: flex;
    flex-direction: column;
}

.article-author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.article-author-role {
    font-size: 0.78rem;
    color: #6b7280;
}

/* Meta detail kanan */
.article-hero-meta-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.article-meta-item {
    white-space: nowrap;
}

.article-meta-separator {
    opacity: 0.5;
}

/* Share inline di kanan */
.article-hero-share-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-share-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.article-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-share-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease-out;
}

.article-share-btn svg {
    width: 15px;
    height: 15px;
    display: block;
}

.article-share-btn:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    transform: translateY(-1px);
}

/* Warna aksen per platform (opsional) */
.article-share-btn.fb:hover { background-color: #1877f2; border-color: #1877f2; }
.article-share-btn.tw:hover { background-color: #111827; border-color: #111827; }
.article-share-btn.in:hover { background-color: #0a66c2; border-color: #0a66c2; }
.article-share-btn.wa:hover { background-color: #22c55e; border-color: #22c55e; }

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 640px) {
    .article-hero {
        padding: 1.8rem 0 1.3rem;
    }

    .article-hero-inner {
        padding: 1.2rem 1rem 1.35rem;
        border-radius: 0.9rem;
    }

    .article-hero-title {
        font-size: 1.6rem;
    }

    .article-hero-excerpt {
        font-size: 0.9rem;
    }

    .article-hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-hero-meta-details {
        font-size: 0.78rem;
    }
}
