/* detail-berita.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f1f5f9;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* KONTEN UTAMA */
.main-container { 
    flex: 1;
    max-width: 1000px; 
    margin: 120px auto 60px auto; /* Jarak 120px agar tidak tertutup header */
    padding: 0 20px; 
    position: relative; 
    z-index: 10; 
}

/* TOMBOL KEMBALI */
.back-navigation {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #475569;
    padding: 8px 20px;
    border-radius: 50px; /* Bentuk oval seperti contoh gambar */
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.btn-back i { margin-right: 8px; }

.btn-back:hover {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.card-box { 
    background: #ffffff; 
    border-radius: 12px; 
    padding: 40px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
    margin-bottom: 30px; 
    border: 1px solid #e2e8f0; 
}

.article-title { font-size: 32px; font-weight: 700; color: #0f172a; margin-bottom: 15px; }
.title-divider { height: 4px; background: #10b981; width: 100%; margin-bottom: 20px; border-radius: 2px; }
.article-meta { display: flex; gap: 20px; font-size: 13px; color: #64748b; margin-bottom: 25px; }

.article-cover { 
    width: 100%; 
    height: auto; 
    max-height: 500px; 
    object-fit: cover; 
    border-radius: 8px; 
    margin-bottom: 30px; 
}

.article-content { font-size: 17px; color: #334155; text-align: justify; line-height: 1.8; }
.article-content img { max-width: 100% !important; height: auto !important; border-radius: 8px; margin: 20px 0; display: block; }

/* SHARE & KOMENTAR */
.share-section { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e2e8f0; display: flex; align-items: center; gap: 10px; }
.share-btn { width: 38px; height: 38px; border-radius: 8px; display: flex; justify-content: center; align-items: center; color: white; text-decoration: none; transition: 0.3s; }
.btn-wa { background: #25D366; } .btn-fb { background: #1877F2; } .btn-link { background: #64748b; }

.section-title { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 20px; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; }
.form-control { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-family: 'Poppins', sans-serif; box-sizing: border-box; margin-bottom: 15px; }
.btn-submit { background: #3b82f6; color: white; border: none; padding: 12px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; float: right; }

@media (max-width: 768px) {
    .main-container { margin-top: 100px; }
    .card-box { padding: 25px; }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge Notifikasi Salin Link */
.copy-badge {
    display: none;
    font-size: 12px;
    color: #ffffff;
    background: #10b981;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hover Efek pada Tombol Share */
.share-btn:active {
    transform: scale(0.9); /* Efek klik membal */
}